ggstd/
lib.rs

1// Copyright 2023 The rust-ggstd authors.
2// SPDX-License-Identifier: BSD-3-Clause
3
4#![allow(clippy::module_inception)]
5
6pub mod bufio;
7pub mod builtin;
8pub mod bytes;
9pub mod compat;
10pub mod compress;
11pub mod crypto;
12pub mod encoding;
13pub mod errors;
14pub mod hash;
15pub mod image;
16pub mod internal;
17pub mod io;
18pub mod math;
19pub mod os;
20pub mod runtime;
21pub mod strconv;
22pub mod strings;
23pub mod syscall;
24pub mod time;
25pub mod unicode;
26
27#[cfg(target_os = "windows")]
28mod winapi_;
29
30#[cfg(target_os = "linux")]
31mod libc_;