-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
54 lines (53 loc) · 1.53 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
[workspace]
resolver = "2"
members = [
"core",
"core/tests/wasm_tests/lilo_after_2gb",
"crates/fluence-app-service",
"crates/it-generator",
"crates/it-interfaces",
"crates/it-parser",
"crates/it-json-serde",
"crates/js-backend",
"crates/min-it-version",
"crates/module-info-parser",
"crates/module-interface",
"crates/wasm-backend-traits",
"crates/wasmtime-backend",
"crates/utils",
"examples/call_parameters",
"examples/failing",
"examples/greeting",
"examples/greeting_record",
"examples/ipfs-node/effector",
"examples/ipfs-node/pure",
"examples/motivational-example/donkey",
"examples/motivational-example/shrek",
"examples/records/effector",
"examples/records/pure",
"examples/records/test-record",
"examples/sqlite",
"examples/url-downloader/curl_adapter",
"examples/url-downloader/facade",
"examples/url-downloader/local_storage",
"marine",
"marine/tests/wasm_tests/arguments_passing",
"marine/tests/wasm_tests/arrays_passing",
"marine/tests/wasm_tests/call_parameters_v0",
"marine/tests/wasm_tests/call_parameters_v1",
"marine/tests/wasm_tests/call_parameters_v2",
"marine/tests/wasm_tests/call_parameters_v3",
"marine/tests/wasm_tests/memory_limiting",
"marine/tests/wasm_tests/records_passing",
"marine/tests/wasm_tests/wasi",
"marine-js",
"tools/cli",
"tools/repl",
]
[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
overflow-checks = false
panic = "abort"