We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a735886 commit 352a53bCopy full SHA for 352a53b
1 file changed
src/main.rs
@@ -1,4 +1,11 @@
1
fn main() {
2
+ // Install an explicit rustls crypto provider at startup. We use `ring`
3
+ // because it tends to be the most reliable/easiest provider to build
4
+ // across common Linux packaging environments.
5
+ rustls::crypto::ring::default_provider()
6
+ .install_default()
7
+ .expect("failed to install rustls crypto provider");
8
+
9
if let Err(err) = things3_cloud::app::run() {
10
eprintln!("{err}");
11
std::process::exit(1);
0 commit comments