11 releases (stable)

2.0.4 Sep 28, 2024
2.0.3 Apr 11, 2024
2.0.2 Jul 12, 2023
1.0.2 Jan 9, 2023
0.0.1 Jul 27, 2018

#25 in Operating systems

Download history 26745/week @ 2024-08-19 24151/week @ 2024-08-26 27394/week @ 2024-09-02 27960/week @ 2024-09-09 26442/week @ 2024-09-16 26866/week @ 2024-09-23 21478/week @ 2024-09-30 27043/week @ 2024-10-07 29110/week @ 2024-10-14 25042/week @ 2024-10-21 24604/week @ 2024-10-28 21532/week @ 2024-11-04 27384/week @ 2024-11-11 27745/week @ 2024-11-18 29502/week @ 2024-11-25 29824/week @ 2024-12-02

116,354 downloads per month
Used in 33 crates (13 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