pistonite-cu 0.8.1

Battery-included common utils to speed up development of rust tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Working with bytes

mod zstring;
pub use zstring::{ZString, zero};
mod byte_format;
pub use byte_format::ByteFormat;

mod osstring;
pub use osstring::{OsStrExtension, OsStrExtensionOwned};

// path requires fs since there are utils that checks for existence
// (check_exists, normalize)
#[cfg(feature = "fs")]
mod path;
#[cfg(feature = "fs")]
pub use path::PathExtension;