forked from suptejas/volt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (57 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
61 lines (57 loc) · 1.14 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
52
53
54
55
56
57
58
59
60
61
[workspace]
members = [
"src/volt",
"src/add",
"src/cache",
"src/clone",
"src/compress",
"src/volt_core",
"src/create",
"src/deploy",
"src/help",
"src/init",
"src/install",
"src/utils",
"src/list",
"src/migrate",
"src/remove",
"src/run",
"src/scripts",
"src/fix",
"src/watch",
"src/update",
"src/set",
"src/audit",
"src/check",
"src/info",
"src/search",
"src/outdated",
"src/login",
"src/logout",
"src/publish",
"src/tag",
"src/owner",
"src/team",
"src/stat",
"src/rslint/rslint_parser",
"src/rslint/rslint_errors",
"src/rslint/rslint_lexer",
"src/rslint/rslint_rowan",
"src/rslint/rslint_syntax",
"src/rslint/rslint_core",
"src/rslint/rslint_macros",
"src/rslint/rslint_lsp",
"src/rslint/rslint_regex",
"src/rslint/rslint_text_edit",
"src/rslint/rslint_config",
"src/rslint/rslint_cli",
]
exclude = [
"src/prototype/compress",
"src/prototype/syntax",
"platforms/cargo"
]
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.