1 2 3 4 5 6 7 8 9 10 11 12
//! Target `cfg` attributes. Documented in the "Conditional compilation" section //! of the Rust reference: //! //! <https://doc.rust-lang.org/reference/attributes.html#conditional-compilation> mod arch; mod env; mod os; pub use self::arch::{Arch, TARGET_ARCH}; pub use self::env::{Env, TARGET_ENV}; pub use self::os::{OS, TARGET_OS};