Skip to content

Commit e015724

Browse files
committed
build(deps): upgrade
1 parent 5340484 commit e015724

File tree

6 files changed

+73
-73
lines changed

6 files changed

+73
-73
lines changed

codegen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ codegen-writer = "0.2.0"
99
heck = "0.5.0"
1010
nugine-rust-utils = "0.3.1"
1111
numeric_cast = "0.2.1"
12-
regex = "1.9.3"
13-
serde = { version = "1.0.183", features = ["derive"] }
14-
serde_json = { version = "1.0.104", features = ["preserve_order"] }
12+
regex = "1.10.6"
13+
serde = { version = "1.0.210", features = ["derive"] }
14+
serde_json = { version = "1.0.128", features = ["preserve_order"] }
1515
serde_urlencoded = "0.7.1"

crates/s3s-aws/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ repository.workspace = true
1010
license.workspace = true
1111

1212
[dependencies]
13-
async-trait = "0.1.73"
14-
aws-sdk-s3 = "1.17.0"
15-
aws-smithy-runtime-api = { version = "1.2.0", features = ["client", "http-1x"] }
16-
aws-smithy-types = { version = "1.1.8", features = ["http-body-1-x"] }
13+
async-trait = "0.1.82"
14+
aws-sdk-s3 = "1.51.0"
15+
aws-smithy-runtime-api = { version = "1.7.2", features = ["client", "http-1x"] }
16+
aws-smithy-types = { version = "1.2.6", features = ["http-body-1-x"] }
1717
aws-smithy-types-convert = { version = "0.60.8", features = ["convert-time"] }
18-
hyper = "1.1.0"
18+
hyper = "1.4.1"
1919
s3s = { version = "0.11.0-dev", path = "../s3s" }
20-
sync_wrapper = "1.0.0"
21-
tracing = "0.1.37"
20+
sync_wrapper = "1.0.1"
21+
tracing = "0.1.40"
2222
transform-stream = "0.3.0"

crates/s3s-fs/Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -17,50 +17,50 @@ required-features = ["binary"]
1717
binary = ["tokio/full", "dep:clap", "dep:tracing-subscriber", "dep:hyper-util"]
1818

1919
[dependencies]
20-
async-trait = "0.1.73"
20+
async-trait = "0.1.82"
2121
base64-simd = "0.8.0"
22-
bytes = "1.4.0"
23-
chrono = { version = "0.4.26", default-features = false, features = [
22+
bytes = "1.7.2"
23+
chrono = { version = "0.4.38", default-features = false, features = [
2424
"std",
2525
"clock",
2626
] }
27-
clap = { version = "4.3.21", optional = true, features = ["derive"] }
28-
crc32c = "0.6.4"
29-
futures = "0.3.28"
27+
clap = { version = "4.5.17", optional = true, features = ["derive"] }
28+
crc32c = "0.6.8"
29+
futures = "0.3.30"
3030
hex-simd = "0.8.0"
31-
hyper-util = { version = "0.1.5", optional = true, features = [
31+
hyper-util = { version = "0.1.8", optional = true, features = [
3232
"server-auto",
3333
"server-graceful",
3434
"http1",
3535
"http2",
3636
"tokio",
3737
] }
38-
md-5 = "0.10.5"
38+
md-5 = "0.10.6"
3939
mime = "0.3.17"
4040
nugine-rust-utils = "0.3.1"
4141
numeric_cast = "0.2.1"
42-
path-absolutize = "3.1.0"
42+
path-absolutize = "3.1.1"
4343
s3s = { version = "0.11.0-dev", path = "../s3s" }
44-
serde_json = "1.0.104"
45-
thiserror = "1.0.45"
46-
time = "0.3.25"
47-
tokio = { version = "1.31.0", features = ["fs", "io-util"] }
48-
tokio-util = { version = "0.7.8", features = ["io"] }
49-
tracing = "0.1.37"
44+
serde_json = "1.0.128"
45+
thiserror = "1.0.63"
46+
time = "0.3.36"
47+
tokio = { version = "1.40.0", features = ["fs", "io-util"] }
48+
tokio-util = { version = "0.7.12", features = ["io"] }
49+
tracing = "0.1.40"
5050
tracing-error = "0.2.0"
51-
tracing-subscriber = { version = "0.3.17", optional = true, features = [
51+
tracing-subscriber = { version = "0.3.18", optional = true, features = [
5252
"env-filter",
5353
"time",
5454
] }
5555
transform-stream = "0.3.0"
56-
uuid = { version = "1.4.1", features = ["v4"] }
56+
uuid = { version = "1.10.0", features = ["v4"] }
5757

5858
[dev-dependencies]
59-
anyhow = { version = "1.0.73", features = ["backtrace"] }
60-
aws-config = { version = "1.1.2", default-features = false }
61-
aws-credential-types = { version = "1.1.2", features = ["test-util"] }
62-
aws-sdk-s3 = { version = "1.12.0", features = ["behavior-version-latest"] }
63-
once_cell = "1.18.0"
59+
anyhow = { version = "1.0.89", features = ["backtrace"] }
60+
aws-config = { version = "1.5.6", default-features = false }
61+
aws-credential-types = { version = "1.2.1", features = ["test-util"] }
62+
aws-sdk-s3 = { version = "1.51.0", features = ["behavior-version-latest"] }
63+
once_cell = "1.19.0"
6464
s3s-aws = { version = "0.11.0-dev", path = "../s3s-aws" }
65-
tokio = { version = "1.31.0", features = ["full"] }
66-
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "time"] }
65+
tokio = { version = "1.40.0", features = ["full"] }
66+
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }

crates/s3s-policy/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ repository.workspace = true
1010
license.workspace = true
1111

1212
[dependencies]
13-
indexmap = { version = "2.4.0", features = ["serde"] }
14-
serde = { version = "1.0.208", features = ["derive"] }
15-
serde_json = "1.0.125"
13+
indexmap = { version = "2.5.0", features = ["serde"] }
14+
serde = { version = "1.0.210", features = ["derive"] }
15+
serde_json = "1.0.128"

crates/s3s-proxy/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ repository.workspace = true
77
license.workspace = true
88

99
[dependencies]
10-
aws-config = { version = "1.1.7", default-features = false, features = [
10+
aws-config = { version = "1.5.6", default-features = false, features = [
1111
"behavior-version-latest",
1212
] }
13-
aws-credential-types = "1.1.7"
14-
aws-sdk-s3 = "1.17.0"
15-
clap = { version = "4.3.21", features = ["derive"] }
16-
hyper-util = { version = "0.1.5", features = [
13+
aws-credential-types = "1.2.1"
14+
aws-sdk-s3 = "1.51.0"
15+
clap = { version = "4.5.17", features = ["derive"] }
16+
hyper-util = { version = "0.1.8", features = [
1717
"server-auto",
1818
"server-graceful",
1919
"http1",
@@ -22,6 +22,6 @@ hyper-util = { version = "0.1.5", features = [
2222
] }
2323
s3s = { version = "0.11.0-dev", path = "../s3s" }
2424
s3s-aws = { version = "0.11.0-dev", path = "../s3s-aws" }
25-
tokio = { version = "1.31.0", features = ["full"] }
26-
tracing = "0.1.37"
27-
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "time"] }
25+
tokio = { version = "1.40.0", features = ["full"] }
26+
tracing = "0.1.40"
27+
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }

crates/s3s/Cargo.toml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -18,49 +18,49 @@ openssl = ["dep:openssl"]
1818
tower = ["dep:tower"]
1919

2020
[target.'cfg(not(windows))'.dependencies]
21-
openssl = { version = "0.10.62", optional = true }
21+
openssl = { version = "0.10.66", optional = true }
2222

2323
[dependencies]
24-
arrayvec = "0.7.4"
25-
async-trait = "0.1.73"
24+
arrayvec = "0.7.6"
25+
async-trait = "0.1.82"
2626
atoi = { version = "2.0.0", default-features = false }
2727
base64-simd = "0.8.0"
28-
bytes = "1.4.0"
29-
bytestring = "1.3.0"
30-
chrono = { version = "0.4.26", default-features = false }
31-
crc32c = "0.6.4"
32-
crc32fast = "1.3.2"
28+
bytes = "1.7.2"
29+
bytestring = "1.3.1"
30+
chrono = { version = "0.4.38", default-features = false }
31+
crc32c = "0.6.8"
32+
crc32fast = "1.4.2"
3333
digest = "0.10.7"
34-
futures = { version = "0.3.28", default-features = false, features = ["std"] }
34+
futures = { version = "0.3.30", default-features = false, features = ["std"] }
3535
hex-simd = "0.8.0"
3636
hmac = "0.12.1"
37-
http-body = "1.0.0"
38-
http-body-util = "0.1.1"
39-
httparse = "1.8.0"
40-
hyper = { version = "1.1.0", features = ["http1", "server"] }
41-
itoa = "1.0.9"
42-
memchr = "2.6.2"
37+
http-body = "1.0.1"
38+
http-body-util = "0.1.2"
39+
httparse = "1.9.4"
40+
hyper = { version = "1.4.1", features = ["http1", "server"] }
41+
itoa = "1.0.11"
42+
memchr = "2.7.4"
4343
mime = "0.3.17"
4444
nom = "7.1.3"
4545
nugine-rust-utils = "0.3.1"
4646
numeric_cast = "0.2.1"
47-
pin-project-lite = "0.2.12"
47+
pin-project-lite = "0.2.14"
4848
quick-xml = { version = "0.36.1", features = ["serialize"] }
49-
serde = { version = "1.0.183", features = ["derive"] }
49+
serde = { version = "1.0.210", features = ["derive"] }
5050
serde_urlencoded = "0.7.1"
51-
sha1 = "0.10.5"
52-
sha2 = "0.10.7"
53-
smallvec = "1.11.0"
54-
thiserror = "1.0.45"
55-
time = { version = "0.3.25", features = ["formatting", "parsing", "macros"] }
56-
tower = { version = "0.5.0", optional = true }
57-
tracing = "0.1.37"
51+
sha1 = "0.10.6"
52+
sha2 = "0.10.8"
53+
smallvec = "1.13.2"
54+
thiserror = "1.0.63"
55+
time = { version = "0.3.36", features = ["formatting", "parsing", "macros"] }
56+
tower = { version = "0.5.1", optional = true }
57+
tracing = "0.1.40"
5858
transform-stream = "0.3.0"
5959
urlencoding = "2.1.3"
60-
zeroize = "1.6.0"
60+
zeroize = "1.8.1"
6161

62-
sync_wrapper = { version = "1.0.0", default-features = false }
63-
tokio = { version = "1.31.0", features = ["time"] }
62+
sync_wrapper = { version = "1.0.1", default-features = false }
63+
tokio = { version = "1.40.0", features = ["time"] }
6464

6565
[dev-dependencies]
66-
tokio = { version = "1.31.0", features = ["full"] }
66+
tokio = { version = "1.40.0", features = ["full"] }

0 commit comments

Comments
 (0)