aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2020-01-09 10:50:55 -0500
committerJack O'Connor <[email protected]>2020-01-09 10:50:55 -0500
commit3cf242b6516eaaf936b7a1550c4832c00bd4e359 (patch)
tree7b0fd46781952e55e8f8cfc96e9047ba5018eb5e
parentaf9b44c8810d651355db48bca5fee86f7b4c93e3 (diff)
fill out Cargo.toml files for publication0.1.0
-rw-r--r--Cargo.toml5
-rw-r--r--b3sum/Cargo.toml5
2 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6b26198..418f071 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,6 +2,11 @@
name = "blake3"
version = "0.1.0"
authors = ["Jack O'Connor <[email protected]>"]
+description = "the BLAKE3 hash function"
+repository = "https://github.com/BLAKE3-team/BLAKE3"
+license = "CC0"
+documentation = "https://docs.rs/blake3"
+readme = "README.md"
edition = "2018"
[features]
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index c8e0c15..a283c89 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -2,8 +2,11 @@
name = "b3sum"
version = "0.1.0"
authors = ["Jack O'Connor <[email protected]>"]
-edition = "2018"
+description = "a command line implementation of the BLAKE3 hash function"
+repository = "https://github.com/BLAKE3-team/BLAKE3"
+license = "CC0"
readme = "README.md"
+edition = "2018"
[features]
default = ["rayon", "c_avx512"]