1
2
3
4
5
6
7
8
/// The rustc version that was used to compile this crate.
pub const RUSTC_VERSION: Option<&'static str> = Some("1.51.0-nightly");
/// The rustc release channel that was used to compile this crate.
pub const RUSTC_CHANNEL: Option<&'static str> = Some("nightly");
/// The platform identifier.
#[allow(unused)] pub const PLATFORM: &str = "linux";
/// The CPU architecture identifier.
pub const ARCH: &str = "i686";