Update Cargo.toml, see #42

This commit is contained in:
sharkdp 2017-09-09 19:11:54 +02:00
parent f41c7a4344
commit 916b55fae1
2 changed files with 14 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1,5 +1,5 @@
[root]
name = "fd"
name = "fd-find"
version = "3.0.0"
dependencies = [
"ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,7 +1,19 @@
[package]
name = "fd"
name = "fd-find"
version = "3.0.0"
authors = ["David Peter <mail@david-peter.de>"]
description = "fd is a simple, fast and user-friendly alternative to find."
homepage = "https://github.com/sharkdp/fd"
repository = "https://github.com/sharkdp/fd"
readme = "README.md"
keywords = ["search", "find", "file", "filesystem", "tool"]
categories = ["command-line-utilities"]
license = "MIT"
exclude = ["benchmarks"]
[[bin]]
name = "fd"
path = "src/main.rs"
[dependencies]
ansi_term = "0.9"