mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-14 11:57:30 +00:00
Merge pull request #17 from chris-02/main
use system certificate store for attic client
This commit is contained in:
commit
9c8e9fbc35
2 changed files with 2 additions and 1 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -2793,6 +2793,7 @@ dependencies = [
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"rustls",
|
"rustls",
|
||||||
|
"rustls-native-certs",
|
||||||
"rustls-pemfile",
|
"rustls-pemfile",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
|
|
|
@ -24,7 +24,7 @@ humantime = "2.1.0"
|
||||||
indicatif = "0.17.2"
|
indicatif = "0.17.2"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
regex = "1.7.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 = { version = "1.0.151", features = ["derive"] }
|
||||||
serde_json = "1.0.91"
|
serde_json = "1.0.91"
|
||||||
toml = "0.5.10"
|
toml = "0.5.10"
|
||||||
|
|
Loading…
Reference in a new issue