-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (58 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (58 loc) · 1.17 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
62
63
64
65
66
67
[workspace]
resolver = "2"
members = [
"slosh",
"slosh_lib",
"compiler",
"vm",
"builtins",
"compile_state",
"shell",
"bridge_macros",
"bridge_types",
"bridge_adapters",
"slosh_test",
"slosh_test_lib",
]
exclude = ["legacy"]
[profile.release]
lto = true
codegen-units = 1
#opt-level = 'z'
#debug = true
panic = "abort"
[profile.bench]
debug = true
[workspace.package]
version = "0.11.1"
[workspace.dependencies]
bridge_adapters = { path = "bridge_adapters" }
bridge_macros = { path = "bridge_macros" }
bridge_types = { path = "bridge_types" }
compile_state = { path = "compile_state" }
sl-compiler = { path = "compiler" }
compiler_test_utils = { path = "compiler/test_utils" }
slvm = { path = "vm" }
shell = { path = "shell" }
regex = "1"
lazy_static = "1"
mdbook = "0.4.37"
unicode-width = "0.2"
unicode_reader = "1"
unicode-segmentation = "1.12"
glob = "0.3"
cfg-if = "1.0"
nix = "0.29"
chrono = "0.4.38"
static_assertions = "1.1.0"
rand = "0.8.5"
walkdir = "2.5.0"
same-file = "1.0.6"
trybuild = "1.0.101"
tempfile = "3"
temp-env = "0.3.6"
syn = "1.0.109"
quote = "1.0.37"
env_logger = "0.11.5"
criterion = "0.5"
iai-callgrind = "0.14"