diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-04 20:41:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-05 00:41:01 +0000 |
| commit | f396b3d1c8aaa7bf40fb1960f9ec81c3708ea2a8 (patch) | |
| tree | d86b8190d9273c676063552c478ebf7ae32bd5b1 /Cargo.lock | |
| parent | f00f0f92983d6966a5b97e539ec3f3407c3d851f (diff) | |
fix(publish): unfurling should always be done with the package json (#24435)
Closes https://github.com/denoland/deno/issues/24430
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock index 85f63ba37..70a16de46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1288,7 +1288,7 @@ dependencies = [ "indexmap", "log", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "serde", "serde_json", "sha2", @@ -1351,7 +1351,7 @@ dependencies = [ "futures", "libc", "memoffset 0.9.1", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", "serde", "serde_json", @@ -1531,7 +1531,7 @@ dependencies = [ "log", "monch", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "regex", "serde", "serde_json", @@ -1591,7 +1591,7 @@ dependencies = [ "log", "once_cell", "os_pipe", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand", "tokio", "winapi", @@ -1947,10 +1947,11 @@ dependencies = [ [[package]] name = "deno_unsync" -version = "0.3.6" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10eb3aaf83c3431d4215741140ec3a63b0c0edb972ee898c89bdf8462e9e136b" +checksum = "c3c8b95582c2023dbb66fccc37421b374026f5915fa507d437cb566904db9a3a" dependencies = [ + "parking_lot 0.12.3", "tokio", ] @@ -2716,7 +2717,7 @@ dependencies = [ "anyhow", "crossbeam-channel", "deno_terminal", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "regex", "thiserror", ] @@ -4593,9 +4594,9 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", "parking_lot_core 0.9.9", @@ -6141,7 +6142,7 @@ checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ "new_debug_unreachable", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "phf_shared 0.10.0", "precomputed-hash", "serde", @@ -6237,7 +6238,7 @@ dependencies = [ "indexmap", "is-macro", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "petgraph", "radix_fmt", "relative-path", @@ -6798,7 +6799,7 @@ dependencies = [ "nix 0.26.2", "once_cell", "os_pipe", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pretty_assertions", "prost", "prost-build", @@ -6921,7 +6922,7 @@ dependencies = [ "libc", "mio", "num_cpus", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project-lite", "signal-hook-registry", "socket2", @@ -7205,7 +7206,7 @@ dependencies = [ "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand", "resolv-conf", "serde", @@ -7679,7 +7680,7 @@ dependencies = [ "log", "naga", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "profiling", "raw-window-handle", "ron", @@ -7721,7 +7722,7 @@ dependencies = [ "ndk-sys", "objc", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "profiling", "range-alloc", "raw-window-handle", @@ -8148,7 +8149,7 @@ dependencies = [ "log", "num-traits", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand", "regex", "thiserror", |
