platforms 4.1.0

Rust platform registry with information about valid Rust platforms (target triple, target_arch, target_os) sourced from the Rust compiler.
Documentation
//! 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;
pub use arch::Arch;

mod endian;
pub use endian::Endian;

mod env;
pub use env::Env;

mod os;
pub use os::Os;

mod pointer_width;
pub use pointer_width::PointerWidth;