Reorganize dependencies #373

Merged
lx merged 28 commits from improve-deps into main 2022-09-08 13:45:09 +00:00
Showing only changes of commit 2e00809af5 - Show all commits

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;