rust-utils 0.16.0

Various utility routines used in the rust programs I have written
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

#[cfg(test)]
mod tests;

pub mod utils;
pub mod logging;
pub mod config;

mod macros;

#[cfg(feature = "linux")]
pub mod linux;

#[cfg(feature = "futures")]
pub mod futures;

pub use rust_utils_macros::*;