v_utils 2.15.41

My utils crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod cli;
pub use cli::*;

pub mod expanded_path;
pub use expanded_path::*;

#[cfg(feature = "async-io")]
pub mod file_open;
#[cfg(feature = "async-io")]
pub use file_open::*;

pub mod progress_bar;
pub use progress_bar::*;

#[cfg(not(feature = "wasm"))] // no clue why, but it breaks (could it be lto and --no-bitcode?)
pub mod xdg;