2022-12-07 14:53:49 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "EcmaScript variable usage analyzer"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_usage_analyzer/"
|
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_usage_analyzer"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-03-24 05:42:16 +03:00
|
|
|
version = "0.9.12"
|
2022-12-07 14:53:49 +03:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
# This enables global concurrent mode
|
|
|
|
concurrent = ["swc_common/concurrent", "indexmap/rayon"]
|
|
|
|
trace-ast = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
ahash = "0.7.6"
|
|
|
|
indexmap = "1.6.1"
|
|
|
|
rustc-hash = "1.1.0"
|
2023-03-08 05:51:08 +03:00
|
|
|
swc_atoms = { version = "0.4.39", path = "../swc_atoms" }
|
2023-03-23 12:19:33 +03:00
|
|
|
swc_common = { version = "0.29.39", path = "../swc_common" }
|
|
|
|
swc_ecma_ast = { version = "0.100.5", path = "../swc_ecma_ast" }
|
2023-03-24 05:42:16 +03:00
|
|
|
swc_ecma_utils = { version = "0.113.11", path = "../swc_ecma_utils" }
|
2023-03-23 12:19:33 +03:00
|
|
|
swc_ecma_visit = { version = "0.86.6", path = "../swc_ecma_visit" }
|
|
|
|
swc_timer = { version = "0.17.42", path = "../swc_timer" }
|
2022-12-07 14:53:49 +03:00
|
|
|
tracing = "0.1.32"
|