forked from Remitwise-Org/Remitwise-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (56 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
64 lines (56 loc) · 1.22 KB
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
55
56
57
58
59
60
61
62
63
64
[package]
name = "remitwise-contracts"
version = "0.1.0"
edition = "2021"
publish = false
[workspace]
members = [
"remittance_split",
"savings_goals",
"bill_payments",
"insurance",
"family_wallet",
"data_migration",
"reporting",
"orchestrator",
"cli",
"scenarios",
"testutils",
"integration_tests",
]
default-members = [
"remittance_split",
"savings_goals",
"bill_payments",
"insurance",
"family_wallet",
"data_migration",
"reporting",
"orchestrator",
]
resolver = "2"
[dependencies]
soroban-sdk = "21.0.0"
remittance_split = { path = "./remittance_split" }
savings_goals = { path = "./savings_goals" }
bill_payments = { path = "./bill_payments" }
insurance = { path = "./insurance" }
family_wallet = { path = "./family_wallet" }
reporting = { path = "./reporting" }
orchestrator = { path = "./orchestrator" }
[dev-dependencies]
soroban-sdk = { version = "21.0.0", features = ["testutils"] }
[patch.crates-io]
ed25519-dalek = "2.2.0"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true