mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-26 02:51:08 -05:00
13 lines
237 B
Rust
13 lines
237 B
Rust
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
#![warn(clippy::print_stderr)]
|
|
#![warn(clippy::print_stdout)]
|
|
|
|
#[cfg(feature = "map")]
|
|
mod map;
|
|
mod table;
|
|
mod trie;
|
|
|
|
#[cfg(feature = "map")]
|
|
pub use map::*;
|
|
pub use table::*;
|
|
pub use trie::*;
|