diff options
| author | Jack O'Connor <[email protected]> | 2020-01-09 10:50:55 -0500 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-01-09 10:50:55 -0500 |
| commit | 3cf242b6516eaaf936b7a1550c4832c00bd4e359 (patch) | |
| tree | 7b0fd46781952e55e8f8cfc96e9047ba5018eb5e | |
| parent | af9b44c8810d651355db48bca5fee86f7b4c93e3 (diff) | |
fill out Cargo.toml files for publication0.1.0
| -rw-r--r-- | Cargo.toml | 5 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 5 |
2 files changed, 9 insertions, 1 deletions
@@ -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"] |
