1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#[allow(dead_code)]
pub static LINUX_PROCESSOR: &'static [&str] = &["i686", "x86_64"];

#[allow(dead_code)]
pub static MAC_PROCESSOR: &'static [&str] = &["Intel", "PPC", "U; Intel", "U; PPC"];

#[allow(dead_code)]
pub static WINDOWS_PLATFORM: &'static [&str] = &[
    "Windows NT 6.2",
    "Windows NT 6.1",
    "Windows NT 6.0",
    "Windows NT 5.2",
    "Windows NT 5.1",
    "Windows NT 5.01",
    "Windows NT 5.0",
    "Windows NT 4.0",
    "Windows 98; Win 9x 4.90",
    "Windows 98",
    "Windows 95",
    "Windows CE",
];