1
0
mirror of https://github.com/sharkdp/bat.git synced 2026-02-08 08:42:08 +00:00

Initial commit

This commit is contained in:
sharkdp
2018-04-21 12:51:43 +02:00
commit 8f5a80ea07
4 changed files with 855 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
authors = ["David Peter <mail@david-peter.de>"]
categories = ["command-line-utilities"]
homepage = "https://github.com/sharkdp/bat"
license = "MIT/Apache-2.0"
name = "bat"
readme = "README.md"
repository = "https://github.com/sharkdp/bat"
version = "0.1.0"
[dependencies]
atty = "0.2.2"
syntect = "2"
ansi_term = "0.9"
console = "0.6"
[dependencies.clap]
version = "2"
default-features = false
features = ["suggestions", "color", "wrap_help"]