mirror of
https://github.com/uutils/coreutils
synced 2024-12-17 00:23:18 +00:00
72d2ab208c
Also refactored out usage of the `time` crate in `uucore`.
16 lines
279 B
Rust
16 lines
279 B
Rust
extern crate libc;
|
|
#[cfg(windows)] extern crate winapi;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
pub mod fs;
|
|
pub mod parse_time;
|
|
pub mod utf8;
|
|
|
|
#[cfg(unix)] pub mod c_types;
|
|
#[cfg(unix)] pub mod process;
|
|
#[cfg(unix)] pub mod signals;
|
|
#[cfg(unix)] pub mod utmpx;
|
|
|
|
#[cfg(windows)] pub mod wide;
|