Skip to content

Commit f82b16f

Browse files
authored
chore(deps): update dependencies (#180)
Signed-off-by: simonsan <[email protected]>
1 parent 91a9c8f commit f82b16f

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ rust-version = "1.72.0"
1515
aho-corasick = "1.1.2"
1616
rustic_backend = { path = "crates/backend" }
1717
rustic_core = { path = "crates/core" }
18-
simplelog = "0.12.1"
18+
simplelog = "0.12.2"
1919

2020
# dev-dependencies
21-
tempfile = "3.9.0"
21+
tempfile = "3.10.1"
2222

2323
# see: https://nnethercote.github.io/perf-book/build-configuration.html
2424
[profile.dev]

crates/backend/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ sftp = ["opendal"]
4747
rustic_core = { workspace = true }
4848

4949
# errors
50-
anyhow = "1.0.79"
50+
anyhow = "1.0.80"
5151
displaydoc = "0.2.4"
52-
thiserror = "1.0.56"
52+
thiserror = "1.0.57"
5353

5454
# logging
55-
log = "0.4.20"
55+
log = "0.4.21"
5656

5757
# other dependencies
5858
bytes = "1.5.0"
@@ -64,7 +64,7 @@ strum_macros = "0.26"
6464

6565
# general / backend choosing
6666
hex = { version = "0.4.3", features = ["serde"] }
67-
serde = { version = "1.0.196" }
67+
serde = { version = "1.0.197" }
6868
url = "2.5.0"
6969

7070
# cli support
@@ -74,18 +74,18 @@ merge = { version = "0.1.0", optional = true }
7474
# local backend
7575
aho-corasick = { workspace = true }
7676
shell-words = "1.1.0"
77-
walkdir = "2.4.0"
77+
walkdir = "2.5.0"
7878

7979
# rest backend
8080
backoff = { version = "0.4.0", optional = true }
81-
reqwest = { version = "0.11.24", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"], optional = true }
81+
reqwest = { version = "0.11.25", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"], optional = true }
8282

8383
# rclone backend
8484
rand = { version = "0.8.5", optional = true }
8585

8686
# opendal backend
87-
rayon = { version = "1.8.1", optional = true }
88-
tokio = { version = "1.35.1", optional = true, default-features = false }
87+
rayon = { version = "1.9.0", optional = true }
88+
tokio = { version = "1.36.0", optional = true, default-features = false }
8989

9090
[target.'cfg(not(windows))'.dependencies]
9191
# opendal backend - sftp is not supported on windows, see https://github.com/apache/incubator-opendal/issues/2963

crates/core/Cargo.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,20 @@ rustdoc-args = ["--document-private-items", "--generate-link-to-definition"]
4848
[dependencies]
4949
# errors
5050
displaydoc = "0.2.4"
51-
thiserror = "1.0.56"
51+
thiserror = "1.0.57"
5252

5353
# macros
5454
derivative = "2.2.0"
5555
derive_more = "0.99.17"
5656
derive_setters = "0.1.6"
5757

5858
# logging
59-
log = "0.4.20"
59+
log = "0.4.21"
6060

6161
# parallelize
62-
crossbeam-channel = "0.5.11"
62+
crossbeam-channel = "0.5.12"
6363
pariter = "0.5.1"
64-
rayon = "1.8.1"
64+
rayon = "1.9.0"
6565

6666
# crypto
6767
aes256ctr_poly1305aes = "0.2.0"
@@ -72,21 +72,21 @@ scrypt = { version = "0.11.0", default-features = false }
7272
binrw = "0.13.3"
7373
hex = { version = "0.4.3", features = ["serde"] }
7474
integer-sqrt = "0.1.5"
75-
serde = { version = "1.0.196" }
76-
serde-aux = "4.4.0"
77-
serde_derive = "1.0.196"
78-
serde_json = "1.0.113"
79-
serde_with = { version = "3.6.0", features = ["base64"] }
75+
serde = { version = "1.0.197" }
76+
serde-aux = "4.5.0"
77+
serde_derive = "1.0.197"
78+
serde_json = "1.0.114"
79+
serde_with = { version = "3.6.1", features = ["base64"] }
8080

8181
# local source/destination
82-
cached = { version = "0.48.1", default-features = false, features = ["proc_macro"] }
82+
cached = { version = "0.49.2", default-features = false, features = ["proc_macro"] }
8383
dunce = "1.0.4"
8484
filetime = "0.2.23"
8585
ignore = "0.4.22"
8686
nix = { version = "0.28", default-features = false, features = ["user", "fs"] }
8787
path-dedot = "3.1.1"
8888
shell-words = "1.1.0"
89-
walkdir = "2.4.0"
89+
walkdir = "2.5.0"
9090

9191
# cache
9292
cachedir = "0.3.1"
@@ -102,11 +102,11 @@ futures = { version = "0.3", optional = true }
102102
runtime-format = "0.1.3"
103103

104104
# other dependencies
105-
anyhow = "1.0.79"
105+
anyhow = "1.0.80"
106106
bitmask-enum = "2.2.3"
107107
bytes = "1.5.0"
108108
bytesize = "1.3.0"
109-
chrono = { version = "0.4.33", default-features = false, features = ["clock", "serde"] }
109+
chrono = { version = "0.4.35", default-features = false, features = ["clock", "serde"] }
110110
enum-map = "2.7.3"
111111
enum-map-derive = "0.17.0"
112112
gethostname = "0.4.3"
@@ -141,5 +141,5 @@ rustdoc-json = "0.8.9"
141141
# We need to have rustic_backend here, because the doc-tests in lib.rs of rustic_core
142142
rustic_backend = { workspace = true }
143143
rustup-toolchain = "0.1.6"
144-
simplelog = "0.12.1"
144+
simplelog = "0.12.2"
145145
tempfile = { workspace = true }

0 commit comments

Comments
 (0)