Error messages when system-libs XOR bundled-libs != 1
continuous-integration/drone/push Build is pending Details
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Alex 2022-09-07 17:57:12 +02:00
parent 2559f63e9b
commit 2e00809af5
Signed by: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,12 @@ mod server;
#[cfg(feature = "telemetry-otlp")]
mod tracing_setup;
#[cfg(not(any(feature = "bundled-libs", feature = "system-libs")))]
compile_error!("Either bundled-libs or system-libs Cargo feature must be enabled");
#[cfg(all(feature = "bundled-libs", feature = "system-libs"))]
compile_error!("Only one of bundled-libs and system-libs Cargo features must be enabled");
use std::net::SocketAddr;
use std::path::PathBuf;