1 2 3 4 5 6 7 8 9 10
// Crate lint gates. Keep these at warn until the public surface is explicit // enough to promote unused/dead code to deny. #![warn(unused)] #![warn(dead_code)] mod cli; fn main() { cli::run(); }