2021-08-13 13:03:04 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
build = "build.rs"
|
|
|
|
description = "Speedy web compiler"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2021-08-13 13:03:04 +03:00
|
|
|
name = "swc_node_bundler"
|
|
|
|
publish = false
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
2021-12-12 16:52:58 +03:00
|
|
|
[features]
|
|
|
|
default = ["swc_v1"]
|
|
|
|
swc_v1 = []
|
|
|
|
swc_v2 = []
|
2021-08-13 13:03:04 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
dashmap = "4.0.2"
|
2022-01-11 08:41:34 +03:00
|
|
|
is-macro = "0.2.0"
|
2021-08-13 13:03:04 +03:00
|
|
|
once_cell = "1"
|
|
|
|
regex = "1"
|
|
|
|
serde = {version = "1", features = ["derive"]}
|
|
|
|
serde_json = "1"
|
2021-11-10 10:39:01 +03:00
|
|
|
string_enum = {version = "0.3", path = "../string_enum"}
|
2021-11-09 14:42:49 +03:00
|
|
|
swc = {path = "../swc"}
|
2021-11-10 10:39:01 +03:00
|
|
|
swc_atoms = {path = "../swc_atoms"}
|
2021-11-09 14:42:49 +03:00
|
|
|
swc_bundler = {path = "../swc_bundler", features = ["concurrent"]}
|
2021-11-10 10:39:01 +03:00
|
|
|
swc_common = {path = "../swc_common", features = ["concurrent"]}
|
2021-11-10 13:00:54 +03:00
|
|
|
swc_ecma_ast = {path = "../swc_ecma_ast"}
|
|
|
|
swc_ecma_codegen = {path = "../swc_ecma_codegen"}
|
|
|
|
swc_ecma_loader = {path = "../swc_ecma_loader"}
|
|
|
|
swc_ecma_parser = {path = "../swc_ecma_parser"}
|
|
|
|
swc_ecma_transforms = {path = "../swc_ecma_transforms"}
|
|
|
|
swc_ecma_utils = {path = "../swc_ecma_utils"}
|
|
|
|
swc_ecma_visit = {path = "../swc_ecma_visit"}
|
2021-11-10 10:39:01 +03:00
|
|
|
swc_node_base = {path = "../swc_node_base"}
|
2021-09-27 12:19:15 +03:00
|
|
|
tracing = "0.1.28"
|
2021-08-13 13:03:04 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-12-29 09:27:51 +03:00
|
|
|
pretty_assertions = "0.7.2"
|
2021-11-10 10:39:01 +03:00
|
|
|
testing = {path = "../testing"}
|