12 releases (stable)

2.0.5 Dec 22, 2024
2.0.4 Sep 28, 2024
2.0.3 Apr 11, 2024
2.0.2 Jul 12, 2023
0.0.1 Jul 27, 2018

#16 in Hardware support

Download history 21640/week @ 2024-12-24 23083/week @ 2024-12-31 34566/week @ 2025-01-07 30825/week @ 2025-01-14 34555/week @ 2025-01-21 35568/week @ 2025-01-28 42351/week @ 2025-02-04 36525/week @ 2025-02-11 35930/week @ 2025-02-18 32897/week @ 2025-02-25 34316/week @ 2025-03-04 36741/week @ 2025-03-11 36183/week @ 2025-03-18 33723/week @ 2025-03-25 38444/week @ 2025-04-01 31452/week @ 2025-04-08

144,308 downloads per month
Used in 25 crates (14 directly)

MIT license

79KB
1K SLoC

platform-info

Crates.io License CodeCov

A simple cross-platform way to get information about the currently running system.

Examples

This simple example:

// examples/ex.rs
// * use `cargo run --example ex` to execute this example

// spell-checker:ignore (API) nodename osname sysname

use platform_info::*;

fn main() {
    let info = PlatformInfo::new().expect("Unable to determine platform info");
    // println!("info={:#?}", info);

    println!("{}", info.sysname().to_string_lossy());
    println!("{}", info.nodename().to_string_lossy());
    println!("{}", info.release().to_string_lossy());
    println!("{}", info.version().to_string_lossy());
    println!("{}", info.machine().to_string_lossy());
    println!("{}", info.osname().to_string_lossy());
}

should display something like:

Linux
hostname
5.10.0-8-amd64
#1 SMP Debian 5.10.46-4 (2021-08-03)
x86_64
GNU/Linux

Using cargo run --example ex will build and execute this example code.

Other examples can be found in the examples directory.

License

platform-info is licensed under the MIT License.

Dependencies

~215KB