Skip to content

Commit

Permalink
only specify major version of dependencies and enable daily dependabo…
Browse files Browse the repository at this point in the history
…t cargo updates
  • Loading branch information
KonradHoeffner committed Sep 12, 2023
1 parent 3371c19 commit e4dd555
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "monthly"
interval: "daily"
groups:
all:
patterns: ["*"]
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ serde = { version = "1", features = ["derive"] }
config = { version = "0.13", default-features = false, features = ["toml"] }
log = "0.4"
env_logger = { version = "0.10", default-features = false, features = ["auto-color"], optional = true }
hdt = { version = "0.1.4", optional = true }
deepsize = { version = "0.2.0", default-features = false, features = ["std"] }
bytesize = "1.1.0"
zstd = { version = "0.12.0", features = ["zstdmt"] }
ureq = "2.6.2"
const-fnv1a-hash = "1.1.0"
lazy_static = "1.4.0"
serde_json = "1.0.96"
hdt = { version = "0.1", optional = true }
deepsize = { version = "0.2", default-features = false, features = ["std"] }
bytesize = "1"
zstd = { version = "0.12", features = ["zstdmt"] }
ureq = "2"
const-fnv1a-hash = "1"
lazy_static = "1"
serde_json = "1"

[features]
default = ["rdfxml", "log", "hdt"]
Expand Down

0 comments on commit e4dd555

Please sign in to comment.