diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-05-17 13:14:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-17 17:14:36 +0000 |
| commit | 1a0fbc4c3cdba5901d4cb096cb1beb828fbc8427 (patch) | |
| tree | e110fc4af230ad1266dd6ee9d3f562552a8721fd /Cargo.lock | |
| parent | 327c31cd21bd0b3664eafd5683eb82d308c41d4e (diff) | |
fix(npm): regression deserializing JSON for some npm packages (#23868)
* https://github.com/denoland/deno_npm/pull/53
Closes https://github.com/denoland/deno/issues/23862
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5950194d6..17ad843a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1726,9 +1726,9 @@ dependencies = [ [[package]] name = "deno_npm" -version = "0.20.1" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9db4bc4de6c0d2935662dcd99542b03a0db5f1778bada7ef2afc074e7819068d" +checksum = "ab92fbe02da596534ae84e2efca2f7dc5e26ca5fc972bf17701f0899784c2a8f" dependencies = [ "anyhow", "async-trait", @@ -1738,6 +1738,7 @@ dependencies = [ "log", "monch", "serde", + "serde_json", "thiserror", "url", ] |
