1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00

fix(no-slow-types): handle rest param with internal assignments (#27581)

Closes #27575
This commit is contained in:
David Sherret 2025-01-07 15:34:34 -05:00 committed by GitHub
parent b5e4a303d5
commit 3f5cad38aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

5
Cargo.lock generated
View file

@ -1750,15 +1750,16 @@ dependencies = [
[[package]]
name = "deno_graph"
version = "0.86.7"
version = "0.86.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ace3acf321fac446636ae605b01723f2120b40ab3d32c6836aeb7d603a8e08f9"
checksum = "4ceaff8e0b1ea21369c1aff28d75fed0c4194896195cf57c2fbee4f7db3e4c42"
dependencies = [
"anyhow",
"async-trait",
"capacity_builder 0.5.0",
"data-url",
"deno_ast",
"deno_media_type",
"deno_path_util 0.3.0",
"deno_semver",
"deno_unsync",

View file

@ -74,7 +74,7 @@ deno_config.workspace = true
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_doc = { version = "=0.161.3", features = ["rust", "comrak"] }
deno_error.workspace = true
deno_graph = { version = "=0.86.7" }
deno_graph = { version = "=0.86.8" }
deno_lint = { version = "=0.68.2", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm.workspace = true