Skip to content

Commit

Permalink
chore(deps): update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com>
  • Loading branch information
simonsan committed Nov 27, 2024
1 parent 1c49ae5 commit 1181850
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ rustic_core = { path = "crates/core", version = "0" }
rustic_testing = { path = "crates/testing", version = "0" }

aho-corasick = "1.1.3"
anyhow = "1.0.89"
bytes = "1.7.2"
anyhow = "1.0.93"
bytes = "1.8.0"
displaydoc = "0.2.5"
enum-map = "2.7.3"
log = "0.4.22"
simplelog = "0.12.2"
thiserror = "2.0.0"
thiserror = "2.0.3"

# dev-dependencies
rstest = "0.23.0"
tempfile = "3.13.0"
tempfile = "3.14.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 @@ -66,20 +66,20 @@ strum_macros = "0.26"

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

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

# local backend
aho-corasick = { workspace = true }
walkdir = "2.5.0"

# rest backend
backon = { version = "1.2.0", optional = true }
reqwest = { version = "0.12.8", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"], optional = true }
backon = { version = "1.3.0", optional = true }
reqwest = { version = "0.12.9", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"], optional = true }

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

[target.'cfg(not(windows))'.dependencies]
Expand Down
26 changes: 13 additions & 13 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,20 @@ pariter = "0.5.1"
rayon = "1.10.0"

# crypto
aes256ctr_poly1305aes = { version = "0.2.0", features = ["std"] } # we need std here for error impls
aes256ctr_poly1305aes = { version = "0.2.1", features = ["std"] } # we need std here for error impls
rand = "0.8.5"
scrypt = { version = "0.11.0", default-features = false, features = ["std"] } # we need std here for error impls

# serialization / packing
binrw = "0.14.0"
binrw = "0.14.1"
hex = { version = "0.4.3", features = ["serde"] }
integer-sqrt = "0.1.5"
rustic_cdc = "0.3.1"
serde = { version = "1.0.210" }
serde = { version = "1.0.215" }
serde-aux = "4.5.0"
serde_derive = "1.0.210"
serde_json = "1.0.128"
serde_with = { version = "3.10.0", features = ["base64"] }
serde_derive = "1.0.215"
serde_json = "1.0.133"
serde_with = { version = "3.11.0", features = ["base64"] }

# local source/destination
cached = { version = "0.54.0", default-features = false, features = ["proc_macro"] }
Expand All @@ -85,8 +85,8 @@ cachedir = "0.3.1"
dirs = "5.0.1"

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

# vfs support
runtime-format = "0.1.3"
Expand Down Expand Up @@ -122,21 +122,21 @@ xattr = "1"
[dev-dependencies]
anyhow = { workspace = true }
expect-test = "1.5.0"
flate2 = "1.0.34"
flate2 = "1.0.35"
globset = "0.4.15"
insta = { version = "1.40.0", features = ["redactions", "ron"] }
insta = { version = "1.41.1", features = ["redactions", "ron"] }
mockall = "0.13"
pretty_assertions = "1.4.1"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rstest = { workspace = true }
rustdoc-json = "0.9.2"
rustdoc-json = "0.9.3"
# We need to have rustic_backend here, because the doc-tests in lib.rs of rustic_core
rustic_backend = { workspace = true }
rustic_testing = { workspace = true }
rustup-toolchain = "0.1.7"
rustup-toolchain = "0.1.8"
simplelog = "0.12.2"
tar = "0.4.42"
tar = "0.4.43"
tempfile = { workspace = true }
toml = "0.8.19"

Expand Down

0 comments on commit 1181850

Please sign in to comment.