diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-16 16:29:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 15:29:21 +0000 |
commit | e47606a5549aff43540bf2b8adc5db0309c28dbc (patch) | |
tree | 3371fb7b6b0b5c8572736490fe59fe52584dce3f | |
parent | 968f441da32ae5fc3783a4f9bcda3d34fa276b4d (diff) |
fix(lockfile): use loose deserialization for version constraints (#25660)
* https://github.com/denoland/deno_lockfile/pull/39
Closes https://github.com/denoland/deno/issues/25649
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index a579a570b..6e3d80b3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1719,9 +1719,9 @@ dependencies = [ [[package]] name = "deno_lockfile" -version = "0.23.0" +version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb68a4a666c69eabd8fe505d6fdc4ed4a2d962fe1680dbfa8b0c8a2975d58ed0" +checksum = "579117d5815aa9bae0212637d6f4d5f45f9649bb2c8988dca434077545535039" dependencies = [ "deno_semver", "serde", diff --git a/Cargo.toml b/Cargo.toml index 99c50576d..e5d8c6e05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ deno_ast = { version = "=0.42.0", features = ["transpiling"] } deno_core = { version = "0.308.0" } deno_bench_util = { version = "0.162.0", path = "./bench_util" } -deno_lockfile = "=0.23.0" +deno_lockfile = "=0.23.1" deno_media_type = { version = "0.1.4", features = ["module_specifier"] } deno_permissions = { version = "0.28.0", path = "./runtime/permissions" } deno_runtime = { version = "0.177.0", path = "./runtime" } |