Skip to content

Commit 9986396

Browse files
chore: update dependencies
Signed-off-by: Florentin Dubois <[email protected]>
1 parent f672965 commit 9986396

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

Cargo.toml

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,43 @@ authors = ["Florentin Dubois <[email protected]>"]
88
license-file = "LICENSE"
99
readme = "README.md"
1010
repository = "https://github.com/CleverCloud/oauth10a-rust"
11-
keywords = [
12-
"clevercloud",
13-
"client",
14-
"logging",
15-
"metrics",
16-
"oauth1a",
17-
]
11+
keywords = ["clevercloud", "client", "logging", "metrics", "oauth1a"]
1812

1913
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2014

2115
[dependencies]
22-
async-trait = { version = "^0.1.86", optional = true }
16+
async-trait = { version = "^0.1.87", optional = true }
2317
base64 = { version = "^0.22.1", optional = true }
24-
bytes = { version = "^1.10.0", features = ["serde"], optional = true }
18+
bytes = { version = "^1.10.1", features = ["serde"], optional = true }
2519
cidr = { version = "^0.3.1", optional = true }
2620
crypto-common = { version = "^0.1.6", optional = true }
2721
hmac = { version = "^0.12.1", features = ["std"], optional = true }
2822
log = { version = "^0.4.26", optional = true }
2923
prometheus = { version = "^0.13.4", optional = true }
30-
reqwest = { version = "^0.12.12", default-features = true, features = ["rustls-tls-webpki-roots", "charset", "http2", "gzip", "deflate", "zstd", "json", "hickory-dns"], optional = true }
24+
reqwest = { version = "^0.12.12", default-features = true, features = [
25+
"rustls-tls-webpki-roots",
26+
"charset",
27+
"http2",
28+
"gzip",
29+
"deflate",
30+
"zstd",
31+
"json",
32+
"hickory-dns",
33+
], optional = true }
3134
serde = { version = "^1.0.218", features = ["derive"], optional = true }
32-
serde_json = { version = "^1.0.139", features = [
35+
serde_json = { version = "^1.0.140", features = [
3336
"preserve_order",
3437
"float_roundtrip",
3538
], optional = true }
3639
sha2 = { version = "^0.10.8", optional = true }
37-
thiserror = { version = "^2.0.11", optional = true }
40+
thiserror = { version = "^2.0.12", optional = true }
3841
tracing = { version = "^0.1.41", optional = true }
3942
tracing-futures = { version = "^0.2.5", optional = true }
40-
url = { version = "^2.5.4", default-features = false, features = ["serde"], optional = true }
43+
url = { version = "^2.5.4", default-features = false, features = [
44+
"serde",
45+
], optional = true }
4146
urlencoding = { version = "^2.1.3", optional = true }
42-
uuid = { version = "^1.14.0", features = ["serde", "v4"], optional = true }
47+
uuid = { version = "^1.15.1", features = ["serde", "v4"], optional = true }
4348

4449
[features]
4550
default = ["client", "logging"]

0 commit comments

Comments
 (0)