feat: replace openssl with rustls
This commit is contained in:
parent
4d546ee57c
commit
5c7201abe7
1 changed files with 7 additions and 17 deletions
24
Cargo.toml
24
Cargo.toml
|
@ -11,37 +11,27 @@ exclude = [".cargo_home"]
|
||||||
[lints.rust]
|
[lints.rust]
|
||||||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
|
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]
|
[dependencies]
|
||||||
base64 = "0.22"
|
base64 = "0.22"
|
||||||
bytes = "1.8"
|
bytes = "1.8"
|
||||||
derive_more = { version = "1.0", features = [
|
derive_more = { version = "1.0", features = ["constructor", "display", "from"] }
|
||||||
"constructor",
|
|
||||||
"display",
|
|
||||||
"from"
|
|
||||||
] }
|
|
||||||
http = "1.1"
|
http = "1.1"
|
||||||
path-clean = "1.0"
|
path-clean = "1.0"
|
||||||
native-tls = { version = "0.2", features = ["vendored"] }
|
reqwest = { version = "0.12", default-features = false, features = [
|
||||||
reqwest = { version = "0.12", features = [ "json" ] }
|
"json",
|
||||||
|
"rustls-tls",
|
||||||
|
] }
|
||||||
url = "2.5"
|
url = "2.5"
|
||||||
tempfile = "3.10"
|
tempfile = "3.10"
|
||||||
tokio = { version = "1.41", features = [ "sync" ] }
|
tokio = { version = "1.41", features = ["sync"] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
|
|
||||||
[package.metadata.cargo-machete]
|
|
||||||
ignored = ["native-tls"]
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert2 = "0.3"
|
assert2 = "0.3"
|
||||||
mutants = "0.0"
|
mutants = "0.0"
|
||||||
pretty_assertions = "1.4"
|
pretty_assertions = "1.4"
|
||||||
test-log = "0.2"
|
test-log = "0.2"
|
||||||
tokio = { version = "1.41", features = [
|
tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] }
|
||||||
"macros",
|
|
||||||
"rt-multi-thread"
|
|
||||||
] }
|
|
||||||
tokio-test = "0.4"
|
tokio-test = "0.4"
|
||||||
|
|
||||||
[package.metadata.bin]
|
[package.metadata.bin]
|
||||||
|
|
Loading…
Add table
Reference in a new issue