diff --git a/Cargo.toml b/Cargo.toml index 9bcfbd0..96c9440 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,37 +11,27 @@ exclude = [".cargo_home"] [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] base64 = "0.22" bytes = "1.8" -derive_more = { version = "1.0", features = [ - "constructor", - "display", - "from" -] } +derive_more = { version = "1.0", features = ["constructor", "display", "from"] } http = "1.1" path-clean = "1.0" -native-tls = { version = "0.2", features = ["vendored"] } -reqwest = { version = "0.12", features = [ "json" ] } +reqwest = { version = "0.12", default-features = false, features = [ + "json", + "rustls-tls", +] } url = "2.5" tempfile = "3.10" -tokio = { version = "1.41", features = [ "sync" ] } +tokio = { version = "1.41", features = ["sync"] } tracing = "0.1" -[package.metadata.cargo-machete] -ignored = ["native-tls"] - [dev-dependencies] assert2 = "0.3" mutants = "0.0" pretty_assertions = "1.4" test-log = "0.2" -tokio = { version = "1.41", features = [ - "macros", - "rt-multi-thread" -] } +tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] } tokio-test = "0.4" [package.metadata.bin]