1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2023 The rust-ggstd authors.
// SPDX-License-Identifier: BSD-3-Clause

#![allow(clippy::module_inception)]

pub mod bufio;
pub mod builtin;
pub mod bytes;
pub mod compat;
pub mod compress;
pub mod crypto;
pub mod encoding;
pub mod errors;
pub mod hash;
pub mod image;
pub mod internal;
pub mod io;
pub mod math;
pub mod os;
pub mod runtime;
pub mod strconv;
pub mod strings;
pub mod syscall;
pub mod time;
pub mod unicode;

#[cfg(target_os = "windows")]
mod winapi_;

#[cfg(target_os = "linux")]
mod libc_;