platforms 3.3.0

Rust platform registry with information about valid Rust platforms (target triple, target_arch, target_os) sourced from the Rust compiler.
Documentation
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 endian;
mod env;
mod os;
mod pointerwidth;

pub use self::{arch::Arch, endian::Endian, env::Env, os::OS, pointerwidth::PointerWidth};