We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20e7cc3 commit f62a7ffCopy full SHA for f62a7ff
nts-pool-monitor/src/lib.rs
@@ -97,6 +97,10 @@ pub(crate) mod exitcode {
97
const VERSION: &str = env!("CARGO_PKG_VERSION");
98
99
pub async fn monitor_main() -> Result<(), Box<dyn std::error::Error>> {
100
+ rustls::crypto::aws_lc_rs::default_provider()
101
+ .install_default()
102
+ .expect("Failed to init default crypto provider");
103
+
104
let options = MonitorOptions::try_parse_from(std::env::args())?;
105
106
match options.action {
0 commit comments