mirror of
https://github.com/openharmony/third_party_rust_rustix.git
synced 2026-07-24 23:25:55 -04:00
14 lines
398 B
Rust
14 lines
398 B
Rust
//! 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;
|