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.toml | |
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.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index ef9a4576c..4ce310539 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ deno_npm = "=0.25.2" deno_path_util = "=0.2.0" deno_permissions = { version = "0.28.0", path = "./runtime/permissions" } deno_runtime = { version = "0.177.0", path = "./runtime" } -deno_semver = "=0.5.13" +deno_semver = "=0.5.14" deno_terminal = "0.2.0" napi_sym = { version = "0.98.0", path = "./cli/napi/sym" } test_util = { package = "test_server", path = "./tests/util/server" } |