swc/crates/swc_ecma_loader/Cargo.toml

47 lines
1.4 KiB
TOML
Raw Normal View History

[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"
2023-08-16 21:04:14 +03:00
version = "0.43.23"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
bench = false
[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]
2023-06-22 10:40:41 +03:00
anyhow = "1.0.71"
2023-06-22 16:37:35 +03:00
dashmap = { version = "5.4.0", optional = true }
lru = { version = "0.10.0", optional = true }
2023-06-22 10:40:41 +03:00
once_cell = { version = "1.18.0", optional = true }
parking_lot = { version = "0.12.1", optional = true }
path-clean = { version = "=0.1.0", optional = true }
pathdiff = "0.2.1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.64", optional = true }
2023-06-22 10:40:41 +03:00
tracing = "0.1.37"
2023-06-22 16:40:52 +03:00
swc_cached = { version = "0.3.17", optional = true, path = "../swc_cached" }
2023-08-16 21:04:14 +03:00
swc_common = { version = "0.31.21", path = "../swc_common" }
[dev-dependencies]
lazy_static = "1.4.0"
[target.'cfg(windows)'.dependencies]
normpath = { version = "0.2", optional = true }