16 lines
338 B
Rust
Raw Normal View History

// suppress all the false alarms by cargo test
// https://github.com/rust-lang/rust/issues/46379
#![allow(dead_code)]
pub mod cache_xml_generator;
pub mod common_args;
pub mod fixture;
pub mod input_arg;
pub mod output_option;
pub mod process;
pub mod program;
pub mod target;
pub mod test_dir;
pub mod thin;
2021-05-04 16:10:20 +08:00
pub mod thin_xml_generator;