Skip to content

Commit

Permalink
chore(deps): update dependencies (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
aawsome authored Oct 1, 2024
1 parent 6d33577 commit 0d70757
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ rust-version = "1.76.0"

[workspace.dependencies]
aho-corasick = "1.1.3"
anyhow = "1.0.86"
bytes = "1.7.1"
anyhow = "1.0.89"
bytes = "1.7.2"
enum-map = "2.7.3"
rustic_backend = { path = "crates/backend" }
rustic_core = { path = "crates/core", version = "0" }
Expand All @@ -23,7 +23,7 @@ simplelog = "0.12.2"

# dev-dependencies
rstest = "0.23.0"
tempfile = "3.12.0"
tempfile = "3.13.0"

# see: https://nnethercote.github.io/perf-book/build-configuration.html
[profile.dev]
Expand Down
14 changes: 7 additions & 7 deletions crates/backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ rclone = ["rest", "dep:rand", "dep:semver"]
rustic_core = { workspace = true }

# errors
anyhow = "1.0.86"
anyhow = "1.0.89"
displaydoc = "0.2.5"
thiserror = "1.0.63"
thiserror = "1.0.64"

# logging
log = "0.4.22"

# other dependencies
bytes = "1.7.1"
bytes = "1.7.2"
derive_setters = "0.1.6"
humantime = "2.1.0"
itertools = "0.13.0"
Expand All @@ -61,11 +61,11 @@ strum_macros = "0.26"

# general / backend choosing
hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.208" }
serde = { version = "1.0.210" }
url = "2.5.2"

# cli support
clap = { version = "4.5.16", optional = true, features = ["derive", "env", "wrap_help"] }
clap = { version = "4.5.19", optional = true, features = ["derive", "env", "wrap_help"] }
conflate = { version = "0.2.0", optional = true }

# local backend
Expand All @@ -74,7 +74,7 @@ walkdir = "2.5.0"

# rest backend
backoff = { version = "0.4.0", optional = true }
reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"], optional = true }
reqwest = { version = "0.12.8", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"], optional = true }

# rclone backend
rand = { version = "0.8.5", optional = true }
Expand All @@ -83,7 +83,7 @@ semver = { version = "1.0.23", optional = true }
# opendal backend
bytesize = "1.3.0"
rayon = { version = "1.10.0", optional = true }
tokio = { version = "1.39.3", optional = true, default-features = false }
tokio = { version = "1.40.0", optional = true, default-features = false }

[target.'cfg(not(windows))'.dependencies]
# opendal backend - sftp is not supported on windows, see https://github.com/apache/incubator-opendal/issues/2963
Expand Down
28 changes: 14 additions & 14 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ rustdoc-args = ["--document-private-items", "--generate-link-to-definition"]
[dependencies]
# errors
displaydoc = "0.2.5"
thiserror = "1.0.63"
thiserror = "1.0.64"

# macros
derivative = "2.2.0"
Expand All @@ -66,17 +66,17 @@ scrypt = { version = "0.11.0", default-features = false }
binrw = "0.14.0"
hex = { version = "0.4.3", features = ["serde"] }
integer-sqrt = "0.1.5"
serde = { version = "1.0.208" }
serde = { version = "1.0.210" }
serde-aux = "4.5.0"
serde_derive = "1.0.208"
serde_json = "1.0.125"
serde_with = { version = "3.9.0", features = ["base64"] }
serde_derive = "1.0.210"
serde_json = "1.0.128"
serde_with = { version = "3.10.0", features = ["base64"] }

# local source/destination
cached = { version = "0.53.1", default-features = false, features = ["proc_macro"] }
dunce = "1.0.5"
filetime = "0.2.24"
ignore = "0.4.22"
filetime = "0.2.25"
ignore = "0.4.23"
nix = { version = "0.29.0", default-features = false, features = ["user", "fs"] }
path-dedot = "3.1.1"
walkdir = "2.5.0"
Expand All @@ -86,7 +86,7 @@ cachedir = "0.3.1"
dirs = "5.0.1"

# cli support
clap = { version = "4.5.16", optional = true, features = ["derive", "env", "wrap_help"] }
clap = { version = "4.5.19", optional = true, features = ["derive", "env", "wrap_help"] }
conflate = { version = "0.2.0", optional = true }

# vfs support
Expand All @@ -105,7 +105,7 @@ enumset = { version = "1.1.5", features = ["serde"] }
gethostname = "0.5.0"
humantime = "2.1.0"
itertools = "0.13.0"
quick_cache = "0.6.2"
quick_cache = "0.6.9"
shell-words = "1.1.0"
strum = { version = "0.26.3", features = ["derive"] }
zstd = "0.13.2"
Expand All @@ -124,11 +124,11 @@ xattr = "1"

[dev-dependencies]
expect-test = "1.5.0"
flate2 = "1.0.31"
globset = "0.4.14"
insta = { version = "1.39.0", features = ["redactions", "ron"] }
flate2 = "1.0.34"
globset = "0.4.15"
insta = { version = "1.40.0", features = ["redactions", "ron"] }
mockall = "0.13"
pretty_assertions = "1.4.0"
pretty_assertions = "1.4.1"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rstest = { workspace = true }
Expand All @@ -138,7 +138,7 @@ rustic_backend = { workspace = true }
rustic_testing = { workspace = true }
rustup-toolchain = "0.1.7"
simplelog = "0.12.2"
tar = "0.4.41"
tar = "0.4.42"
tempfile = { workspace = true }
toml = "0.8.19"

Expand Down
2 changes: 1 addition & 1 deletion crates/testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ aho-corasick = { workspace = true }
anyhow = { workspace = true }
bytes = { workspace = true }
enum-map = { workspace = true }
once_cell = "1.19.0"
once_cell = "1.20.1"
rustic_core = { workspace = true }
tempfile = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion examples/find/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
globset = "0.4.14"
globset = "0.4.15"
rustic_backend = { workspace = true }
rustic_core = { workspace = true }
simplelog = { workspace = true }
Expand Down

0 comments on commit 0d70757

Please sign in to comment.