1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![cfg_attr(
    feature = "cargo-clippy",
    warn(
        clippy::float_arithmetic,
        clippy::mut_mut,
        clippy::nonminimal_bool,
        clippy::option_map_unwrap_or,
        clippy::option_map_unwrap_or_else,
        clippy::print_stdout,
        clippy::unicode_not_nfc,
        clippy::use_self
    )
)]
#![no_std]
#[cfg(all(feature = "alloc", not(feature = "rustc-std-workspace-alloc")))]
extern crate alloc;
#[cfg(all(feature = "alloc", feature = "rustc-std-workspace-alloc"))]
extern crate rustc_std_workspace_alloc as alloc;

pub mod wasi_unstable;