cargo_build/lib.rs
1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "macros")]
4mod macros;
5// pub use macros::*; no need because #[macro_export] exports them from crate root
6
7mod functions;
8pub use functions::*;
9
10pub mod build_out;
11
12#[cfg(test)]
13mod functions_test;
14
15#[cfg(test)]
16#[cfg(feature = "macros")]
17mod macros_test;