summaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2024-04-25 18:49:51 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2024-04-25 18:49:51 +0200
commita421cd94ac14f6c33d8d70741540cfbc49bb3e92 (patch)
treeb728acb297060978f1bc6dec944ebcf1424e4673 /crates
parentf06595617271a73c3db7f935bd488834ae88e6d6 (diff)
downloadrebel-a421cd94ac14f6c33d8d70741540cfbc49bb3e92.tar
rebel-a421cd94ac14f6c33d8d70741540cfbc49bb3e92.zip
rebel-parse: use git version of peg
Use the development version for now to take advantage of the latest performance improvements.
Diffstat (limited to 'crates')
-rw-r--r--crates/rebel-parse/Cargo.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/rebel-parse/Cargo.toml b/crates/rebel-parse/Cargo.toml
index b87ba3f..0233af8 100644
--- a/crates/rebel-parse/Cargo.toml
+++ b/crates/rebel-parse/Cargo.toml
@@ -8,10 +8,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+peg = { git = "https://github.com/kevinmehall/rust-peg.git", version = "0.8.2" }
rebel-common = { path = "../rebel-common" }
-peg = "0.8.2"
-
[dev-dependencies]
clap = { version = "4.0.0", features = ["derive"] }
divan = "0.1.14"