diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-11 11:55:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-11 11:55:26 -0500 |
commit | 686141163f9321e70defd9aef9c7b8d7e92f4a82 (patch) | |
tree | f5f56e8f0dc0c3fe4864ace163f40351cea0346b | |
parent | 70ac06138c18cf643e7e1947dee54f3adff13de3 (diff) |
fix(fast_check): analyze identifiers in type assertions/as exprs (#21899)
Closes #21894
-rw-r--r-- | Cargo.lock | 8 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 971fd9d22..c6490b776 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1322,9 +1322,9 @@ dependencies = [ [[package]] name = "deno_graph" -version = "0.63.2" +version = "0.63.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b2fce4e5ae279e181e53a3fa0e9018956356d6b977cc741b665eebe5398a01c" +checksum = "d7cf16929b6a267be4bc535877303a3a36b3595b6b27543baa07d3b77b679d92" dependencies = [ "anyhow", "async-trait", @@ -6910,7 +6910,7 @@ dependencies = [ "codespan-reporting", "log", "naga", - "parking_lot 0.11.2", + "parking_lot 0.12.1", "profiling", "raw-window-handle", "ron", @@ -6951,7 +6951,7 @@ dependencies = [ "naga", "objc", "once_cell", - "parking_lot 0.11.2", + "parking_lot 0.12.1", "profiling", "range-alloc", "raw-window-handle", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index cf6a00147..0e887abc6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -59,7 +59,7 @@ deno_config = "=0.6.5" deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "=0.89.1", features = ["html"] } deno_emit = "=0.33.0" -deno_graph = "=0.63.2" +deno_graph = "=0.63.3" deno_lint = { version = "=0.53.0", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "=0.15.3" |