1
0
Fork 0
mirror of https://github.com/zhaofengli/attic.git synced 2024-12-14 11:57:30 +00:00

client: Use system certificate store

This commit is contained in:
chris-02 2023-01-22 11:22:18 +01:00
parent 0e61ddf927
commit 8fa4eaffc5
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View file

@ -2793,6 +2793,7 @@ dependencies = [
"percent-encoding",
"pin-project-lite",
"rustls",
"rustls-native-certs",
"rustls-pemfile",
"serde",
"serde_json",

View file

@ -24,7 +24,7 @@ humantime = "2.1.0"
indicatif = "0.17.2"
lazy_static = "1.4.0"
regex = "1.7.0"
reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls", "stream"] }
reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] }
serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0.91"
toml = "0.5.10"