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