From: Thomas Karpiniec <tom.karpiniec@outlook.com>
Date: Tue, 12 Mar 2024 19:22:58 +0000 (+1100)
Subject: Expand Cargo.toml to prepare for publishing
X-Git-Tag: v0.5.0~10
X-Git-Url: https://code.octet-stream.net/hashgood/commitdiff_plain/91d6406ff6b4a94c8608ff28da94047eba4f272a?ds=inline

Expand Cargo.toml to prepare for publishing
---

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 <tk@1.21jiggawatts.net>"]
+authors = ["Thomas Karpiniec <tom.karpiniec@outlook.com>"]
 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