swc/crates/swc_node_bundler/Cargo.toml

53 lines
1.7 KiB
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
build = "build.rs"
description = "Speedy web compiler"
documentation = "https://rustdoc.swc.rs/swc/"
edition = "2021"
license = "Apache-2.0"
name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git"
2023-11-21 00:59:52 +03:00
version = "0.58.71"
[lib]
bench = false
[features]
default = ["swc_v1"]
serde-impl = ["serde"]
swc_v1 = ["serde-impl"]
swc_v2 = ["serde-impl"]
[dependencies]
anyhow = "1"
2023-06-22 16:37:35 +03:00
dashmap = "5.4.0"
is-macro = "0.3.0"
2023-06-22 10:40:41 +03:00
once_cell = "1.18.0"
regex = "1"
serde = { version = "1", features = ["derive"], optional = true }
serde_json = "1"
2023-06-22 10:40:41 +03:00
tracing = "0.1.37"
2023-06-21 18:44:11 +03:00
string_enum = { version = "0.4.1", path = "../string_enum" }
2023-11-21 00:59:52 +03:00
swc = { version = "0.269.64", path = "../swc" }
2023-11-09 06:48:08 +03:00
swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
2023-11-21 00:59:52 +03:00
swc_bundler = { version = "0.222.58", path = "../swc_bundler", features = [
"concurrent",
] }
2023-11-16 01:45:18 +03:00
swc_common = { version = "0.33.9", path = "../swc_common", features = [
"concurrent",
] }
2023-11-16 01:45:18 +03:00
swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" }
2023-11-21 00:59:52 +03:00
swc_ecma_codegen = { version = "0.146.31", path = "../swc_ecma_codegen" }
2023-11-16 01:45:18 +03:00
swc_ecma_loader = { version = "0.45.10", path = "../swc_ecma_loader" }
2023-11-21 00:59:52 +03:00
swc_ecma_parser = { version = "0.141.25", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.226.50", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "0.124.31", path = "../swc_ecma_utils" }
2023-11-16 01:45:18 +03:00
swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" }
2023-11-11 22:12:50 +03:00
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
[dev-dependencies]
2023-06-22 16:37:35 +03:00
pretty_assertions = "1.3"
2023-11-16 01:45:18 +03:00
testing = { version = "0.35.11", path = "../testing" }