summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2024-04-27 21:46:48 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2024-04-27 21:46:48 +0200
commit7c0409d1fc7b1816b97eb8da178efc98eb01ac15 (patch)
tree7884898df24477e66cdacb05004f47d9c97815c3
parent568773274bd6eec0979d865ba101c86143a0718b (diff)
downloadrebel-7c0409d1fc7b1816b97eb8da178efc98eb01ac15.tar
rebel-7c0409d1fc7b1816b97eb8da178efc98eb01ac15.zip
Update dependencies
-rw-r--r--Cargo.lock23
-rw-r--r--crates/rebel-parse/Cargo.toml2
2 files changed, 14 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 327f254..eebaa39 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -422,8 +422,9 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "peg"
-version = "0.8.2"
-source = "git+https://github.com/kevinmehall/rust-peg.git#2fc1cadaa1efcf47c867715d063ac2d7296945c6"
+version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a625d12ad770914cbf7eff6f9314c3ef803bfe364a1b20bc36ddf56673e71e5"
dependencies = [
"peg-macros",
"peg-runtime",
@@ -431,8 +432,9 @@ dependencies = [
[[package]]
name = "peg-macros"
-version = "0.8.2"
-source = "git+https://github.com/kevinmehall/rust-peg.git#2fc1cadaa1efcf47c867715d063ac2d7296945c6"
+version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f241d42067ed3ab6a4fece1db720838e1418f36d868585a27931f95d6bc03582"
dependencies = [
"peg-runtime",
"proc-macro2",
@@ -441,8 +443,9 @@ dependencies = [
[[package]]
name = "peg-runtime"
-version = "0.8.2"
-source = "git+https://github.com/kevinmehall/rust-peg.git#2fc1cadaa1efcf47c867715d063ac2d7296945c6"
+version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3aeb8f54c078314c2065ee649a7241f46b9d8e418e1a9581ba0546657d7aa3a"
[[package]]
name = "pest"
@@ -628,18 +631,18 @@ dependencies = [
[[package]]
name = "serde"
-version = "1.0.198"
+version = "1.0.199"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc"
+checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.198"
+version = "1.0.199"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9"
+checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc"
dependencies = [
"proc-macro2",
"quote",
diff --git a/crates/rebel-parse/Cargo.toml b/crates/rebel-parse/Cargo.toml
index 0233af8..fcd802f 100644
--- a/crates/rebel-parse/Cargo.toml
+++ b/crates/rebel-parse/Cargo.toml
@@ -8,7 +8,7 @@ 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" }
+peg = "0.8.3"
rebel-common = { path = "../rebel-common" }
[dev-dependencies]