Skip to content

Commit aa3028d

Browse files
Upgrade all dependencies (#1446)
Co-authored-by: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent a636789 commit aa3028d

File tree

4 files changed

+679
-41
lines changed

4 files changed

+679
-41
lines changed

Cargo.toml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -30,40 +30,40 @@ repository = "https://github.com/DataDog/datadog-api-client-rust"
3030
version = "0.29.0"
3131

3232
[dependencies]
33-
async-stream = "0.3.5"
34-
chrono = {version = "0.4.31", features = ["serde"] }
33+
async-stream = "0.3.6"
34+
chrono = {version = "0.4.44", features = ["serde"] }
3535
# Activates JS crypto API for getrandom on wasm32-unknown-unknown (browser); harmless on other targets
3636
getrandom = { version = "0.2", features = ["js"] }
37-
flate2 = "1.0.28"
37+
flate2 = "1.1.9"
3838
form-data-builder = "1.0.1"
39-
futures-core = "0.3.30"
40-
lazy_static = "1.4.0"
41-
log = "0.4.20"
42-
reqwest = { version = "0.11.24", features = ["multipart"], default-features = false }
43-
reqwest-middleware = "0.2.5"
44-
reqwest-retry = { version = "0.3.0", optional = true }
45-
serde = { version = "1.0.197", features = ["derive"] }
46-
serde_json = "1.0.114"
47-
serde_with = "3.6.1"
48-
url = "2.5.0"
49-
uuid = { version = "1.8.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde", "js"] }
50-
zstd = { version = "0.13.0", optional = true }
39+
futures-core = "0.3.32"
40+
lazy_static = "1.5.0"
41+
log = "0.4.29"
42+
reqwest = { version = "0.13.2", features = ["multipart", "query"], default-features = false }
43+
reqwest-middleware = { version = "0.5.1", features = ["query"] }
44+
reqwest-retry = { version = "0.9.1", optional = true }
45+
serde = { version = "1.0.228", features = ["derive"] }
46+
serde_json = "1.0.149"
47+
serde_with = "3.18.0"
48+
url = "2.5.8"
49+
uuid = { version = "1.23.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde", "js"] }
50+
zstd = { version = "0.13.3", optional = true }
5151

5252
[build-dependencies]
53-
rustc_version = "0.4.0"
53+
rustc_version = "0.4.1"
5454

5555
[dev-dependencies]
56-
chrono = "0.4.31"
57-
convert_case = "0.6.0"
58-
cucumber = "0.20.2"
59-
env_logger = "0.10.0"
60-
futures = "0.3.28"
61-
futures-util = "0.3.30"
62-
minijinja = "1.0.10"
63-
regex = "1.9.5"
64-
rvcr = { git = "https://github.com/nkzou/rvcr.git", rev = "cb6911dcd05300a95647ed915b94645679fd80eb" }
65-
sha256 = "1.4.0"
66-
tokio = { version = "1.10", features = ["macros", "rt-multi-thread", "time"] }
56+
chrono = "0.4.44"
57+
convert_case = "0.11.0"
58+
cucumber = "0.22.1"
59+
env_logger = "0.11.10"
60+
futures = "0.3.32"
61+
futures-util = "0.3.32"
62+
minijinja = "2.18.0"
63+
regex = "1.12.3"
64+
rvcr = { path = "patches/rvcr" }
65+
sha256 = "1.6.0"
66+
tokio = { version = "1.50", features = ["macros", "rt-multi-thread", "time"] }
6767
urlencoding = "2.1.3"
6868
vcr-cassette = "2.0.1"
6969

@@ -82,7 +82,7 @@ cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
8282
[features]
8383
default = ["native-tls", "zstd", "retry"]
8484
native-tls = ["reqwest/native-tls"]
85-
rustls-tls = ["reqwest/rustls-tls-webpki-roots"]
85+
rustls-tls = ["reqwest/rustls"]
8686
# Enable zstd request body compression (requires C toolchain; not available for wasm targets)
8787
zstd = ["dep:zstd"]
8888
# Enable automatic request retry with exponential backoff (requires tokio; not available for wasm32-unknown-unknown)

0 commit comments

Comments
 (0)