summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 5ef4b8f897d7ce6eab47ea5269819ca9a01f6f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// `error_chain!` can recurse deeply
#![recursion_limit = "1024"]

pub(crate) mod assets;
pub(crate) mod assets_metadata;
pub mod config;
pub(crate) mod controller;
mod decorations;
mod diff;
pub mod errors;
pub(crate) mod inputfile;
mod less;
pub(crate) mod line_range;
mod output;
mod preprocessor;
pub(crate) mod printer;
pub(crate) mod style;
pub(crate) mod syntax_mapping;
mod terminal;
pub(crate) mod wrap;

pub use assets::HighlightingAssets;
pub use assets_metadata::AssetsMetadata;
pub use controller::Controller;
pub use printer::{InteractivePrinter, Printer, SimplePrinter};