feat: replace openssl with rustls
All checks were successful
Test / build (map[name:stable]) (push) Successful in 4m54s
Test / build (map[name:nightly]) (push) Successful in 5m33s
Release Please / Release-plz (push) Successful in 13s

This commit is contained in:
Paul Campbell 2025-01-18 17:19:52 +00:00
parent 4d546ee57c
commit 5c7201abe7

View file

@ -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"] }
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]