prosa_utils/lib.rs
1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/COPYRIGHT"))]
2//!
3//! [![github]](https://github.com/worldline/ProSA) [![crates-io]](https://crates.io/crates/prosa-utils) [![docs-rs]](crate) [![mdbook]](https://worldline.github.io/ProSA/)
4//!
5#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/doc_assets/header_badges.md"))]
6//!
7//! Utils for ProSA
8#![warn(missing_docs)]
9#![deny(unreachable_pub)]
10#![cfg_attr(docsrs, feature(doc_auto_cfg))]
11
12#[cfg(feature = "msg")]
13pub mod msg;
14
15#[cfg(feature = "config")]
16pub mod config;