docs: Add information to cargo.toml

This commit is contained in:
Guilhem Barthés 2022-09-02 18:37:21 +02:00
parent ea7a032c95
commit 845ba2fd33
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,9 @@
name = "dental-notation" name = "dental-notation"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
repository = "https://git.barthes.xyz/guilhem/dental-notation"
license = "GPL-3.0-or-later"
categories = ["parsing"]
[dependencies] [dependencies]
owo-colors = "3" owo-colors = "3"

View File

@ -2,8 +2,9 @@
name = "dental-notation-cli" name = "dental-notation-cli"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
repository = "https://git.barthes.xyz/guilhem/dental-notation-cli"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "GPL-3.0-or-later"
categories = ["parsing", "command-line-utilities"]
[dependencies] [dependencies]
clap = {version = "3.2.5", features = [ "derive" ] } clap = {version = "3.2.5", features = [ "derive" ] }