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-04-15 03:36:58 +03:00
version = "0.47.17"
[lib]
bench = false
[features]
default = ["swc_v1"]
serde-impl = ["serde"]
swc_v1 = ["serde-impl"]
swc_v2 = ["serde-impl"]
[dependencies]
anyhow = "1"
dashmap = "5.1.0"
is-macro = "0.2.0"
once_cell = "1.10.0"
regex = "1"
serde = { version = "1", features = ["derive"], optional = true }
serde_json = "1"
tracing = "0.1.32"
2023-03-27 07:31:35 +03:00
string_enum = { version = "0.4.0", path = "../string_enum" }
2023-04-15 03:36:58 +03:00
swc = { version = "0.260.17", path = "../swc" }
2023-04-13 11:41:47 +03:00
swc_atoms = { version = "0.5.3", path = "../swc_atoms" }
2023-04-15 02:50:14 +03:00
swc_bundler = { version = "0.213.11", path = "../swc_bundler", features = [
"concurrent",
] }
2023-04-13 11:41:47 +03:00
swc_common = { version = "0.31.3", path = "../swc_common", features = [
"concurrent",
] }
2023-04-13 11:41:47 +03:00
swc_ecma_ast = { version = "0.103.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.138.7", path = "../swc_ecma_codegen" }
2023-04-15 02:50:14 +03:00
swc_ecma_loader = { version = "0.43.4", path = "../swc_ecma_loader" }
2023-04-13 11:41:47 +03:00
swc_ecma_parser = { version = "0.133.6", path = "../swc_ecma_parser" }
2023-04-15 02:50:14 +03:00
swc_ecma_transforms = { version = "0.217.9", path = "../swc_ecma_transforms" }
2023-04-13 11:41:47 +03:00
swc_ecma_utils = { version = "0.116.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.89.3", path = "../swc_ecma_visit" }
2022-10-24 06:58:37 +03:00
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
[dev-dependencies]
2022-03-11 17:00:55 +03:00
pretty_assertions = "1.1"
2023-04-13 11:41:47 +03:00
testing = { version = "0.33.3", path = "../testing" }