netcon/
lib.rs

1//! A collections of tools and helper functions developed for and by NetCon
2//! Unternehmensberatung GmbH
3//!
4//! # Features
5//!
6//! By default, all features are turned off. To actually get any use out of the `netcon` library,
7//! the required features need to be explicitly activated.
8//!
9//! ## `threadpool`
10//!
11//! An implementation of a thread pool to run code asynchronously in multiple
12//! threads. This enables the [`threadpool`](crate::threadpool) module.
13
14#[cfg(feature = "threadpool")]
15pub mod threadpool;