tealdeer/Cargo.toml
Danilo Bargen e00fe75d37 Add clippy
2016-01-27 17:49:19 +01:00

26 lines
675 B
TOML

[package]
name = "tldr"
version = "0.1.0"
authors = ["Danilo Bargen <mail@dbrgn.ch>"]
repository = "https://github.com/dbrgn/tldr-rs/"
homepage = "https://github.com/dbrgn/tldr-rs/"
license = "MIT/Apache-2.0"
readme = "README.md"
description = "Fetch and show tldr help pages for many CLI commands."
[features]
logging = ["env_logger"]
dev = ["clippy"]
[dependencies]
ansi_term = "^0.7"
log = "^0.3"
tar = { git = "https://github.com/dbrgn/tar-rs", branch = "pax_header" }
flate2 = "^0.2"
curl = "^0.2"
rustc-serialize = "^0.3"
docopt = "^0.6"
time = "^0.1"
walkdir = "^0.1"
env_logger = { version = "^0.3", optional = true }
clippy = {version = "0.0.37", optional = true}