Skip to content

Commit d650c53

Browse files
committed
Bump dependencies
1 parent fd9121f commit d650c53

6 files changed

Lines changed: 77 additions & 77 deletions

File tree

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -43,37 +43,37 @@ experimental = []
4343
default = ["aws_lc_rs"]
4444

4545
[dependencies]
46-
async-trait = "0.1.88"
47-
bitflags = "2.9.0"
48-
bytes = "1.10.1"
49-
chrono = { version = "0.4.40", default-features = false, features = ["clock", "std"] }
50-
derive_more = { version = "2.0.1", features = ["display"] }
46+
async-trait = "0.1.89"
47+
bitflags = "2.10.0"
48+
bytes = "1.11.0"
49+
chrono = { version = "0.4.42", default-features = false, features = ["clock", "std"] }
50+
derive_more = { version = "2.1.0", features = ["display"] }
5151
futures-util = { version = "0.3.31", default-features = false, features = ["alloc", "sink"] }
52-
getrandom = "0.3.2"
52+
getrandom = "0.3.4"
5353
lazy_static = "1.5.0"
5454
md-5 = "0.10.6"
55-
moka = { version = "0.12.10", default-features = false, features = ["sync"] }
55+
moka = { version = "0.12.11", default-features = false, features = ["sync"] }
5656
nix = { version = "0.29.0", default-features = false, features = ["fs"] }
5757
prometheus = { version = "0.14.0", default-features = false }
5858
proxy-protocol = "0.5.0"
59-
rustls = { version = "0.23.26", default-features = false }
59+
rustls = { version = "0.23.35", default-features = false }
6060
rustls-pemfile = "2.2.0"
61-
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
61+
slog = { version = "2.8.2", features = ["max_level_trace", "release_max_level_info"] }
6262
slog-stdlog = "4.1.1"
63-
thiserror = "2.0.12"
64-
tokio = { version = "1.44.2", features = ["macros", "rt", "net", "process", "sync", "io-util", "time"] }
65-
tokio-rustls = "0.26.2"
66-
tokio-util = { version = "0.7.15", features = ["codec"] }
67-
tracing = { version = "0.1.41", default-features = false }
68-
tracing-attributes = "0.1.28"
69-
uuid = { version = "1.16.0", features = ["v4"] }
63+
thiserror = "2.0.17"
64+
tokio = { version = "1.48.0", features = ["macros", "rt", "net", "process", "sync", "io-util", "time"] }
65+
tokio-rustls = "0.26.4"
66+
tokio-util = { version = "0.7.17", features = ["codec"] }
67+
tracing = { version = "0.1.44", default-features = false }
68+
tracing-attributes = "0.1.31"
69+
uuid = { version = "1.19.0", features = ["v4"] }
7070
x509-parser = "0.17.0"
7171
dashmap = "6.1.0"
7272
libc = "0.2"
7373

7474
[dev-dependencies]
7575
pretty_assertions = "1.4.1"
76-
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
76+
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
7777
unftp-sbe-fs = { path = "../libunftp/crates/unftp-sbe-fs" }
7878

7979
[lints]

crates/unftp-auth-jsonfile/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,24 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-auth-j
1818
readme = "README.md"
1919

2020
[dependencies]
21-
async-trait = "0.1.88"
21+
async-trait = "0.1.89"
2222
base64 = "0.22.1"
23-
bytes = "1.10.1"
23+
bytes = "1.11.0"
2424
ipnet = "2.11.0"
2525
iprange = "0.6.7"
2626
libunftp = { version = "0.21.0", path = "../../" }
2727
ring = "0.17.14"
28-
serde = { version = "1.0.219", features = ["derive"] }
29-
serde_json = "1.0.140"
30-
tokio = { version = "1.44.2", features = ["rt", "time"] }
31-
tracing = { version = "0.1.41", default-features = false }
32-
tracing-attributes = "0.1.28"
28+
serde = { version = "1.0.228", features = ["derive"] }
29+
serde_json = "1.0.145"
30+
tokio = { version = "1.48.0", features = ["rt", "time"] }
31+
tracing = { version = "0.1.44", default-features = false }
32+
tracing-attributes = "0.1.31"
3333
valid = "0.3.1"
34-
flate2 = "1.1.1"
34+
flate2 = "1.1.5"
3535

3636
[dev-dependencies]
3737
pretty_env_logger = "0.5.0"
38-
tokio = { version = "1.44.2", features = ["macros"] }
38+
tokio = { version = "1.48.0", features = ["macros"] }
3939
unftp-sbe-fs = { version = "0.3.0", path = "../unftp-sbe-fs" }
4040

4141
[lints]

crates/unftp-auth-pam/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-auth-p
1919
readme = "README.md"
2020

2121
[dependencies]
22-
async-trait = "0.1.88"
22+
async-trait = "0.1.89"
2323
libunftp = { version = "0.21.0", path = "../../" }
24-
tracing = { version = "0.1.41", default-features = false }
25-
tracing-attributes = "0.1.28"
24+
tracing = { version = "0.1.44", default-features = false }
25+
tracing-attributes = "0.1.31"
2626

2727
[target.'cfg(target_family = "unix")'.dependencies]
2828
pam-auth = { package = "pam", version = "0.7.0" }
2929

3030
[dev-dependencies]
31-
tokio = { version = "1.44.2", features = ["macros"] }
31+
tokio = { version = "1.48.0", features = ["macros"] }
3232

3333
[lints]
3434
workspace = true

crates/unftp-auth-rest/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,24 @@ repository = "https://github.com/bolcom/libunftp/tree/hannes/crates/unftp-auth-r
1818
readme = "README.md"
1919

2020
[dependencies]
21-
async-trait = "0.1.88"
21+
async-trait = "0.1.89"
2222
http-body-util = "0.1.3"
23-
hyper = { version = "1.6.0", features = ["client", "http1"] }
24-
hyper-rustls = "0.27.5"
25-
hyper-util = "0.1.11"
23+
hyper = { version = "1.8.1", features = ["client", "http1"] }
24+
hyper-rustls = "0.27.7"
25+
hyper-util = "0.1.19"
2626
libunftp = { version = "0.21.0", path = "../../" }
27-
percent-encoding = "2.3.1"
28-
regex = "1.11.1"
29-
serde = { version = "1.0.219", features = ["derive"] }
30-
serde_json = "1.0.140"
31-
tokio = { version = "1.44.2", features = ["rt", "net", "sync", "io-util", "time"] }
32-
tracing = { version = "0.1.41", default-features = false }
33-
tracing-attributes = "0.1.28"
27+
percent-encoding = "2.3.2"
28+
regex = "1.12.2"
29+
serde = { version = "1.0.228", features = ["derive"] }
30+
serde_json = "1.0.145"
31+
tokio = { version = "1.48.0", features = ["rt", "net", "sync", "io-util", "time"] }
32+
tracing = { version = "0.1.44", default-features = false }
33+
tracing-attributes = "0.1.31"
3434

3535

3636
[dev-dependencies]
3737
pretty_env_logger = "0.5.0"
38-
tokio = { version = "1.44.2", features = ["macros"] }
38+
tokio = { version = "1.48.0", features = ["macros"] }
3939
unftp-sbe-fs = { version = "0.3.0", path = "../unftp-sbe-fs" }
4040

4141
[lints]

crates/unftp-sbe-fs/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,36 +24,36 @@ aws_lc_rs = ["libunftp/aws_lc_rs"]
2424
default = ["aws_lc_rs"]
2525

2626
[dependencies]
27-
async-trait = "0.1.88"
27+
async-trait = "0.1.89"
2828
cfg-if = "1.0"
2929
cap-std = "3.4"
3030
futures = { version = "0.3.31", default-features = false, features = ["std"] }
3131
lazy_static = "1.5.0"
3232
libunftp = { version = "0.21.0", path = "../../", default-features = false }
3333
path_abs = "0.5.1"
34-
tokio = { version = "1.44.2", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
34+
tokio = { version = "1.48.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
3535
tokio-stream = "0.1.17"
36-
tracing = { version = "0.1.41", default-features = false }
37-
tracing-attributes = "0.1.28"
36+
tracing = { version = "0.1.44", default-features = false }
37+
tracing-attributes = "0.1.31"
3838

3939
[dev-dependencies]
4040
async_ftp = "6.0.0"
41-
async-trait = "0.1.88"
42-
chrono = "0.4.40"
41+
async-trait = "0.1.89"
42+
chrono = "0.4.42"
4343
more-asserts = "0.3.1"
4444
nix = { version = "0.29.0", default-features = false, features = ["user"] }
4545
pretty_assertions = "1.4.1"
4646
pretty_env_logger = "0.5.0"
47-
regex = "1.11.1"
47+
regex = "1.12.2"
4848
rstest = "0.25.0"
49-
serde = { version = "1.0.219", features = ["derive"] }
50-
serde_json = "1.0.140"
49+
serde = { version = "1.0.228", features = ["derive"] }
50+
serde_json = "1.0.145"
5151
slog-async = "2.8.0"
52-
slog-term = "2.9.1"
53-
tempfile = "3.19.1"
54-
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
55-
tracing-subscriber = "0.3.19"
56-
getrandom = "0.3.2"
52+
slog-term = "2.9.2"
53+
tempfile = "3.23.0"
54+
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
55+
tracing-subscriber = "0.3.22"
56+
getrandom = "0.3.4"
5757

5858
[target.'cfg(target_os = "freebsd")'.dev-dependencies]
5959
capsicum = { version = "0.4.4", features = ["casper"] }

crates/unftp-sbe-gcs/Cargo.toml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -18,40 +18,40 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-sbe-gc
1818
readme = "README.md"
1919

2020
[dependencies]
21-
async-trait = "0.1.88"
21+
async-trait = "0.1.89"
2222
base64 = "0.22.1"
23-
bytes = "1.10.1"
24-
chrono = { version = "0.4.40", default-features = false, features = ["std", "serde"] }
23+
bytes = "1.11.0"
24+
chrono = { version = "0.4.42", default-features = false, features = ["std", "serde"] }
2525
futures = { version = "0.3.31", default-features = false, features = ["std"] }
2626
http-body-util = "0.1.3"
27-
hyper = { version = "1.6.0", features = ["client", "http1"] }
28-
hyper-rustls = "0.27.5"
29-
hyper-util = "0.1.11"
27+
hyper = { version = "1.8.1", features = ["client", "http1"] }
28+
hyper-rustls = "0.27.7"
29+
hyper-util = "0.1.19"
3030
libunftp = { version = "0.21.0", path = "../../" }
3131
mime = "0.3.17"
32-
percent-encoding = "2.3.1"
33-
serde = { version = "1.0.219", features = ["derive"] }
34-
serde_json = "1.0.140"
35-
time = "0.3.41"
36-
tokio = { version = "1.44.2", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
32+
percent-encoding = "2.3.2"
33+
serde = { version = "1.0.228", features = ["derive"] }
34+
serde_json = "1.0.145"
35+
time = "0.3.44"
36+
tokio = { version = "1.48.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
3737
tokio-stream = "0.1.17"
38-
tokio-util = { version = "0.7.15", features = ["codec", "compat"] }
39-
tracing = { version = "0.1.41", default-features = false }
40-
tracing-attributes = "0.1.28"
41-
yup-oauth2 = { version = "12.1.0", default-features = false, features = ["hyper-rustls", "service-account", "aws-lc-rs"] }
38+
tokio-util = { version = "0.7.17", features = ["codec", "compat"] }
39+
tracing = { version = "0.1.44", default-features = false }
40+
tracing-attributes = "0.1.31"
41+
yup-oauth2 = { version = "12.1.1", default-features = false, features = ["hyper-rustls", "service-account", "aws-lc-rs"] }
4242

4343
[dev-dependencies]
4444
async_ftp = "6.0.0"
45-
clap = { version = "4.5.37", features = ["env"] }
45+
clap = { version = "4.5.53", features = ["env"] }
4646
lazy_static = "1.5.0"
4747
more-asserts = "0.3.1"
4848
path_abs = "0.5.1"
4949
pretty_assertions = "1.4.1"
5050
pretty_env_logger = "0.5.0"
51-
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
51+
slog = { version = "2.8.2", features = ["max_level_trace", "release_max_level_info"] }
5252
slog-async = "2.8.0"
5353
slog-stdlog = "4.1.1"
54-
slog-term = "2.9.1"
55-
tempfile = "3.19.1"
56-
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
57-
tracing-subscriber = "0.3.19"
54+
slog-term = "2.9.2"
55+
tempfile = "3.23.0"
56+
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
57+
tracing-subscriber = "0.3.22"

0 commit comments

Comments
 (0)