diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-09-11 03:38:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-11 03:38:24 +0200 |
| commit | d236f432b86de55c6006778b0c68fe60b6419069 (patch) | |
| tree | 54edc32eef542f6fdd37d11100ae30982d6068b8 /Cargo.lock | |
| parent | ba8bbe6f1c11d4cf19ad0b916ba41cd919dbb042 (diff) | |
refactor: use import_map crate (#11974)
Removes ImportMap implementation from "cli/" and instead
uses "import_map" crate
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index d590ccdad..b289012d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -589,6 +589,7 @@ dependencies = [ "flaky_test", "fwdansi", "http", + "import_map", "indexmap", "jsonc-parser", "lazy_static", @@ -1749,6 +1750,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" [[package]] +name = "import_map" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae79a7af71e92e4038963b64884106d28d508da6bf3c7f36294efcb3bb3b003d" +dependencies = [ + "indexmap", + "log", + "serde", + "serde_json", + "url", +] + +[[package]] name = "indexmap" version = "1.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" |
