sysinfo 0.39.1

Library to get system information such as processes, CPUs, disks, components and networks
Documentation
// Take a look at the license at the top of the repository in the LICENSE file.

cfg_select! {
    target_os = "freebsd" => {
        pub(crate) mod freebsd;
        #[allow(unused_imports)]
        pub(crate) use freebsd::*;

        #[allow(unused_imports)]
        pub(crate) use libc::__error as libc_errno;
    }
    target_os = "netbsd" => {
        pub(crate) mod netbsd;
        #[allow(unused_imports)]
        pub(crate) use netbsd::*;

        #[allow(unused_imports)]
        pub(crate) use libc::__errno as libc_errno;
    }
}

cfg_select! {
    feature = "system" => {
        pub mod system_common;

        pub use self::system_common::*;
    }
    _ => {}
}
cfg_select! {
    feature = "network" => {
        pub mod network_common;

        pub(crate) use self::network_common::*;
    }
    _ => {}
}

mod common;

// Little trick to ensure `rustfmt` works on all files.
#[cfg(any())]
mod freebsd;
#[cfg(any())]
mod netbsd;
#[cfg(any())]
mod network_common;
#[cfg(any())]
mod system_common;

#[doc = include_str!("../../../md_doc/is_supported.md")]
pub const IS_SUPPORTED_SYSTEM: bool = true;