Zebra/zebra-utils/src/lib.rs

15 lines
241 B
Rust

//! 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);
}
}