diff --git a/Cargo.lock b/Cargo.lock index 7095ba5..f09ca5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -594,8 +594,9 @@ dependencies = [ [[package]] name = "peg" -version = "0.7.0" -source = "git+https://github.com/kevinmehall/rust-peg?rev=960222580c8da25b17d32c2aae6f52f902728b62#960222580c8da25b17d32c2aae6f52f902728b62" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a07f2cafdc3babeebc087e499118343442b742cc7c31b4d054682cc598508554" dependencies = [ "peg-macros", "peg-runtime", @@ -603,8 +604,9 @@ dependencies = [ [[package]] name = "peg-macros" -version = "0.7.0" -source = "git+https://github.com/kevinmehall/rust-peg?rev=960222580c8da25b17d32c2aae6f52f902728b62#960222580c8da25b17d32c2aae6f52f902728b62" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a90084dc05cf0428428e3d12399f39faad19b0909f64fb9170c9fdd6d9cd49b" dependencies = [ "peg-runtime", "proc-macro2 1.0.30", @@ -613,8 +615,9 @@ dependencies = [ [[package]] name = "peg-runtime" -version = "0.7.0" -source = "git+https://github.com/kevinmehall/rust-peg?rev=960222580c8da25b17d32c2aae6f52f902728b62#960222580c8da25b17d32c2aae6f52f902728b62" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739" [[package]] name = "phf" diff --git a/schala-lang/Cargo.toml b/schala-lang/Cargo.toml index 6c5a6f3..07caea7 100644 --- a/schala-lang/Cargo.toml +++ b/schala-lang/Cargo.toml @@ -15,7 +15,7 @@ colored = "1.8" radix_trie = "0.1.5" assert_matches = "1.5" #peg = "0.7.0" -peg = { git = "https://github.com/kevinmehall/rust-peg", rev = "960222580c8da25b17d32c2aae6f52f902728b62" } +peg = "0.8.1" nom = "7.1.0" nom_locate = "4.0.0"