diff --git a/Cargo.lock b/Cargo.lock index 561e47d6..b8acfe12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -401,17 +401,17 @@ checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" [[package]] name = "cached" -version = "0.52.0" +version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8466736fe5dbcaf8b8ee24f9bbefe43c884dc3e9ff7178da70f55bffca1133c" +checksum = "e79be32df7029b9418298d143ffa9e8ba95eaf13f5599c83a475a64577a7e8c9" dependencies = [ "ahash", "cached_proc_macro", "cached_proc_macro_types", "hashbrown", - "instant", "once_cell", "thiserror", + "web-time", ] [[package]] @@ -1242,15 +1242,6 @@ dependencies = [ "str_stack", ] -[[package]] -name = "instant" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" -dependencies = [ - "cfg-if", -] - [[package]] name = "is-terminal" version = "0.4.12" @@ -1569,9 +1560,9 @@ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" [[package]] name = "peg" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a625d12ad770914cbf7eff6f9314c3ef803bfe364a1b20bc36ddf56673e71e5" +checksum = "295283b02df346d1ef66052a757869b2876ac29a6bb0ac3f5f7cd44aebe40e8f" dependencies = [ "peg-macros", "peg-runtime", @@ -1579,9 +1570,9 @@ dependencies = [ [[package]] name = "peg-macros" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f241d42067ed3ab6a4fece1db720838e1418f36d868585a27931f95d6bc03582" +checksum = "bdad6a1d9cf116a059582ce415d5f5566aabcd4008646779dab7fdc2a9a9d426" dependencies = [ "peg-runtime", "proc-macro2", @@ -2469,6 +2460,16 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + [[package]] name = "whoami" version = "1.5.1" diff --git a/brush-core/Cargo.toml b/brush-core/Cargo.toml index ab9d932e..08a4b994 100644 --- a/brush-core/Cargo.toml +++ b/brush-core/Cargo.toml @@ -20,7 +20,7 @@ workspace = true async-recursion = "1.1.0" async-trait = "0.1.81" brush-parser = { version = "^0.2.4", path = "../brush-parser" } -cached = "0.52.0" +cached = "0.53.0" cfg-if = "1.0.0" # N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version. clap = { version = "=4.4.18", features = ["derive", "wrap_help"] } diff --git a/brush-parser/Cargo.toml b/brush-parser/Cargo.toml index 54a8e4f2..c25612d6 100644 --- a/brush-parser/Cargo.toml +++ b/brush-parser/Cargo.toml @@ -20,7 +20,7 @@ fuzz-testing = ["dep:arbitrary"] [dependencies] arbitrary = { version = "1.3.2", optional = true, features = ["derive"] } indenter = "0.3.3" -peg = "0.8.3" +peg = "0.8.4" thiserror = "1.0.62" tracing = "0.1.40" utf8-chars = "3.0.3"