scufflecloud_ext/
lib.rs

1//! Extension traits.
2#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
3#![cfg_attr(docsrs, feature(doc_auto_cfg))]
4// #![deny(missing_docs)]
5#![deny(unsafe_code)]
6#![deny(unreachable_pub)]
7#![deny(clippy::mod_module_files)]
8
9mod http_ext;
10mod std_ext;
11
12pub use http_ext::*;
13pub use std_ext::*;