forked from ussyalfaks/Grainlify-Stellar-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 647 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (26 loc) · 647 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
[workspace]
members = [
"bounty_escrow/contracts/escrow",
"grainlify-core",
"program-escrow"
]
[workspace.dependencies]
soroban-sdk = "21.0.0"
[package]
name = "grainlify-stellar-contracts-root"
version = "0.1.0"
edition = "2021"
[dev-dependencies]
soroban-sdk = { version = "21.0.0", features = ["testutils"] }
grainlify-core = { path = "grainlify-core" }
program-escrow = { path = "program-escrow" }
bounty-escrow = { path = "bounty_escrow/contracts/escrow" }
[profile.release]
opt-level = "z"
overflow-checks = true
lto = true
codegen-units = 1
panic = "abort"
[[test]]
name = "integration_tests"
path = "integration_tests.rs"