changes grammar to leo-abnf, adds keywords and version

This commit is contained in:
damirka 2021-03-26 18:50:11 +03:00
parent 673997d975
commit 60f5a91bd9
2 changed files with 18 additions and 12 deletions

16
Cargo.lock generated
View File

@ -943,14 +943,6 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "grammar"
version = "0.1.0"
dependencies = [
"abnf",
"anyhow",
]
[[package]]
name = "h2"
version = "0.3.1"
@ -1236,6 +1228,14 @@ version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "leo-abnf"
version = "1.2.3"
dependencies = [
"abnf",
"anyhow",
]
[[package]]
name = "leo-asg"
version = "1.2.3"

View File

@ -1,11 +1,17 @@
[package]
name = "grammar"
version = "0.1.0"
name = "leo-abnf"
version = "1.2.3"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "ABNF to Markdown converter"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
keywords = [
"aleo",
"cryptography",
"leo",
"programming-language",
"zero-knowledge",
"leo-abnf"
]
[dependencies]
abnf = "0.10.0"