forked from swc-project/swc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (56 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[workspace]
members = ["ecmascript", "ecmascript/jsdoc", "native", "spack", "wasm"]
[package]
authors = ["강동윤 <[email protected]>"]
description = "Speedy web compiler"
documentation = "https://swc.rs/rustdoc/swc/"
edition = "2018"
license = "Apache-2.0/MIT"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.7"
[lib]
name = "swc"
[dependencies]
anyhow = "1"
base64 = "0.12.0"
dashmap = "3"
either = "1"
log = {version = "0.4", features = ["release_max_level_info"]}
once_cell = "1"
regex = "1"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
sourcemap = "6"
swc_atoms = {version = "0.2", path = "./atoms"}
swc_common = {version = "0.10", path = "./common", features = ["sourcemap", "concurrent"]}
swc_ecma_ast = {version = "0.37.3", path = "./ecmascript/ast"}
swc_ecma_codegen = {version = "0.43.7", path = "./ecmascript/codegen"}
swc_ecma_ext_transforms = {version = "0.2.5", path = "./ecmascript/ext-transforms"}
swc_ecma_parser = {version = "0.45.6", path = "./ecmascript/parser"}
swc_ecma_preset_env = {version = "0.3.7", path = "./ecmascript/preset_env"}
swc_ecma_transforms = {version = "0.33.8", path = "./ecmascript/transforms", features = [
"compat",
"module",
"optimization",
"proposal",
"react",
"typescript",
]}
swc_ecma_utils = {version = "0.27.3", path = "./ecmascript/utils"}
swc_ecma_visit = {version = "0.23.3", path = "./ecmascript/visit"}
swc_visit = {version = "0.2", path = "./visit"}
[dev-dependencies]
rayon = "1"
testing = {version = "0.10", path = "./testing"}
walkdir = "2"
[[example]]
name = "usage"
[profile.release]
codegen-units = 1
lto = true
# debug = true
# opt-level = 'z'
[profile.bench]
codegen-units = 1
debug = true