blob: 3215c7e5edc87d0d643ffcf179539cc4fbf11699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//! Tests for [`rustix::path`].
#![cfg(any(feature = "fs", feature = "net"))]
#![cfg(not(windows))]
#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
#![cfg_attr(core_c_str, feature(core_c_str))]
#![cfg_attr(alloc_c_string, feature(alloc_c_string))]
#[cfg(not(feature = "rustc-dep-of-std"))]
mod arg;
#[cfg(feature = "itoa")]
mod dec_int;
|