tokei/Cargo.toml

89 lines
1.6 KiB
TOML
Raw Normal View History

2016-08-01 17:06:01 +00:00
[package]
authors = ["Aaronepower <theaaronepower@gmail.com>"]
build = "build.rs"
description = "A utility that allows you to count code, quickly."
homepage = "https://tokei.rs"
include = [
"Cargo.lock",
"Cargo.toml",
"LICENCE-APACHE",
"LICENCE-MIT",
"build.rs",
"languages.json",
"src/**/*"
]
2016-08-01 17:06:01 +00:00
license = "MIT/Apache-2.0"
name = "tokei"
readme = "README.md"
repository = "https://github.com/Aaronepower/tokei.git"
version = "7.0.2"
2017-02-18 02:02:10 +00:00
keywords = ["utility", "cli", "cloc", "lines", "statistics"]
2017-01-20 16:48:17 +00:00
categories = ["command-line-utilities", "development-tools", "visualization"]
[badges]
travis-ci = { repository = "Aaronepower/tokei" }
appveyor = { repository = "Aaronepower/tokei" }
[profile.release]
panic="abort"
2017-01-20 16:48:17 +00:00
lto=true
2016-12-03 11:51:34 +00:00
[build-dependencies]
serde_json = "1"
ignore = "0.4"
handlebars = "0.32"
lazy_static = "1"
2016-08-01 17:06:01 +00:00
[dependencies]
encoding = "0.2"
ignore = "0.4"
2018-01-06 15:44:46 +00:00
log = "0.4"
rayon = "1"
clap = "2.24"
2016-08-01 17:06:01 +00:00
[dependencies.env_logger]
2016-09-20 21:59:45 +00:00
features = []
version = "0.5.0"
[dependencies.hex]
version = "0.3"
optional = true
2016-08-01 17:06:01 +00:00
[dependencies.serde]
optional = true
version = "1"
[dependencies.serde_derive]
optional = true
version = "1"
2016-08-01 17:06:01 +00:00
[dependencies.serde_cbor]
optional = true
version = "0.8"
2016-08-01 17:06:01 +00:00
[dependencies.serde_json]
optional = true
version = "1"
2016-08-01 17:06:01 +00:00
[dependencies.serde_yaml]
optional = true
version = "0.7"
2016-08-01 17:06:01 +00:00
[dependencies.toml]
optional = true
version = "0.4"
[dev-dependencies]
tempdir = "0.3"
lazy_static = "1"
2018-04-16 14:57:38 +00:00
regex = "0.2"
2016-08-01 17:06:01 +00:00
[features]
all = ["json", "cbor", "toml-io", "yaml"]
cbor = ["io", "hex", "serde_cbor"]
2016-08-01 17:06:01 +00:00
default = []
io = ["serde_derive", "serde"]
2016-08-01 17:06:01 +00:00
json = ["io", "serde_json"]
2018-01-06 15:44:46 +00:00
toml-io = ["io", "toml"]
2016-08-01 17:06:01 +00:00
yaml = ["io", "serde_yaml"]