manganis_cli_support/
lib.rs

1#![doc = include_str!("../README.md")]
2#![deny(missing_docs)]
3
4#[allow(hidden_glob_reexports)]
5mod cache;
6mod file;
7mod manifest;
8mod marker;
9
10pub use file::process_file;
11pub use manganis_common::*;
12pub use manifest::*;
13pub use marker::*;