forked from swc-project/swc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (42 loc) · 1.25 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[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"
publish = false
repository = "https://github.com/swc-project/swc.git"
version = "0.0.0"
[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", path = "../string_enum"}
swc = {path = "../swc"}
swc_atoms = {path = "../swc_atoms"}
swc_bundler = {path = "../swc_bundler", features = ["concurrent"]}
swc_common = {path = "../swc_common", features = ["concurrent"]}
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"}
swc_node_base = {path = "../swc_node_base"}
tracing = "0.1.32"
[dev-dependencies]
pretty_assertions = "1.1"
testing = {path = "../testing"}