blob: 4c9d99fa423764b74ede282ab6ceb492d4d0153d (
plain)
1
2
3
4
5
6
7
8
|
//! A crate with utilities that don't need feature toggles.
//!
//! If they would need feature toggles, they should be in `gix-features` instead.
#![deny(rust_2018_idioms, missing_docs)]
#![forbid(unsafe_code)]
///
pub mod backoff;
|