diff --git a/Cargo.lock b/Cargo.lock index b8ab949..2fc05aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -312,7 +312,7 @@ dependencies = [ "os_pipe", "parking_lot", "path-dedot", - "pest 2.7.12 (git+https://github.com/pest-parser/pest.git?branch=master)", + "pest", "pest_ascii_tree", "pest_derive", "pretty_assertions", @@ -931,19 +931,9 @@ dependencies = [ [[package]] name = "pest" -version = "2.7.12" +version = "2.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c73c26c01b8c87956cea613c907c9d6ecffd8d18a2a5908e5de0adfaa185cea" -dependencies = [ - "memchr", - "thiserror", - "ucd-trie", -] - -[[package]] -name = "pest" -version = "2.7.12" -source = "git+https://github.com/pest-parser/pest.git?branch=master#65e5b2b754a4d9bb9b231ab61ef0af437b556fbe" +checksum = "fdbef9d1d47087a895abd220ed25eb4ad973a5e26f6a4367b038c25e28dfc2d9" dependencies = [ "memchr", "miette", @@ -956,11 +946,12 @@ dependencies = [ [[package]] name = "pest_ascii_tree" version = "0.1.0" -source = "git+https://github.com/prsabahrami/pest_ascii_tree.git?branch=master#65ef51a888730598336b0628c3e42bc5ec2f358b" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4152b393638a9816cd3dedb5aea2fb60ab0b641315aa133cea219c8797e768fc" dependencies = [ "ascii_tree", "escape_string", - "pest 2.7.12 (git+https://github.com/pest-parser/pest.git?branch=master)", + "pest", "pest_derive", ] @@ -970,7 +961,7 @@ version = "2.7.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "664d22978e2815783adbdd2c588b455b1bd625299ce36b2a99881ac9627e6d8d" dependencies = [ - "pest 2.7.12 (registry+https://github.com/rust-lang/crates.io-index)", + "pest", "pest_generator", ] @@ -980,7 +971,7 @@ version = "2.7.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2d5487022d5d33f4c30d91c22afa240ce2a644e87fe08caad974d4eab6badbe" dependencies = [ - "pest 2.7.12 (registry+https://github.com/rust-lang/crates.io-index)", + "pest", "pest_meta", "proc-macro2", "quote", @@ -994,7 +985,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0091754bbd0ea592c4deb3a122ce8ecbb0753b738aa82bc055fcc2eccc8d8174" dependencies = [ "once_cell", - "pest 2.7.12 (registry+https://github.com/rust-lang/crates.io-index)", + "pest", "sha2", ] diff --git a/crates/deno_task_shell/Cargo.toml b/crates/deno_task_shell/Cargo.toml index 778b834..458a4ac 100644 --- a/crates/deno_task_shell/Cargo.toml +++ b/crates/deno_task_shell/Cargo.toml @@ -23,10 +23,10 @@ tokio-util = { version = "0.7.12", optional = true } os_pipe = { version = "1.2.1", optional = true } serde = { version = "1", features = ["derive"], optional = true } thiserror = "1.0.63" -pest = { git = "https://github.com/pest-parser/pest.git", branch = "master", features = ["miette-error"] } +pest = { version="2.7.13", features = ["miette-error"] } pest_derive = "2.7.12" dirs = "5.0.1" -pest_ascii_tree = { git = "https://github.com/prsabahrami/pest_ascii_tree.git", branch = "master" } +pest_ascii_tree = "0.1.0" miette = { version = "7.2.0", features = ["fancy"] } lazy_static = "1.4.0"