tokei/Cargo.toml

72 lines
1.4 KiB
TOML
Raw Normal View History

2016-06-10 21:33:27 +00:00
[package]
authors = ["Aaronepower <theaaronepower@gmail.com>"]
build = "src/lib/build.rs"
2016-08-01 08:53:09 +00:00
description = "Count code, quickly."
homepage = "https://aaronepower.github.io/tokei/"
2016-08-01 11:22:53 +00:00
include = ["src/**/*", "cli.yml", "Cargo.toml", "LICENCE-APACHE", "LICENCE-MIT"]
2016-08-01 08:53:09 +00:00
license = "MIT/Apache-2.0"
2016-06-10 21:33:27 +00:00
name = "tokei"
2016-08-01 08:53:09 +00:00
readme = "README.md"
repository = "https://github.com/Aaronepower/tokei.git"
2016-08-01 11:22:53 +00:00
version = "4.0.0"
2016-06-10 21:33:27 +00:00
[[bin]]
2016-08-01 08:53:09 +00:00
doc = false
2016-06-10 21:33:27 +00:00
name = "tokei"
path = "src/main.rs"
2016-07-17 21:17:49 +00:00
2016-06-10 21:33:27 +00:00
[build-dependencies]
2016-08-01 08:53:09 +00:00
[build-dependencies.serde_codegen]
optional = true
version = "0.8.0"
2016-06-10 21:33:27 +00:00
[dependencies]
2016-08-01 08:53:09 +00:00
glob = "~0.2.11"
maplit = "~0.1.3"
rayon = "~0.4.0"
walkdir = "~0.1.5"
[dependencies.clap]
version = "~2.10.0"
features = ["yaml"]
[dependencies.rustc-serialize]
optional = true
version = "~0.3.19"
[dependencies.serde]
optional = true
version = "~0.8.0"
[dependencies.serde_cbor]
optional = true
version = "~0.3.3"
[dependencies.serde_json]
optional = true
version = "~0.8.0"
[dependencies.serde_yaml]
optional = true
version = "~0.4.0"
2016-06-10 21:33:27 +00:00
[dependencies.toml]
default-features = false
features = ["serde"]
2016-07-17 21:17:49 +00:00
optional = true
2016-08-01 11:11:40 +00:00
git = "https://github.com/alexcrichton/toml-rs"
2016-08-01 08:53:09 +00:00
[features]
all = ["json", "cbor", "toml-io", "yaml"]
cbor = ["io", "rustc-serialize", "serde_cbor"]
default = []
io = ["serde_codegen", "serde"]
json = ["io", "serde_json"]
toml-io = ["io", "toml/serde"]
yaml = ["io", "serde_yaml"]
[lib]
name = "tokei"
path = "src/lib/lib.rs"