//! A Zebra utilities crate. // TODO: split this crate up into crates with meaningful names. #![deny(missing_docs)] #![allow(clippy::try_err)] #[cfg(test)] mod tests { #[test] fn it_works() { assert_eq!(2 + 2, 4); } }