diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-08 21:13:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 02:13:08 +0000 |
commit | b0119134f79fc43a1aceb543ba3ba7b8c7431e80 (patch) | |
tree | c8f9cc591184aeaf3f84ebad3a3ddb2d5c7249e8 | |
parent | 2fc8d2a354bc8a9a87f8649550d2723dedf70f2f (diff) |
fix: handle non-file scopes in synthetic import map (#22361)
Closes #22353
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index e6dd24dbc..279efee96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3256,9 +3256,9 @@ dependencies = [ [[package]] name = "import_map" -version = "0.18.2" +version = "0.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "556779a5de0289679854a5344c22f466698fd2661f7170db90df7fa5013b281e" +checksum = "4bad4ef70a3e0f2ee403925d77d1e7b74e471b57ea75593f332aac31b57958b4" dependencies = [ "indexmap", "log", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index dffce000a..f9e59abc3 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -97,7 +97,7 @@ flate2.workspace = true fs3.workspace = true glob = "0.3.1" hex.workspace = true -import_map = { version = "=0.18.2", features = ["ext"] } +import_map = { version = "=0.18.3", features = ["ext"] } indexmap.workspace = true jsonc-parser = { version = "=0.23.0", features = ["serde"] } lazy-regex.workspace = true |