A collection of common utilities and helpers used across Cutoff projects.
- Common traits and utility functions
- Collections utilities
- I/O utilities
- URN handling
- Optional logging utilities (with the
tracing-subscriberfeature) - Optional serialization support (with the
serdefeature)
Add this to your Cargo.toml:
[dependencies]
cutoff-common = { path = "../path/to/cutoff-common" }To enable optional features:
[dependencies]
cutoff-common = { path = "../path/to/cutoff-common", features = ["serde", "tracing-subscriber"] }This crate is meant to be used internally by the Cutoff projects and crates as a dependency. It is not meant to be used by external projects. No effort will be made in terms of backward-compatibility.
Licensed under either of:
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.