forked from StellarCheckMate/Checkmate-Escrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 833 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 833 Bytes
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
[workspace]
members = [
"contracts/escrow",
"contracts/oracle",
"oracle-service",
"services/event-indexer",
"e2e-tests",
]
# Default members exclude e2e-tests: it is a host-only test harness that reads
# the release WASM artifacts from disk, so plain `cargo build` / `cargo test`
# must not try to run it without the WASM build. Run it explicitly with
# `cargo test -p e2e-tests` after `cargo build --target wasm32v1-none --release`.
default-members = [
"contracts/escrow",
"contracts/oracle",
"oracle-service",
"services/event-indexer",
]
resolver = "2"
[workspace.package]
license = "MIT"
[workspace.dependencies]
soroban-sdk = "21.7.5"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true