2016-08-01 17:06:01 +00:00
|
|
|
[package]
|
2019-07-04 20:21:27 +00:00
|
|
|
authors = ["Erin Power <xampprocky@gmail.com>"]
|
2016-11-27 15:54:35 +00:00
|
|
|
build = "build.rs"
|
2018-08-24 15:46:42 +00:00
|
|
|
categories = ["command-line-utilities", "development-tools", "visualization"]
|
2016-11-27 15:54:35 +00:00
|
|
|
description = "A utility that allows you to count code, quickly."
|
2019-03-11 16:00:03 +00:00
|
|
|
edition = "2018"
|
2016-12-21 13:44:54 +00:00
|
|
|
homepage = "https://tokei.rs"
|
2018-08-24 15:46:42 +00:00
|
|
|
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"
|
2020-02-13 17:01:40 +00:00
|
|
|
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"
|
|
|
|
|
2018-08-24 15:46:42 +00:00
|
|
|
[badges.appveyor]
|
2019-03-30 11:25:35 +00:00
|
|
|
repository = "XAMPPRocky/tokei"
|
2018-08-24 15:46:42 +00:00
|
|
|
[badges.travis-ci]
|
2019-03-30 11:25:35 +00:00
|
|
|
repository = "XAMPPRocky/tokei"
|
2016-12-03 11:51:34 +00:00
|
|
|
|
2016-09-17 21:45:37 +00:00
|
|
|
[build-dependencies]
|
2020-01-27 08:34:10 +00:00
|
|
|
handlebars = "3.0.1"
|
2020-03-16 10:21:48 +00:00
|
|
|
ignore = "0.4.12"
|
2019-10-05 08:40:17 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-02-10 05:09:58 +00:00
|
|
|
serde_json = "1.0.47"
|
2016-08-01 17:06:01 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-03-18 00:58:44 +00:00
|
|
|
aho-corasick = "0.7.10"
|
2019-06-10 16:30:00 +00:00
|
|
|
clap = "2.33.0"
|
2020-03-18 00:58:44 +00:00
|
|
|
crossbeam-channel = "0.4.2"
|
2019-10-09 11:13:48 +00:00
|
|
|
dirs = "2.0.2"
|
2020-02-10 05:10:17 +00:00
|
|
|
encoding_rs_io = "0.1.7"
|
2020-03-18 00:58:44 +00:00
|
|
|
grep-searcher = "0.1.7"
|
2020-03-16 10:21:48 +00:00
|
|
|
ignore = "0.4.12"
|
2019-06-10 16:30:00 +00:00
|
|
|
log = "0.4.6"
|
2019-12-23 13:19:23 +00:00
|
|
|
rayon = "1.3.0"
|
2020-03-20 17:22:48 +00:00
|
|
|
serde = { version = "1.0.105", features = ["derive", "rc"] }
|
2018-08-22 06:58:33 +00:00
|
|
|
term_size = "0.3.1"
|
2020-01-17 09:27:50 +00:00
|
|
|
toml = "0.5.6"
|
2020-03-18 04:55:54 +00:00
|
|
|
parking_lot = "0.10.0"
|
2020-03-20 17:22:48 +00:00
|
|
|
dashmap = { version = "3.7.0", features = ["serde"] }
|
|
|
|
lazy_static = "1.4.0"
|
2016-08-01 17:06:01 +00:00
|
|
|
|
2016-09-20 20:49:47 +00:00
|
|
|
[dependencies.env_logger]
|
2016-09-20 21:59:45 +00:00
|
|
|
features = []
|
2019-10-17 17:35:00 +00:00
|
|
|
version = "0.7.1"
|
2017-01-02 22:47:10 +00:00
|
|
|
|
|
|
|
[dependencies.hex]
|
|
|
|
optional = true
|
2020-03-04 18:57:26 +00:00
|
|
|
version = "0.4.2"
|
2016-09-20 20:49:47 +00:00
|
|
|
|
2018-08-24 15:46:42 +00:00
|
|
|
[dependencies.serde_cbor]
|
2017-02-15 19:42:08 +00:00
|
|
|
optional = true
|
2020-01-13 06:05:41 +00:00
|
|
|
version = "0.11.1"
|
2016-08-01 17:06:01 +00:00
|
|
|
|
|
|
|
[dependencies.serde_json]
|
|
|
|
optional = true
|
2020-02-10 05:09:58 +00:00
|
|
|
version = "1.0.47"
|
2016-08-01 17:06:01 +00:00
|
|
|
|
|
|
|
[dependencies.serde_yaml]
|
|
|
|
optional = true
|
2019-10-09 11:13:57 +00:00
|
|
|
version = "0.8.11"
|
2016-08-01 17:06:01 +00:00
|
|
|
|
2016-09-17 21:45:37 +00:00
|
|
|
[dev-dependencies]
|
2019-10-05 08:40:17 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-03-13 06:38:24 +00:00
|
|
|
regex = "1.3.5"
|
2019-06-10 16:30:00 +00:00
|
|
|
tempfile = "3.0.8"
|
2020-03-16 10:22:18 +00:00
|
|
|
git2 = { version = "0.13.0", default-features = false, features = [] }
|