From 91d6406ff6b4a94c8608ff28da94047eba4f272a Mon Sep 17 00:00:00 2001 From: Thomas Karpiniec Date: Wed, 13 Mar 2024 06:22:58 +1100 Subject: [PATCH] Expand Cargo.toml to prepare for publishing --- Cargo.lock | 2 +- Cargo.toml | 7 ++++++- README.md | 6 ++++++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f08910e..9276d65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,7 @@ dependencies = [ [[package]] name = "hashgood" -version = "0.3.0" +version = "0.4.0" dependencies = [ "copypasta", "crossbeam-channel", diff --git a/Cargo.toml b/Cargo.toml index 51a9c63..a5fea35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,13 @@ [package] name = "hashgood" +description = "Interactive CLI utility for verifying file checksums" +homepage = "https://github.com/thombles/hashgood" +repository = "https://github.com/thombles/hashgood" version = "0.4.0" -authors = ["Thomas Karpiniec "] +authors = ["Thomas Karpiniec "] edition = "2021" +license = "Apache-2.0" +readme = "README.md" [dependencies] structopt = "0.3.26" diff --git a/README.md b/README.md index cc4e359..1ef9446 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,12 @@ This program arose from dissatisfaction with the [workarounds required for tradi ## Installing +If you have a working Rust toolchain you can install `hashgood` from crates.io: + +``` +cargo install hashgood +``` + Pre-compiled binaries for common platforms can be downloaded [from the releases page](https://github.com/thombles/hashgood/releases). Otherwise you can build it yourself; see the next section. ## Compiling -- 2.39.5