Sha256: fbe294749100630467580f5e25b44e7a4f8a4512381cc18acaf1a6813afc39cd

Contents?: true

Size: 278 Bytes

Versions: 4

Compression:

Stored size: 278 Bytes

Contents

//! Filesystem path operations.

mod arg;
#[cfg(feature = "itoa")]
mod dec_int;

pub use arg::{option_into_with_c_str, Arg};
#[cfg(feature = "itoa")]
#[cfg_attr(docsrs, doc(cfg(feature = "itoa")))]
pub use dec_int::DecInt;

pub(crate) const SMALL_PATH_BUFFER_SIZE: usize = 256;

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/rustix-0.38.44/src/path/mod.rs
wasmtime-28.0.0 ./ext/cargo-vendor/rustix-0.38.43/src/path/mod.rs
wasmtime-27.0.0 ./ext/cargo-vendor/rustix-0.38.41/src/path/mod.rs
wasmtime-26.0.0 ./ext/cargo-vendor/rustix-0.38.37/src/path/mod.rs