forked from ava-labs/hypersdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 836 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
[workspace]
members = [
"x/programs/cmd/simulator",
"x/programs/rust/sdk-macros",
"x/programs/rust/wasmlanche-sdk",
"x/programs/rust/examples/token",
"x/programs/rust/examples/counter",
"x/programs/rust/examples/counter-external",
"x/programs/rust/examples/automated-market-maker",
"x/programs/rust/wasmlanche-sdk/tests/test-crate",
"x/programs/test/programs/*",
"x/programs/cmd/simulator/test/*",
]
resolver = "2"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
overflow-checks = true
panic = 'abort'
strip = true
[workspace.dependencies]
sdk-macros = { path = "x/programs/rust/sdk-macros" }
simulator = { path = "x/programs/cmd/simulator" }
wasmlanche-sdk = { path = "x/programs/rust/wasmlanche-sdk" }
borsh = { version = "1.5.1", features = ["derive"] }
thiserror = "1.0.61"