-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (40 loc) · 1.27 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
[package]
name = "basalt"
version = "0.3.3"
authors = ["muji <muji@tmpfs.org>"]
edition = "2018"
license = "Apache-2.0/MIT"
default-run = "basalt"
[dependencies]
structopt = "0.3"
anyhow = "1"
log = "0.4"
pretty_env_logger = "0.4"
serde = "1"
serde_json = "1"
indexmap = {version = "1.6", features = ["serde-1"]}
dashmap = "4"
rayon = "1.5"
num-bigint = "0.2.6"
swc = "0.58"
swc_common = {version = "0.13", features = ["tty-emitter"]}
swc_ecma_parser = "0.72"
swc_atoms = "0.2.7"
swc_ecma_ast = "0.53"
swc_ecma_loader = {version = "0.19.0", features = ["node"]}
swc_ecma_visit = "0.39"
swc_ecma_dep_graph = "0.41"
swc_ecma_codegen = "0.72"
swc_ecma_transforms_base = "0.33"
[dev-dependencies]
testing = {version = "*", path = "./testing"}
#swc = {path = "../swc"}
#swc_common = {features = ["tty-emitter"], path = "../swc/common"}
#swc_ecma_parser = {path = "../swc/ecmascript/parser"}
#swc_atoms = {path = "../swc/atoms"}
#swc_ecma_ast = {path = "../swc/ecmascript/ast"}
#swc_ecma_loader = {features = ["node"], path = "../swc/ecmascript/loader"}
#swc_ecma_visit = {path = "../swc/ecmascript/visit"}
#swc_ecma_dep_graph = {path = "../swc/ecmascript/dep-graph"}
#swc_ecma_codegen = {path = "../swc/ecmascript/codegen"}
#swc_ecma_transforms_base = {path = "../swc/ecmascript/transforms/base"}