diff --git a/Cargo.lock b/Cargo.lock index 84a6839e12..8a1d024080 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1871,9 +1871,9 @@ checksum = "90953f308a79fe6d62a4643e51f848fbfddcd05975a38e69fdf4ab86a7baf7ca" [[package]] name = "insta" -version = "1.19.0" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f37dc501f12ec0c339b385787fa89ffda3d5d2caa62e558da731134c24d6e0c4" +checksum = "58a931b01c76064c5be919faa2ef0dc570e9a889dcd1e5fef08a8ca6eb4d6c0b" dependencies = [ "console", "linked-hash-map", @@ -2776,9 +2776,9 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" [[package]] name = "peg" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af728fe826811af3b38c37e93de6d104485953ea373d656eebae53d6987fcd2c" +checksum = "a07f2cafdc3babeebc087e499118343442b742cc7c31b4d054682cc598508554" dependencies = [ "peg-macros", "peg-runtime", @@ -2786,9 +2786,9 @@ dependencies = [ [[package]] name = "peg-macros" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4536be147b770b824895cbad934fccce8e49f14b4c4946eaa46a6e4a12fcdc16" +checksum = "4a90084dc05cf0428428e3d12399f39faad19b0909f64fb9170c9fdd6d9cd49b" dependencies = [ "peg-runtime", "proc-macro2", @@ -2797,9 +2797,9 @@ dependencies = [ [[package]] name = "peg-runtime" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9b0efd3ba03c3a409d44d60425f279ec442bcf0b9e63ff4e410da31c8b0f69f" +checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739" [[package]] name = "percent-encoding" diff --git a/crates/docs/Cargo.toml b/crates/docs/Cargo.toml index e613e30065..a8723f3c6b 100644 --- a/crates/docs/Cargo.toml +++ b/crates/docs/Cargo.toml @@ -22,7 +22,7 @@ roc_highlight = { path = "../highlight"} roc_reporting = { path = "../reporting"} bumpalo = { version = "3.11.0", features = ["collections"] } snafu = { version = "0.7.1", features = ["backtraces"] } -peg = "0.8.0" +peg = "0.8.1" [dev-dependencies] pretty_assertions = "1.3.0" diff --git a/crates/highlight/Cargo.toml b/crates/highlight/Cargo.toml index 5c4f498091..8277ed2cb9 100644 --- a/crates/highlight/Cargo.toml +++ b/crates/highlight/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" description = "For syntax highlighting, starts with a string and returns our markup nodes." [dependencies] -peg = "0.8.0" +peg = "0.8.1" roc_code_markup = { path = "../code_markup"}