mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
12 lines
283 B
Rust
12 lines
283 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::cli_entrypoint().await
|
|
}
|