tokei/Cargo.toml

52 lines
1.5 KiB
TOML
Raw Normal View History

2015-09-21 22:51:42 +00:00
# Copyright (c) 2015 Aaron Power
2016-05-01 17:33:46 +00:00
# Use of this source code is governed by the MIT/APACHE2.0 license that can be
# found in the LICENCE-{APACHE, MIT} file.
2015-05-26 21:00:12 +00:00
[package]
name = "tokei"
2016-05-29 19:31:57 +00:00
version = "2.2.0"
2015-05-26 21:00:12 +00:00
authors = ["Aaronepower <theaaronepower@gmail.com>"]
repository = "https://github.com/Aaronepower/tokei.git"
homepage = "https://aaronepower.github.io/tokei/"
2016-01-26 20:26:38 +00:00
license = "MIT/Apache-2.0"
readme = "README.md"
2016-05-13 21:16:05 +00:00
description = "Count code, quickly."
2016-05-22 17:07:16 +00:00
build = "build.rs"
2015-05-26 21:00:12 +00:00
2016-05-29 19:31:57 +00:00
[lib]
name = "tokei"
path = "src/lib.rs"
[[bin]]
name = "tokei"
path = "src/main.rs"
2016-05-20 11:44:24 +00:00
# For building serde in stable.
[build-dependencies]
2016-05-22 18:47:17 +00:00
serde_codegen = "0.7.5"
syntex = "0.32.0"
2016-05-20 11:44:24 +00:00
# Dependencies, and why they are used.
# - Clap: For CLI argument parsing.
# - Glob: When a user passes in a ./*.rs path.
# - Maplit: Cleaner initialization of the language map.
# - Rayon: Parallelization of language analysation.
# - Rustc-serialize: Converting String to hex, for CBOR.
# - Serde: Converting Language struct to other formats.
# - Serde_cbor: To CBOR. http://cbor.io/
# - Serde_json: To JSON. http://json.org/
# - Serde_yaml: To YAML. http://yaml.org/
2016-05-29 19:31:57 +00:00
# - Toml: To TOML https://github.com/toml-lang/toml
2016-05-20 11:44:24 +00:00
# - Walkdir: Handling recursively reading directories across Windows, OSX, and UNIX.
[dependencies]
2016-05-13 21:16:05 +00:00
clap = {version = "2.5.1", features = ["yaml"]}
2016-05-13 21:22:37 +00:00
glob = "0.2.11"
maplit = "0.1.3"
2016-05-13 21:22:37 +00:00
rayon = "0.3.1"
2016-05-22 17:31:28 +00:00
rustc-serialize = "0.3.19"
serde = "0.7.5"
serde_cbor = "0.3.3"
serde_json = "0.7.0"
serde_yaml = "0.2.4"
2016-05-29 19:31:57 +00:00
toml = {version = "0.1.30", features = ["serde"]}
2016-05-20 11:44:24 +00:00
walkdir = "0.1.5"