]> git.proxmox.com Git - rustc.git/blob - vendor/wasi-0.7.0/src/lib.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / vendor / wasi-0.7.0 / src / lib.rs
1 #![cfg_attr(
2 feature = "cargo-clippy",
3 warn(
4 clippy::float_arithmetic,
5 clippy::mut_mut,
6 clippy::nonminimal_bool,
7 clippy::option_map_unwrap_or,
8 clippy::option_map_unwrap_or_else,
9 clippy::print_stdout,
10 clippy::unicode_not_nfc,
11 clippy::use_self
12 )
13 )]
14 #![no_std]
15 #[cfg(all(feature = "alloc", not(feature = "rustc-std-workspace-alloc")))]
16 extern crate alloc;
17 #[cfg(all(feature = "alloc", feature = "rustc-std-workspace-alloc"))]
18 extern crate rustc_std_workspace_alloc as alloc;
19
20 pub mod wasi_unstable;