platforms 0.1.3

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

pub use self::arch::{Arch, TARGET_ARCH};
pub use self::env::{Env, TARGET_ENV};
pub use self::os::{OS, TARGET_OS};