mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
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 = "2021"
|
|
license = "Apache-2.0"
|
|
name = "swc_ecma_loader"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.29.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
cache = ["lru", "parking_lot"]
|
|
# Enable node js resolver
|
|
node = ["normpath", "serde_json", "dashmap", "once_cell", "path-clean"]
|
|
# Enable support for `paths` of tsconfig.json
|
|
tsc = ["dashmap", "once_cell", "swc_cached"]
|
|
|
|
[dependencies]
|
|
ahash = "0.7.4"
|
|
anyhow = "1.0.41"
|
|
dashmap = {version = "4.0.2", optional = true}
|
|
lru = {version = "0.7.1", optional = true}
|
|
once_cell = {version = "1.9.0", optional = true}
|
|
parking_lot = {version = "0.12.0", optional = true}
|
|
path-clean = {version = "=0.1.0", optional = true}
|
|
serde = {version = "1", features = ["derive"]}
|
|
serde_json = {version = "1.0.64", optional = true}
|
|
swc_cached = {version = "0.1.0", optional = true, path = "../swc_cached"}
|
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
|
tracing = "0.1.32"
|
|
|
|
[dev-dependencies]
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
normpath = {version = "0.2", optional = true}
|