mirror of
https://github.com/sharkdp/bat
synced 2024-11-04 18:00:24 +00:00
Add lib.rs
This commit is contained in:
parent
fc0ad4db2e
commit
eefdb186b8
38
src/lib.rs
Normal file
38
src/lib.rs
Normal file
@ -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;
|
Loading…
Reference in New Issue
Block a user