2021-08-13 13:03:04 +03:00
|
|
|
[package]
|
2022-08-14 04:15:56 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
build = "build.rs"
|
|
|
|
description = "Speedy web compiler"
|
2021-08-13 13:03:04 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc/"
|
2022-08-14 04:15:56 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_node_bundler"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-10-18 05:54:12 +03:00
|
|
|
version = "0.18.37"
|
2021-08-13 13:03:04 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-12-12 16:52:58 +03:00
|
|
|
[features]
|
|
|
|
default = ["swc_v1"]
|
2022-08-14 04:15:56 +03:00
|
|
|
swc_v1 = []
|
|
|
|
swc_v2 = []
|
2021-08-13 13:03:04 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2022-03-11 17:00:55 +03:00
|
|
|
dashmap = "5.1.0"
|
2022-01-11 08:41:34 +03:00
|
|
|
is-macro = "0.2.0"
|
2022-03-11 17:00:55 +03:00
|
|
|
once_cell = "1.10.0"
|
2021-08-13 13:03:04 +03:00
|
|
|
regex = "1"
|
2022-09-30 10:57:15 +03:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2021-08-13 13:03:04 +03:00
|
|
|
serde_json = "1"
|
2022-10-10 16:09:51 +03:00
|
|
|
string_enum = { version = "0.3.2", path = "../string_enum" }
|
2022-10-18 05:54:12 +03:00
|
|
|
swc = { version = "0.232.37", path = "../swc" }
|
2022-10-13 09:12:56 +03:00
|
|
|
swc_atoms = { version = "0.4.21", path = "../swc_atoms" }
|
2022-10-18 05:54:12 +03:00
|
|
|
swc_bundler = { version = "0.192.32", path = "../swc_bundler", features = [
|
2022-08-14 04:15:56 +03:00
|
|
|
"concurrent",
|
|
|
|
] }
|
2022-10-13 09:12:56 +03:00
|
|
|
swc_common = { version = "0.29.8", path = "../swc_common", features = [
|
2022-08-14 04:15:56 +03:00
|
|
|
"concurrent",
|
|
|
|
] }
|
2022-10-13 09:12:56 +03:00
|
|
|
swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" }
|
2022-10-17 11:33:49 +03:00
|
|
|
swc_ecma_codegen = { version = "0.127.17", path = "../swc_ecma_codegen" }
|
2022-10-13 09:12:56 +03:00
|
|
|
swc_ecma_loader = { version = "0.41.9", path = "../swc_ecma_loader" }
|
2022-10-17 11:33:49 +03:00
|
|
|
swc_ecma_parser = { version = "0.122.13", path = "../swc_ecma_parser" }
|
|
|
|
swc_ecma_transforms = { version = "0.198.16", path = "../swc_ecma_transforms" }
|
|
|
|
swc_ecma_utils = { version = "0.105.18", path = "../swc_ecma_utils" }
|
2022-10-13 09:12:56 +03:00
|
|
|
swc_ecma_visit = { version = "0.80.11", path = "../swc_ecma_visit" }
|
2022-08-14 04:15:56 +03:00
|
|
|
swc_node_base = { version = "0.5.5", path = "../swc_node_base" }
|
2022-03-10 06:15:49 +03:00
|
|
|
tracing = "0.1.32"
|
2021-08-13 13:03:04 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-11 17:00:55 +03:00
|
|
|
pretty_assertions = "1.1"
|
2022-10-13 09:12:56 +03:00
|
|
|
testing = { version = "0.31.8", path = "../testing" }
|