Files
swagger-cli/Cargo.toml
teernisse aae9a33d36 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).
2026-02-12 16:55:54 -05:00

43 lines
860 B
TOML

[package]
name = "swagger-cli"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
colored = "3"
directories = "6"
fs2 = "0.4"
futures = "0.3"
regex = "1"
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.20"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
toml = "1"
[dev-dependencies]
assert_cmd = "2"
criterion = "0.8"
mockito = "1"
predicates = "3"
proptest = "1"
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[[bench]]
name = "perf"
harness = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true