diff --git a/Cargo.lock b/Cargo.lock index e37c70a1c8..6c787e7aa3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6490,6 +6490,9 @@ name = "rustls-pki-types" version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" +dependencies = [ + "web-time", +] [[package]] name = "rustls-platform-verifier" diff --git a/lib/src/extras/launcher.rs b/lib/src/extras/launcher.rs index f512437009..49d4103238 100644 --- a/lib/src/extras/launcher.rs +++ b/lib/src/extras/launcher.rs @@ -1,17 +1,16 @@ use url::Url; -/// # ToDo -/// -/// A rocket-like launcher. We can use this to easily: -/// -/// * initialize logging -/// * initialize dead-lock detection -/// * handle panics either by logging or human-panic -/// * load config file? -/// * parse command line? -/// * start tokio runtime and pass in the config struct -/// - +// # ToDo +// +// A rocket-like launcher. We can use this to easily: +// +// * initialize logging +// * initialize dead-lock detection +// * handle panics either by logging or human-panic +// * load config file? +// * parse command line? +// * start tokio runtime and pass in the config struct +// #[cfg(feature = "deadlock")] use crate::extras::deadlock::initialize_deadlock_detection; #[cfg(feature = "logging")]