crunchy-cli/src/main.rs

12 lines
315 B
Rust

#[cfg(not(any(
feature = "rustls-tls",
feature = "native-tls",
feature = "openssl-tls",
feature = "openssl-tls-static"
)))]
compile_error!("At least one tls feature must be activated");
#[tokio::main]
async fn main() {
crunchy_cli_core::main(&std::env::args().collect::<Vec<String>>()).await
}