diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-30 09:34:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-30 13:34:20 +0000 |
| commit | a7d0a5540fed4ecf0b5ae5f462960cce21a4adf5 (patch) | |
| tree | 4847c024cf37c5b9a72739250da0c9fbb47780da /Cargo.lock | |
| parent | 69ab72002550b5797185b7651de28c700b220bb2 (diff) | |
fix: eagerly error for specifier with empty version constraint (#25944)
Eagerly errors for something like `export * from "jsr:@type/is@";`
(previously it would just fail elsewhere because it would consider this
as having an empty tag)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index 2263351fc..92a3c5056 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2031,9 +2031,9 @@ dependencies = [ [[package]] name = "deno_semver" -version = "0.5.13" +version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6657fecb9ac6a7a71f552c95e8cc492466a75f5660224577e2226bcf30db9768" +checksum = "670fec7ef309384e23c2a90ac5d2d9d91a776d225306c75f5cdd28cf6cc8a59f" dependencies = [ "monch", "once_cell", |
