-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (46 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
56 lines (46 loc) · 1.45 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
[workspace]
members = [
"modules/*",
"contracts/*",
]
default-members = [
"modules/*",
"contracts/privacy-channel",
"contracts/channel-auth",
]
resolver = "2"
[workspace.package]
authors = ["Moonlight"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/Moonlight-Protocol/soroban-core"
version = "0.1.0"
[workspace.dependencies.stellar-default-impl-macro]
git = "https://github.com/OpenZeppelin/stellar-contracts"
tag = "v0.3.0"
[workspace.dependencies]
soroban-sdk = { git = "https://github.com/AhaLabs/rs-soroban-sdk", rev = "5a99659f1483c926ff87ea45f8823b8c00dc4cbd" }
admin-sep = { git = "https://github.com/AhaLabs/admin-sep", rev = "bf195f4d67cc96587974212f998680ccf9a61cd7" }
soroban-token-sdk = { git = "https://github.com/AhaLabs/rs-soroban-sdk", rev = "5a99659f1483c926ff87ea45f8823b8c00dc4cbd" }
wee_alloc = "0.4"
moonlight-utxo-core = { path = "modules/utxo-core" }
moonlight-auth = { path = "modules/auth" }
moonlight-helpers = { path = "modules/helpers" }
moonlight-primitives = { path = "modules/primitives" }
moonlight-storage = { path = "modules/storage" }
channel-auth-contract = { path = "contracts/channel-auth" }
token-contract = { path = "contracts/token" }
[profile.release]
opt-level = "z"
debug = false
lto = true
debug-assertions = false
codegen-units = 1
panic = "abort"
overflow-checks = true
strip = true
[profile.release-with-logs]
debug-assertions = true
inherits = "release"
[profile.test]
overflow-checks = true