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-10 08:40:39 +03:00
|
|
|
version = "0.18.6"
|
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-08-14 04:15:56 +03:00
|
|
|
string_enum = { version = "0.3", path = "../string_enum" }
|
2022-10-10 08:40:39 +03:00
|
|
|
swc = { version = "0.232.6", path = "../swc" }
|
2022-09-29 01:57:51 +03:00
|
|
|
swc_atoms = { version = "0.4.18", path = "../swc_atoms" }
|
2022-10-10 08:40:39 +03:00
|
|
|
swc_bundler = { version = "0.192.6", path = "../swc_bundler", features = [
|
2022-08-14 04:15:56 +03:00
|
|
|
"concurrent",
|
|
|
|
] }
|
2022-10-06 14:38:55 +03:00
|
|
|
swc_common = { version = "0.29.5", path = "../swc_common", features = [
|
2022-08-14 04:15:56 +03:00
|
|
|
"concurrent",
|
|
|
|
] }
|
2022-10-06 14:38:55 +03:00
|
|
|
swc_ecma_ast = { version = "0.94.5", path = "../swc_ecma_ast" }
|
2022-10-07 10:48:18 +03:00
|
|
|
swc_ecma_codegen = { version = "0.127.9", path = "../swc_ecma_codegen" }
|
2022-10-06 14:38:55 +03:00
|
|
|
swc_ecma_loader = { version = "0.41.5", path = "../swc_ecma_loader" }
|
|
|
|
swc_ecma_parser = { version = "0.122.6", path = "../swc_ecma_parser" }
|
2022-10-07 10:48:18 +03:00
|
|
|
swc_ecma_transforms = { version = "0.198.1", path = "../swc_ecma_transforms" }
|
2022-10-06 14:38:55 +03:00
|
|
|
swc_ecma_utils = { version = "0.105.8", path = "../swc_ecma_utils" }
|
|
|
|
swc_ecma_visit = { version = "0.80.5", 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-06 14:38:55 +03:00
|
|
|
testing = { version = "0.31.5", path = "../testing" }
|