-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (60 loc) · 1.32 KB
/
Cargo.toml
File metadata and controls
67 lines (60 loc) · 1.32 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
65
66
67
[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",
<<<<<<< test/insurance-auth-lifecycle-matrix
"integration_tests",
"remitwise-common",
=======
>>>>>>> main
"integration_tests",
]
default-members = [
"remittance_split",
"savings_goals",
"bill_payments",
"insurance",
"family_wallet",
"data_migration",
"reporting",
"orchestrator",
]
resolver = "2"
[dependencies]
soroban-sdk = "=21.7.7"
ed25519-dalek = "2.1.1"
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.7.7", features = ["testutils"] }
[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