From eefdb186b8f05aedfa5ca76c89a4d14bebbfac32 Mon Sep 17 00:00:00 2001 From: Fahmi Akbar Wildana Date: Sun, 6 Oct 2019 08:49:33 +0700 Subject: [PATCH] Add lib.rs --- src/lib.rs | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/lib.rs diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 00000000..f8359055 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,38 @@ +// `error_chain!` can recurse deeply +#![recursion_limit = "1024"] + +#[macro_use] +extern crate error_chain; + +#[macro_use] +extern crate clap; + +#[macro_use] +extern crate lazy_static; + +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; + +mod assets; +mod config; +mod controller; +mod decorations; +mod diff; +mod dirs; +mod inputfile; +mod line_range; +mod output; +mod preprocessor; +mod printer; +mod style; +mod syntax_mapping; +mod terminal; +mod util; \ No newline at end of file