summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-09-03 17:11:30 +0200
committerGitHub <noreply@github.com>2020-09-03 17:11:30 +0200
commitdbd941148c472171eacec364c689a2a50fa0653d (patch)
tree570fc2620c72415baabf7f47dca71201602c4881 /Cargo.lock
parent5b100cb874a23f22bcdcbf1965d6f916c7487ae4 (diff)
refactor: use dependency analyzer from SWC (#7334)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock13
1 files changed, 13 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 33d353626..d51e476bf 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -412,6 +412,7 @@ dependencies = [
"serde_json",
"sourcemap",
"swc_common",
+ "swc_ecma_dep_graph",
"swc_ecmascript",
"sys-info",
"tempfile",
@@ -2261,6 +2262,18 @@ dependencies = [
]
[[package]]
+name = "swc_ecma_dep_graph"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb38c4567ac35d625c0da0a70d68449e38b23c1ae95df9ca6837811e2711136e"
+dependencies = [
+ "swc_atoms",
+ "swc_common",
+ "swc_ecma_ast",
+ "swc_ecma_visit",
+]
+
+[[package]]
name = "swc_ecma_parser"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"