2023-04-18 22:38:18 -04:00
|
|
|
#![feature(exit_status_error)]
|
2023-09-02 18:40:01 -04:00
|
|
|
#![feature(trait_alias)]
|
2023-09-29 21:46:52 -04:00
|
|
|
#![feature(path_file_prefix)]
|
2023-10-16 15:50:08 -04:00
|
|
|
#![feature(test)]
|
2023-12-29 11:37:30 -05:00
|
|
|
#![feature(iter_intersperse)]
|
2024-01-03 20:06:53 -05:00
|
|
|
#![feature(exact_size_is_empty)]
|
2023-09-11 13:09:46 -04:00
|
|
|
// TODO: #![warn(missing_docs)]
|
2023-10-16 17:58:52 -04:00
|
|
|
#![allow(clippy::bool_assert_comparison)] // Sometimes you want the long form because its easier to see at a glance.
|
2023-04-21 18:50:52 -04:00
|
|
|
|
2023-10-16 15:50:08 -04:00
|
|
|
extern crate test;
|
|
|
|
|
2023-12-31 11:11:25 -05:00
|
|
|
#[cfg(feature = "compare")]
|
2023-09-12 15:15:21 -04:00
|
|
|
pub mod compare;
|
2024-01-03 20:06:53 -05:00
|
|
|
pub mod parse_cli;
|
2023-12-30 22:02:43 -05:00
|
|
|
#[cfg(any(feature = "compare", feature = "wasm", feature = "wasm_test"))]
|
2024-01-03 23:04:47 -05:00
|
|
|
mod util;
|
2023-12-27 08:49:34 -05:00
|
|
|
#[cfg(any(feature = "wasm", feature = "wasm_test"))]
|
2024-01-03 23:38:04 -05:00
|
|
|
mod wasm;
|
|
|
|
#[cfg(any(feature = "wasm", feature = "wasm_test"))]
|
|
|
|
pub mod wasm_cli;
|
2023-12-27 08:17:15 -05:00
|
|
|
#[cfg(feature = "wasm_test")]
|
2023-12-27 08:42:13 -05:00
|
|
|
pub mod wasm_test;
|
2023-04-21 18:50:52 -04:00
|
|
|
|
2023-09-02 18:46:45 -04:00
|
|
|
mod context;
|
2023-04-21 18:50:52 -04:00
|
|
|
mod error;
|
2023-10-17 13:32:01 -04:00
|
|
|
#[cfg(feature = "event_count")]
|
2024-01-03 20:06:53 -05:00
|
|
|
mod event_count;
|
2023-09-27 13:48:17 -04:00
|
|
|
mod iter;
|
2023-09-11 13:13:28 -04:00
|
|
|
pub mod parser;
|
|
|
|
pub mod types;
|
2023-09-04 21:46:40 -04:00
|
|
|
|
2023-09-29 16:37:22 -04:00
|
|
|
pub mod settings {
|
|
|
|
pub use crate::context::FileAccessInterface;
|
|
|
|
pub use crate::context::GlobalSettings;
|
|
|
|
pub use crate::context::HeadlineLevelFilter;
|
|
|
|
pub use crate::context::LocalFileAccessInterface;
|
|
|
|
pub use crate::context::DEFAULT_TAB_WIDTH;
|
|
|
|
}
|