summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2022-07-14 11:12:18 +1000
committerGitHub <noreply@github.com>2022-07-14 11:12:18 +1000
commit7e06d33b34394fda96d27082a7a22a4ff91fa86f (patch)
tree370e80c01eb68c14e70928e8335adfde3f712e96 /Cargo.lock
parent294b27717c47ff6536cc12dd81241697cf84d72e (diff)
feat(lsp): provide import map remapping diags and fixes (#15165)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock17
1 files changed, 15 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 52740f274..f6c756680 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -812,7 +812,7 @@ dependencies = [
"fwdansi",
"google-storage1",
"http",
- "import_map",
+ "import_map 0.12.1",
"indexmap",
"jsonc-parser",
"libc",
@@ -977,7 +977,7 @@ dependencies = [
"deno_ast",
"deno_graph",
"futures",
- "import_map",
+ "import_map 0.11.0",
"lazy_static",
"regex",
"serde",
@@ -2187,6 +2187,19 @@ dependencies = [
]
[[package]]
+name = "import_map"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b827962ca5aa6d5bbe313c14e73d7cc517487fa3bad380bb6bdbd8421e591a29"
+dependencies = [
+ "indexmap",
+ "log 0.4.17",
+ "serde",
+ "serde_json",
+ "url 2.2.2",
+]
+
+[[package]]
name = "indexmap"
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"