tokei/Cargo.toml

26 lines
634 B
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-13 21:22:37 +00:00
version = "2.0.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."
2015-05-26 21:00:12 +00:00
[profile.dev]
debug = true
[profile.release]
opt-level = 3
[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-03-20 19:42:03 +00:00
walkdir = "0.1.5"
2016-05-13 21:22:37 +00:00
rayon = "0.3.1"