From 60f5a91bd994c4ebe8e5beccbd18cfdaf76fe045 Mon Sep 17 00:00:00 2001 From: damirka Date: Fri, 26 Mar 2021 18:50:11 +0300 Subject: [PATCH] changes grammar to leo-abnf, adds keywords and version --- Cargo.lock | 16 ++++++++-------- grammar/Cargo.toml | 14 ++++++++++---- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8d8d160ccf..38e378188b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/grammar/Cargo.toml b/grammar/Cargo.toml index 1af9c39313..e9dcc5a044 100644 --- a/grammar/Cargo.toml +++ b/grammar/Cargo.toml @@ -1,11 +1,17 @@ [package] -name = "grammar" -version = "0.1.0" +name = "leo-abnf" +version = "1.2.3" authors = [ "The Aleo Team " ] 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"