2021-03-20 09:30:54 +03:00
|
|
|
[package]
|
2022-08-14 10:48:15 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "General ecmascript loader used for transforms"
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_loader/"
|
2022-08-14 10:48:15 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_loader"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-04-13 11:41:47 +03:00
|
|
|
version = "0.43.3"
|
2021-03-20 09:30:54 +03:00
|
|
|
|
2022-08-14 10:48:15 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-06-24 09:32:09 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-06-24 09:32:09 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
2022-03-03 17:26:49 +03:00
|
|
|
cache = ["lru", "parking_lot"]
|
2021-06-24 09:32:09 +03:00
|
|
|
# Enable node js resolver
|
2021-11-11 14:00:46 +03:00
|
|
|
node = ["normpath", "serde_json", "dashmap", "once_cell", "path-clean"]
|
2021-06-24 09:32:09 +03:00
|
|
|
# Enable support for `paths` of tsconfig.json
|
2022-03-03 19:35:41 +03:00
|
|
|
tsc = ["dashmap", "once_cell", "swc_cached"]
|
2021-03-20 09:30:54 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-08-14 10:48:15 +03:00
|
|
|
ahash = "0.7.4"
|
|
|
|
anyhow = "1.0.41"
|
|
|
|
dashmap = { version = "5.1.0", optional = true }
|
|
|
|
lru = { version = "0.7.1", optional = true }
|
|
|
|
once_cell = { version = "1.9.0", optional = true }
|
2022-04-13 22:51:17 +03:00
|
|
|
parking_lot = { version = "0.12.0", optional = true }
|
2022-08-14 10:48:15 +03:00
|
|
|
path-clean = { version = "=0.1.0", optional = true }
|
|
|
|
pathdiff = "0.2.1"
|
2022-09-30 10:57:15 +03:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-08-14 10:48:15 +03:00
|
|
|
serde_json = { version = "1.0.64", optional = true }
|
|
|
|
tracing = "0.1.32"
|
2021-03-20 09:30:54 +03:00
|
|
|
|
2023-03-24 07:46:42 +03:00
|
|
|
swc_cached = { version = "0.3.15", optional = true, path = "../swc_cached" }
|
2023-04-13 11:41:47 +03:00
|
|
|
swc_common = { version = "0.31.3", path = "../swc_common" }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2021-03-20 09:30:54 +03:00
|
|
|
[dev-dependencies]
|
2022-04-13 22:51:17 +03:00
|
|
|
lazy_static = "1.4.0"
|
2021-06-24 09:32:09 +03:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-04-13 22:51:17 +03:00
|
|
|
normpath = { version = "0.2", optional = true }
|