-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
57 lines (50 loc) · 1.15 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
[workspace]
members = [
"vuec-core",
"vuec-dom",
"vuec-sfc",
"vuec-ssr",
"vuec-cli",
"vuec-plugins",
]
[workspace.package]
name = "vuec-rs"
version = "0.0.0"
edition = "2021"
license = "MIT"
authors = ["tuchg <[email protected]>"]
homepage = "https://github.com/tuchg/vuec-rs"
repository = "https://github.com/tuchg/vuec-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
#std = { default-features = false, features = ["panic_immediate_abort"] }
once_cell = "1"
regex = "1"
#ahash = "0"
#dotenv="0.15.0"
#dotenv_codegen="0.15.0"
#tracing = { version = "0.1", features = ["release_max_level_off"] }
#serde = { version = "1.0", features = ["derive"] }
#serde_json = "1.0"
#swc = "0"
#swc_common = "0"
#
#swc_ecma_ast = "0"
#swc_ecma_parser = "0"
#swc_ecma_codegen = "0"
#swc_css_ast = "0.132.0"
#swc_css_parser = "0.141.0"
#swc_css_codegen = "0.142.0"
[profile.release]
lto = true
#opt-level = "z"
#strip = true
#codegen-units = 1
#rpath = false
panic = 'abort'
#incremental = false
overflow-checks = false
#debug = false
#debug-assertions = false
[profile.bench]
debug = true