normalized_line_endings/lib.rs
1#![doc = include_str!("../docs/README.md")]
2
3#![no_std]
4#![deny(missing_docs)]
5#![deny(rustdoc::broken_intra_doc_links)]
6#![deny(rustdoc::missing_crate_level_docs)]
7
8mod annotated;
9mod common;
10mod line_ending;
11mod normalized;
12
13pub use annotated::{annotated, Annotated, AnnotatedChar};
14pub use common::{CR, LF};
15pub use line_ending::LineEnding;
16pub use normalized::{normalized, Normalized};