1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-02-23 05:18:29 +00:00
bat/src/lib.rs

31 lines
558 B
Rust
Raw Normal View History

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;
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;
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;
pub mod wrap;