From 52615794bfe69a3ad14bff0044ade776028c08cd Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Mon, 15 Apr 2019 17:33:32 +0200 Subject: Use upstream abnf crate --- abnf_to_pest/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'abnf_to_pest/Cargo.toml') diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml index ff4dc01..fc9fe66 100644 --- a/abnf_to_pest/Cargo.toml +++ b/abnf_to_pest/Cargo.toml @@ -9,6 +9,6 @@ edition = "2018" doctest = false [dependencies] -abnf = { git = "https://github.com/Nadrieril/abnf" } +abnf = "0.1.2" itertools = "0.8.0" pretty = "0.5.2" -- cgit v1.2.3 From 6ef11130281a16e5ca23250ac78bcd27c777a14e Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Mon, 15 Apr 2019 17:43:39 +0200 Subject: Keep rule order in `abnf_to_pest` Closes #79 --- abnf_to_pest/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'abnf_to_pest/Cargo.toml') diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml index fc9fe66..cd6aa10 100644 --- a/abnf_to_pest/Cargo.toml +++ b/abnf_to_pest/Cargo.toml @@ -10,5 +10,6 @@ doctest = false [dependencies] abnf = "0.1.2" +indexmap = "1.0.2" itertools = "0.8.0" pretty = "0.5.2" -- cgit v1.2.3 From 7488297db17375bd586653820d1d1dc29f87f93a Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Mon, 15 Apr 2019 17:56:24 +0200 Subject: Prepare for publication --- abnf_to_pest/Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'abnf_to_pest/Cargo.toml') diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml index cd6aa10..4e32986 100644 --- a/abnf_to_pest/Cargo.toml +++ b/abnf_to_pest/Cargo.toml @@ -1,9 +1,13 @@ [package] name = "abnf_to_pest" -version = "0.1.0" +version = "0.1.0" # remember to update html_root_url authors = ["Nadrieril "] -license = "BSD-2-Clause" +license = "MIT OR Apache-2.0" edition = "2018" +description = "A tiny crate that helps convert ABNF grammars to pest" +readme = "README.md" +repository = "https://github.com/Nadrieril/dhall-rust" +documentation = "https://docs.rs/abnf_to_pest/" [lib] doctest = false -- cgit v1.2.3 From 2e6a2955e45e33aed285224eec291500375e5eb5 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Mon, 15 Apr 2019 18:00:43 +0200 Subject: Seriously, trailing slash? --- abnf_to_pest/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'abnf_to_pest/Cargo.toml') diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml index 4e32986..9573c67 100644 --- a/abnf_to_pest/Cargo.toml +++ b/abnf_to_pest/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "abnf_to_pest" -version = "0.1.0" # remember to update html_root_url +version = "0.1.1" # remember to update html_root_url authors = ["Nadrieril "] license = "MIT OR Apache-2.0" edition = "2018" description = "A tiny crate that helps convert ABNF grammars to pest" readme = "README.md" repository = "https://github.com/Nadrieril/dhall-rust" -documentation = "https://docs.rs/abnf_to_pest/" +documentation = "https://docs.rs/abnf_to_pest" [lib] doctest = false -- cgit v1.2.3