forked from dudykr/stc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 1.18 KB
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
[workspace]
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Speedy web compiler"
edition = "2018"
name = "stc"
publish = false
version = "0.1.0"
[features]
no-threading = [
"stc_ts_file_analyzer/no-threading",
"stc_ts_module_loader/no-threading",
]
[dependencies]
anyhow = "1"
env_logger = "0.9.0"
log = "0.4.14"
rayon = "1"
stc_ts_builtin_types = {path = "./crates/stc_ts_builtin_types"}
stc_ts_env = {path = "./crates/stc_ts_env"}
stc_ts_file_analyzer = {path = "./crates/stc_ts_file_analyzer"}
stc_ts_module_loader = {path = "./crates/stc_ts_module_loader"}
stc_ts_type_checker = {path = "./crates/stc_ts_type_checker"}
stc_utils = {path = "./crates/stc_utils"}
structopt = "0.3.20"
swc_common = {version = "0.14.6", features = ["tty-emitter"]}
swc_ecma_ast = "0.58.0"
swc_ecma_parser = "0.78.5"
swc_node_base = "0.5.7"
tokio = "1.7.1"
tracing = {version = "0.1.26", features = ["release_max_level_off"]}
tracing-subscriber = {version = "0.2.19", features = ["env-filter"]}
[profile.release]
debug = true
lto = true
[profile.bench]
debug = true
[profile.dev]
split-debuginfo = "unpacked"
[profile.dev.build-override]
opt-level = 3
[profile.dev.package."*"]
opt-level = 3