add rustc build flags reflection

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-24 23:01:00 +00:00
parent 936d2915e2
commit 2100618d47
14 changed files with 119 additions and 5 deletions

View file

@ -12,12 +12,17 @@ pub mod utils;
pub use config::Config;
pub use error::Error;
pub use info::{version, version::version};
pub use info::{rustc_flags_capture, version, version::version};
pub use pdu::{PduBuilder, PduCount, PduEvent};
pub use server::Server;
pub use utils::{ctor, dtor};
pub use crate as conduit_core;
pub type Result<T, E = Error> = std::result::Result<T, E>;
rustc_flags_capture! {}
#[cfg(not(conduit_mods))]
pub mod mods {
#[macro_export]