forked from XAMPPRocky/tokei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
88 lines (74 loc) · 1.62 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
authors = ["Aaronepower <[email protected]>"]
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/**/*"
]
license = "MIT/Apache-2.0"
name = "tokei"
readme = "README.md"
repository = "https://github.com/Aaronepower/tokei.git"
version = "7.0.1"
keywords = ["utility", "cli", "cloc", "lines", "statistics"]
categories = ["command-line-utilities", "development-tools", "visualization"]
[badges]
travis-ci = { repository = "Aaronepower/tokei" }
appveyor = { repository = "Aaronepower/tokei" }
[profile.release]
panic="abort"
lto=true
[build-dependencies]
serde_json = "1"
ignore = "0.4"
handlebars = "0.31"
lazy_static = "1"
[dependencies]
encoding = "0.2"
ignore = "0.4"
log = "0.4"
rayon = "1"
regex = "0.2"
clap = "2.24"
[dependencies.env_logger]
features = []
version = "0.5.0"
[dependencies.hex]
version = "0.3"
optional = true
[dependencies.serde]
optional = true
version = "1"
[dependencies.serde_derive]
optional = true
version = "1"
[dependencies.serde_cbor]
optional = true
version = "0.8"
[dependencies.serde_json]
optional = true
version = "1"
[dependencies.serde_yaml]
optional = true
version = "0.7"
[dependencies.toml]
optional = true
version = "0.4"
[dev-dependencies]
tempdir = "0.3"
lazy_static = "1"
[features]
all = ["json", "cbor", "toml-io", "yaml"]
cbor = ["io", "hex", "serde_cbor"]
default = []
io = ["serde_derive", "serde"]
json = ["io", "serde_json"]
toml-io = ["io", "toml"]
yaml = ["io", "serde_yaml"]