mirror of
https://github.com/uutils/coreutils.git
synced 2025-12-23 08:47:37 +00:00
35 lines
736 B
Rust
35 lines
736 B
Rust
#[cfg(feature = "libc")]
|
|
pub extern crate libc;
|
|
#[cfg(feature = "winapi")]
|
|
pub extern crate winapi;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
#[macro_use]
|
|
pub mod coreopts;
|
|
|
|
pub mod panic;
|
|
|
|
#[cfg(feature = "fs")]
|
|
pub mod fs;
|
|
#[cfg(feature = "utf8")]
|
|
pub mod utf8;
|
|
#[cfg(feature = "encoding")]
|
|
pub mod encoding;
|
|
#[cfg(feature = "parse_time")]
|
|
pub mod parse_time;
|
|
|
|
#[cfg(all(not(windows), feature = "mode"))]
|
|
pub mod mode;
|
|
#[cfg(all(unix, not(target_os = "fuchsia"), feature = "utmpx"))]
|
|
pub mod utmpx;
|
|
#[cfg(all(unix, feature = "entries"))]
|
|
pub mod entries;
|
|
#[cfg(all(unix, feature = "process"))]
|
|
pub mod process;
|
|
#[cfg(all(unix, not(target_os = "fuchsia"), feature = "signals"))]
|
|
pub mod signals;
|
|
|
|
#[cfg(all(windows, feature = "wide"))]
|
|
pub mod wide;
|