summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-04-05 19:26:33 +0100
committerNadrieril2020-04-05 19:26:33 +0100
commitce99949256550753ed246d0baeab24019399dfdd (patch)
tree52986605cf6e9aed807c3ffdfb948e08f86ce568
parent4108bc32e6d7919523c2102421967f23d43f87b2 (diff)
Release abnf_to_pest version 0.5.0
-rw-r--r--Cargo.lock4
-rw-r--r--abnf_to_pest/Cargo.toml2
-rw-r--r--abnf_to_pest/src/lib.rs2
-rw-r--r--dhall/Cargo.toml2
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e5a25e4..6e4bae1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -10,7 +10,7 @@ dependencies = [
[[package]]
name = "abnf_to_pest"
-version = "0.2.0"
+version = "0.5.0"
dependencies = [
"abnf 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -138,7 +138,7 @@ dependencies = [
name = "dhall"
version = "0.4.0"
dependencies = [
- "abnf_to_pest 0.2.0",
+ "abnf_to_pest 0.5.0",
"annotate-snippets 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml
index a6ecff3..6e4cfe7 100644
--- a/abnf_to_pest/Cargo.toml
+++ b/abnf_to_pest/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "abnf_to_pest"
# remember to update html_root_url
-version = "0.2.0"
+version = "0.5.0"
authors = ["Nadrieril <nadrieril@users.noreply.github.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
diff --git a/abnf_to_pest/src/lib.rs b/abnf_to_pest/src/lib.rs
index ba8bdf2..a579493 100644
--- a/abnf_to_pest/src/lib.rs
+++ b/abnf_to_pest/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/abnf_to_pest/0.2.0")]
+#![doc(html_root_url = "https://docs.rs/abnf_to_pest/0.5.0")]
//! A tiny crate that helps convert ABNF grammars to [pest][pest].
//!
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml
index aa01a05..8de21f5 100644
--- a/dhall/Cargo.toml
+++ b/dhall/Cargo.toml
@@ -31,7 +31,7 @@ version-sync = "0.8"
[build-dependencies]
walkdir = "2"
-abnf_to_pest = { version = "0.2.0", path = "../abnf_to_pest" }
+abnf_to_pest = { version = "^0.5.0", path = "../abnf_to_pest" }
pest_generator = "2.1"
quote = "1.0"