A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #17 from chris-02/main

use system certificate store for attic client

authored by

Zhaofeng Li and committed by
GitHub
9c8e9fbc 0e61ddf9

+2 -1
+1
Cargo.lock
··· 2793 2793 "percent-encoding", 2794 2794 "pin-project-lite", 2795 2795 "rustls", 2796 + "rustls-native-certs", 2796 2797 "rustls-pemfile", 2797 2798 "serde", 2798 2799 "serde_json",
+1 -1
client/Cargo.toml
··· 24 24 indicatif = "0.17.2" 25 25 lazy_static = "1.4.0" 26 26 regex = "1.7.0" 27 - reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls", "stream"] } 27 + reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] } 28 28 serde = { version = "1.0.151", features = ["derive"] } 29 29 serde_json = "1.0.91" 30 30 toml = "0.5.10"