Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

74
vendor/sysinfo/src/windows/mod.rs vendored Normal file
View File

@@ -0,0 +1,74 @@
// Take a look at the license at the top of the repository in the LICENSE file.
mod utils;
cfg_if! {
if #[cfg(feature = "system")] {
mod process;
mod cpu;
mod system;
pub(crate) use self::cpu::CpuInner;
pub(crate) use self::process::ProcessInner;
pub(crate) use self::system::SystemInner;
pub use self::system::{MINIMUM_CPU_UPDATE_INTERVAL, SUPPORTED_SIGNALS};
}
if #[cfg(feature = "disk")] {
mod disk;
pub(crate) use self::disk::{DiskInner, DisksInner};
}
if #[cfg(feature = "component")] {
pub mod component;
pub(crate) use self::component::{ComponentInner, ComponentsInner};
}
if #[cfg(feature = "network")] {
mod network;
pub(crate) mod network_helper;
pub(crate) use self::network::{NetworkDataInner, NetworksInner};
}
if #[cfg(feature = "user")] {
mod groups;
mod users;
pub(crate) use self::groups::get_groups;
pub(crate) use self::users::get_users;
pub(crate) use self::users::UserInner;
}
if #[cfg(any(feature = "user", feature = "system"))] {
mod sid;
pub(crate) use self::sid::Sid;
}
}
#[doc = include_str!("../../md_doc/is_supported.md")]
pub const IS_SUPPORTED_SYSTEM: bool = true;
// Make formattable by rustfmt.
#[cfg(any())]
mod component;
#[cfg(any())]
mod cpu;
#[cfg(any())]
mod disk;
#[cfg(any())]
mod groups;
#[cfg(any())]
mod network;
#[cfg(any())]
mod network_helper;
#[cfg(any())]
mod process;
#[cfg(any())]
mod sid;
#[cfg(any())]
mod system;
#[cfg(any())]
mod users;