-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
43 lines (38 loc) · 990 Bytes
/
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
[workspace]
members = [
# Runtime SDK Core.
"runtime-sdk",
"runtime-sdk-macros",
# Runtime SDK Modules.
"runtime-sdk/modules/contracts",
"runtime-sdk/modules/evm",
# Smart Contract SDK.
"contract-sdk",
"contract-sdk/crypto",
"contract-sdk/types",
"contract-sdk/storage",
"contract-sdk-macros",
# ROFL.
"rofl-utils",
# Test runtimes.
"tests/runtimes/benchmarking",
"tests/runtimes/simple-keyvalue",
"tests/runtimes/simple-consensus",
"tests/runtimes/simple-evm",
"tests/runtimes/simple-contracts",
"tests/runtimes/components-ronl",
"tests/runtimes/components-rofl",
]
exclude = [
# Test contracts.
"tests/contracts",
# Example contracts and runtimes.
"examples/contract-sdk/hello-world",
"examples/contract-sdk/c10l-hello-world",
"examples/runtime-sdk/minimal-runtime",
"examples/runtime-sdk/rofl-oracle",
]
resolver = "2"
[profile.bench]
codegen-units = 1
lto = "thin"