Crates.io | netcon |
lib.rs | netcon |
version | 0.1.2 |
source | src |
created_at | 2021-12-07 11:12:40.635635 |
updated_at | 2021-12-08 07:18:53.2624 |
description | A collections of tools and helper functions developed for and by NetCon Unternehmensberatung GmbH |
homepage | |
repository | https://github.com/netcon-consulting/netcon-rs |
max_upload_size | |
id | 493794 |
size | 12,886 |
A collections of tools and helper functions developed for and by NetCon Unternehmensberatung GmbH.
To use this library, just add the following to this repository to the
dependencies section of your Cargo.toml
.
netcon = "^0.1"
The library is structured in several features, that allow to keep the used dependencies as low as possible. The following features are available:
threadpool
: A struct to limit the number parallel running threads in a
multithreaded program.The documentation for this crate can be found on
docs.rs. Alternatively, too build the
documentation locally, run cargo doc --all-features
. This builds the
documentation including all optional features.
Since all features are turned off by default, running cargo test
will do
nothing actually useful. To run all tests, the --all-features
flag must be
added. Otherwise specific features can be selected by adding the with the
--features <feature>,...
option.