diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 30f89d46..b09ec235 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -3,6 +3,7 @@ name = "pest_derive" description = "pest's derive macro" version = "2.0.0" authors = ["Dragoș Tiselice "] +homepage = "https://pest-parser.github.io/" repository = "https://github.com/pest-parser/pest" documentation = "https://docs.rs/pest" keywords = ["pest", "parser", "peg", "grammar"] diff --git a/grammars/Cargo.toml b/grammars/Cargo.toml index af06bb9a..b16b7e50 100644 --- a/grammars/Cargo.toml +++ b/grammars/Cargo.toml @@ -3,6 +3,7 @@ name = "pest_grammars" description = "pest popular grammar implementations" version = "2.0.0" authors = ["Dragoș Tiselice "] +homepage = "https://pest-parser.github.io/" repository = "https://github.com/pest-parser/pest" documentation = "https://docs.rs/pest" keywords = ["pest", "parser", "peg", "grammar"] diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 93d07efa..7fd959ad 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -3,9 +3,10 @@ name = "pest_meta" description = "pest meta language parser and validator" version = "2.0.0" authors = ["Dragoș Tiselice "] +homepage = "https://pest-parser.github.io/" repository = "https://github.com/pest-parser/pest" documentation = "https://docs.rs/pest" -keywords = ["pest", "parser", "peg", "grammar"] +keywords = ["pest", "parser", "meta", "optimizer"] categories = ["parsing"] license = "MIT/Apache-2.0" readme = "_README.md" diff --git a/pest/Cargo.toml b/pest/Cargo.toml index 79e3cb24..476f45fc 100644 --- a/pest/Cargo.toml +++ b/pest/Cargo.toml @@ -3,6 +3,7 @@ name = "pest" description = "The Elegant Parser" version = "2.0.0" authors = ["Dragoș Tiselice "] +homepage = "https://pest-parser.github.io/" repository = "https://github.com/pest-parser/pest" documentation = "https://docs.rs/pest" keywords = ["pest", "parser", "peg", "grammar"] @@ -10,10 +11,10 @@ categories = ["parsing"] license = "MIT/Apache-2.0" readme = "_README.md" +[dependencies] +ucd-trie = "0.1.1" + [badges] codecov = { repository = "pest-parser/pest" } maintenance = { status = "actively-developed" } travis-ci = { repository = "pest-parser/pest" } - -[dependencies] -ucd-trie = "0.1.1" diff --git a/vm/Cargo.toml b/vm/Cargo.toml index 87aa101b..7cde2f0a 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -3,9 +3,10 @@ name = "pest_vm" description = "pest grammar virtual machine" version = "2.0.0" authors = ["Dragoș Tiselice "] +homepage = "https://pest-parser.github.io/" repository = "https://github.com/pest-parser/pest" documentation = "https://docs.rs/pest" -keywords = ["pest", "parser", "peg", "grammar"] +keywords = ["pest", "vm"] categories = ["parsing"] license = "MIT/Apache-2.0" readme = "_README.md"