2019-10-06 08:49:33 +07:00
|
|
|
// `error_chain!` can recurse deeply
|
|
|
|
#![recursion_limit = "1024"]
|
|
|
|
|
|
|
|
extern crate ansi_term;
|
|
|
|
extern crate atty;
|
|
|
|
extern crate console;
|
|
|
|
extern crate content_inspector;
|
|
|
|
extern crate dirs as dirs_rs;
|
|
|
|
extern crate encoding;
|
|
|
|
extern crate git2;
|
|
|
|
extern crate shell_words;
|
|
|
|
extern crate syntect;
|
|
|
|
extern crate wild;
|
|
|
|
|
2019-10-06 09:18:08 +07:00
|
|
|
pub mod assets;
|
2020-03-21 19:40:13 +01:00
|
|
|
pub mod config;
|
2019-10-06 08:44:14 +07:00
|
|
|
pub mod controller;
|
2019-10-20 22:09:58 +02:00
|
|
|
mod decorations;
|
|
|
|
mod diff;
|
2020-03-21 19:35:04 +01:00
|
|
|
pub mod errors;
|
2019-10-06 09:18:08 +07:00
|
|
|
pub mod inputfile;
|
2019-12-23 09:54:18 +01:00
|
|
|
mod less;
|
2019-10-06 09:18:08 +07:00
|
|
|
pub mod line_range;
|
2019-10-29 19:46:04 +01:00
|
|
|
mod output;
|
2019-10-20 22:09:58 +02:00
|
|
|
mod preprocessor;
|
2019-10-29 19:46:04 +01:00
|
|
|
mod printer;
|
2019-10-06 09:18:08 +07:00
|
|
|
pub mod style;
|
|
|
|
pub mod syntax_mapping;
|
2019-10-20 22:09:58 +02:00
|
|
|
mod terminal;
|
2020-03-21 20:54:16 +01:00
|
|
|
pub mod wrap;
|