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