utils-box-linux 1.0.1

A toolbox of various small RUST utilities that make UNIX thread handling easier
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Summary
//! A toolbox library that holds a useful collection of small unitilies written in Rust that make our life easier when writting Rust applications.
//!
//! # Utilities provided:
//!
//! ## Linux OS utilities
//! A toolbox of small utilities for Linux environments.
//! Useful for fast binary development via the provided signal handling and panic hooks.
//!
//!

#[cfg(target_family = "unix")]
#[cfg(not(tarpaulin_include))]
pub mod threads;