tokei/Cargo.toml

80 lines
1.8 KiB
TOML
Raw Normal View History

2016-08-01 17:06:01 +00:00
[package]
2019-07-04 20:21:27 +00:00
authors = ["Erin Power <xampprocky@gmail.com>"]
build = "build.rs"
categories = ["command-line-utilities", "development-tools", "visualization"]
description = "A utility that allows you to count code, quickly."
edition = "2018"
homepage = "https://tokei.rs"
include = ["Cargo.lock", "Cargo.toml", "LICENCE-APACHE", "LICENCE-MIT", "build.rs", "languages.json", "src/**/*"]
keywords = ["utility", "cli", "cloc", "lines", "statistics"]
2016-08-01 17:06:01 +00:00
license = "MIT/Apache-2.0"
name = "tokei"
readme = "README.md"
2019-03-30 11:25:35 +00:00
repository = "https://github.com/XAMPPRocky/tokei.git"
version = "10.1.2"
2017-01-20 16:48:17 +00:00
2020-02-14 13:21:20 +00:00
[features]
all = ["json", "cbor", "yaml"]
cbor = ["hex", "serde_cbor"]
default = []
json = ["serde_json"]
yaml = ["serde_yaml"]
[profile.release]
2020-03-20 17:43:31 +00:00
lto = "thin"
2020-02-14 13:21:20 +00:00
panic = "abort"
[badges.appveyor]
2019-03-30 11:25:35 +00:00
repository = "XAMPPRocky/tokei"
[badges.travis-ci]
2019-03-30 11:25:35 +00:00
repository = "XAMPPRocky/tokei"
2016-12-03 11:51:34 +00:00
[build-dependencies]
handlebars = "3.0.1"
ignore = "0.4.12"
lazy_static = "1.4.0"
serde_json = "1.0.47"
2016-08-01 17:06:01 +00:00
[dependencies]
aho-corasick = "0.7.10"
2019-06-10 16:30:00 +00:00
clap = "2.33.0"
crossbeam-channel = "0.4.2"
dirs = "2.0.2"
encoding_rs_io = "0.1.7"
grep-searcher = "0.1.7"
ignore = "0.4.12"
2019-06-10 16:30:00 +00:00
log = "0.4.6"
rayon = "1.3.0"
serde = { version = "1.0.105", features = ["derive", "rc"] }
term_size = "0.3.1"
toml = "0.5.6"
parking_lot = "0.10.0"
dashmap = { version = "3.7.0", features = ["serde"] }
lazy_static = "1.4.0"
2016-08-01 17:06:01 +00:00
[dependencies.env_logger]
2016-09-20 21:59:45 +00:00
features = []
version = "0.7.1"
[dependencies.hex]
optional = true
version = "0.4.2"
[dependencies.serde_cbor]
optional = true
version = "0.11.1"
2016-08-01 17:06:01 +00:00
[dependencies.serde_json]
optional = true
version = "1.0.47"
2016-08-01 17:06:01 +00:00
[dependencies.serde_yaml]
optional = true
version = "0.8.11"
2016-08-01 17:06:01 +00:00
[dev-dependencies]
lazy_static = "1.4.0"
regex = "1.3.5"
2019-06-10 16:30:00 +00:00
tempfile = "3.0.8"
git2 = { version = "0.13.0", default-features = false, features = [] }