netcon 0.1.2

A collections of tools and helper functions developed for and by NetCon Unternehmensberatung GmbH
Documentation
  • Coverage
  • 100%
    10 out of 10 items documented3 out of 5 items with examples
  • Size
  • Source code size: 12.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.76 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • netcon-consulting/netcon-rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • scattenlaeufer github:netcon-consulting:rust

netcon-rs

A collections of tools and helper functions developed for and by NetCon Unternehmensberatung GmbH.

Usage

To use this library, just add the following to this repository to the dependencies section of your Cargo.toml.

netcon = "^0.1"

Features

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.

Documentation

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.

Tests

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.