forked from Gildado/PayD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (42 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (42 loc) · 1.14 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
[workspace]
members = [
"contracts/bulk_payment",
"contracts/cross_asset_payment",
"contracts/milestone_escrow",
"contracts/orgusd",
"contracts/revenue_split",
"contracts/vesting_escrow",
"contracts/asset_path_payment",
"contracts/smart_wallet",
]
resolver = "2"
[workspace.package]
authors = ["The Aha Company"]
edition = "2024"
license = "MIT"
repository = "https://github.com/theahaco/scaffold-stellar"
version = "0.0.1"
description = "PayD — Decentralized payroll and payment platform on Stellar/Soroban"
[workspace.dependencies.soroban-sdk]
version = "23.4.0"
[workspace.dependencies.stellar-access]
git = "https://github.com/OpenZeppelin/stellar-contracts"
tag = "v0.6.0"
[workspace.dependencies.stellar-macros]
git = "https://github.com/OpenZeppelin/stellar-contracts"
tag = "v0.6.0"
[workspace.dependencies.stellar-tokens]
git = "https://github.com/OpenZeppelin/stellar-contracts"
tag = "v0.6.0"
[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"