Skip to content

Commit

Permalink
chore: more metadata in the Cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
clarete committed Oct 2, 2023
1 parent 7cef270 commit e0452ab
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion langlang_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "langlang is a parser generator based on Parsing Expression Gramma
homepage = "https://github.com/clarete/langlang"
repository = "https://github.com/clarete/langlang"
license = "GPL-3.0-or-later"
documentation = "https://docs.rs/langlang"
documentation = "https://docs.rs/langlang_lib"
readme = "../README.org"

[dependencies]
Expand Down
7 changes: 7 additions & 0 deletions langlang_syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
name = "langlang_syntax"
version = "0.1.1"
edition = "2021"
authors = ["Lincoln de Sousa <lincoln@clarete.li>"]
description = "langlang is a parser generator based on Parsing Expression Grammars (library)"
homepage = "https://github.com/clarete/langlang"
repository = "https://github.com/clarete/langlang"
license = "GPL-3.0-or-later"
documentation = "https://docs.rs/langlang_syntax"
readme = "../README.org"

[dependencies]
langlang_value = { path = "../langlang_value" }
11 changes: 7 additions & 4 deletions langlang_value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
name = "langlang_value"
version = "0.1.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
authors = ["Lincoln de Sousa <lincoln@clarete.li>"]
description = "langlang is a parser generator based on Parsing Expression Grammars (library)"
homepage = "https://github.com/clarete/langlang"
repository = "https://github.com/clarete/langlang"
license = "GPL-3.0-or-later"
documentation = "https://docs.rs/langlang_value"
readme = "../README.org"

0 comments on commit e0452ab

Please sign in to comment.