Upgrade dependencies: reqwest 0.12->0.13, tabled 0.17->0.20, criterion 0.5->0.8

reqwest 0.13 brings HTTP/2 multiplexing improvements and updated rustls.
tabled 0.20 resolves deprecation warnings in table rendering. criterion 0.8
aligns with the latest stable benchmarking API (iai-callgrind compat).
toml stays at 0.8 (was already correct in lockfile).
This commit is contained in:
teernisse
2026-02-12 16:14:01 -05:00
parent 4ac8659ebd
commit aae9a33d36
2 changed files with 381 additions and 126 deletions

View File

@@ -12,19 +12,19 @@ directories = "6"
fs2 = "0.4"
futures = "0.3"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
sha2 = "0.10"
tabled = "0.17"
tabled = "0.20"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
toml = "0.8"
toml = "1"
[dev-dependencies]
assert_cmd = "2"
criterion = "0.5"
criterion = "0.8"
mockito = "1"
predicates = "3"
proptest = "1"