mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 18:28:13 +03:00
50 lines
1.6 KiB
TOML
50 lines
1.6 KiB
TOML
[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"
|
|
version = "0.29.1"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[features]
|
|
default = ["swc_v1"]
|
|
swc_v1 = []
|
|
swc_v2 = []
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
dashmap = "5.1.0"
|
|
is-macro = "0.2.0"
|
|
once_cell = "1.10.0"
|
|
regex = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
string_enum = { version = "0.3.2", path = "../string_enum" }
|
|
swc = { version = "0.242.1", path = "../swc" }
|
|
swc_atoms = { version = "0.4.32", path = "../swc_atoms" }
|
|
swc_bundler = { version = "0.196.1", path = "../swc_bundler", features = [
|
|
"concurrent",
|
|
] }
|
|
swc_common = { version = "0.29.27", path = "../swc_common", features = [
|
|
"concurrent",
|
|
] }
|
|
swc_ecma_ast = { version = "0.96.0", path = "../swc_ecma_ast" }
|
|
swc_ecma_codegen = { version = "0.129.2", path = "../swc_ecma_codegen" }
|
|
swc_ecma_loader = { version = "0.41.28", path = "../swc_ecma_loader" }
|
|
swc_ecma_parser = { version = "0.124.1", path = "../swc_ecma_parser" }
|
|
swc_ecma_transforms = { version = "0.201.0", path = "../swc_ecma_transforms" }
|
|
swc_ecma_utils = { version = "0.107.1", path = "../swc_ecma_utils" }
|
|
swc_ecma_visit = { version = "0.82.0", path = "../swc_ecma_visit" }
|
|
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
|
|
tracing = "0.1.32"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.1"
|
|
testing = { version = "0.31.29", path = "../testing" }
|