mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
a8cb554be5
swc_common: - Add `Take`. (#2189) swc_ecma_ast: - Implement `Take` for ast nodes. swc_ecma_transforms_base: - Remove `MapWithMut`.
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "General ecmascript loader used for transforms"
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_loader/"
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
name = "swc_ecma_loader"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.17.1"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Enable node js resolver
|
|
node = ["normpath", "serde", "serde_json", "dashmap", "once_cell"]
|
|
# Enable support for `paths` of tsconfig.json
|
|
tsc = ["dashmap", "once_cell", "regex"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.41"
|
|
fxhash = "0.2.1"
|
|
log = "0.4"
|
|
dashmap = {version = "4.0.2", optional = true}
|
|
lru = {version = "0.6.5", optional = true}
|
|
once_cell = {version = "1.8.0", optional = true}
|
|
regex = {version = "1", optional = true}
|
|
serde = {version = "1.0.126", optional = true}
|
|
serde_json = {version = "1.0.64", optional = true}
|
|
swc_atoms = {version = "0.2.3", path = "../../atoms"}
|
|
swc_common = {version = "0.11.9", path = "../../common"}
|
|
swc_ecma_ast = {version = "0.51.1", path = "../ast"}
|
|
swc_ecma_visit = {version = "0.37.1", path = "../visit"}
|
|
|
|
[dev-dependencies]
|
|
testing = {version = "0.12.3", path = "../../testing"}
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
normpath = {version = "0.2", optional = true}
|