From 916b55fae18c619a04780be3a2fc12660364f19b Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sat, 9 Sep 2017 19:11:54 +0200 Subject: [PATCH] Update Cargo.toml, see #42 --- Cargo.lock | 2 +- Cargo.toml | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf00160..d0aab3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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)", diff --git a/Cargo.toml b/Cargo.toml index 9fe49d6..f01fede 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,19 @@ [package] -name = "fd" +name = "fd-find" version = "3.0.0" authors = ["David Peter "] +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"