tokei/Cargo.toml

78 lines
1.5 KiB
TOML
Raw Normal View History

2016-08-01 17:06:01 +00:00
[package]
2019-03-30 11:25:35 +00:00
authors = ["XAMPPRocky <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"
2019-03-30 11:26:20 +00:00
version = "9.1.1"
2017-01-20 16:48:17 +00:00
[badges]
[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 = "1"
ignore = "0.4"
lazy_static = "1"
serde_json = "1"
2016-08-01 17:06:01 +00:00
[dependencies]
clap = "2"
2019-01-10 09:53:24 +00:00
dirs = "1"
encoding_rs_io = "0.1"
ignore = "0.4"
2018-01-06 15:44:46 +00:00
log = "0.4"
rayon = "1"
2019-01-10 09:53:24 +00:00
serde = "1"
serde_derive = "1"
term_size = "0.3.1"
2019-03-20 18:33:34 +00:00
toml = "0.5"
2016-08-01 17:06:01 +00:00
[dependencies.env_logger]
2016-09-20 21:59:45 +00:00
features = []
version = "0.6.0"
[dependencies.hex]
optional = true
version = "0.3"
[dependencies.serde_cbor]
optional = true
version = "0.9"
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.8"
2016-08-01 17:06:01 +00:00
[dev-dependencies]
lazy_static = "1"
2018-05-12 09:35:23 +00:00
regex = "1.0"
tempfile = "3.0.7"
2019-03-30 11:16:20 +00:00
git2 = { version = "0.8.0", default-features=false, features = [] }
2016-08-01 17:06:01 +00:00
[features]
2018-10-21 12:04:04 +00:00
all = ["json", "cbor", "yaml"]
2019-01-10 09:53:24 +00:00
cbor = ["hex", "serde_cbor"]
2016-08-01 17:06:01 +00:00
default = []
2019-01-10 09:53:24 +00:00
json = ["serde_json"]
yaml = ["serde_yaml"]
[profile]
[profile.release]
lto = true
panic = "abort"