This commit is contained in:
2026-04-20 20:14:40 +02:00
parent 4261291ac1
commit 176fe3db99
21 changed files with 1445 additions and 132 deletions

View File

@@ -31,7 +31,6 @@ fn main() -> std::process::ExitCode
eprintln!("Another instance of the app is already running!");
std::process::exit(1);
}
if rustls::crypto::CryptoProvider::get_default().is_none() {
let provider_result = rustls::crypto::aws_lc_rs::default_provider().install_default();
match provider_result {
@@ -41,8 +40,7 @@ fn main() -> std::process::ExitCode
return std::process::ExitCode::FAILURE;
},
}
}
}
kb_app_lib::run();
std::process::ExitCode::SUCCESS
}