diff options
author | Rory Dudley | 2024-07-18 18:07:50 -0600 |
---|---|---|
committer | Rory Dudley | 2024-07-20 01:37:45 -0600 |
commit | 9d32dc6a186f38380befb58a144f4d93cfca30eb (patch) | |
tree | c9321705bca00ad6c575a323646ca71932a17608 | |
parent | c2f894c84f7f1ccc935a76a11eeb4bea7c1b0623 (diff) | |
download | dwarvish-9d32dc6a186f38380befb58a144f4d93cfca30eb.tar.gz |
Add metadata to Cargo.toml
This patch adds the following metadata fields to Cargo.toml, so that the
package can be published on https://crates.io:
- homepage: Our main website
- documentation: Also our main website (no docs for now, but they will
end up being hosted here in the near future)
- repository: A link to the git server with the source
Signed-off-by: Rory Dudley <rory@netc.lu>
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ version = 3 [[package]] name = "dwarvish" -version = "0.0.0" +version = "0.0.1" dependencies = [ "libc", "signal-hook", @@ -4,6 +4,9 @@ version = "0.0.1" edition = "2021" license = "BSD-3-Clause" description = "A (mostly) POSIX compliant shell and tiny functional programming language" +homepage = "https://dwarvish.org" +documentation = "https://dwarvish.org" +repository = "https://git.dwarvish.org/dwarvish.git/" [[bin]] name = "dwvsh" |