-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
60 lines (56 loc) · 1.57 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
[workspace]
members = [
"contracts/lib",
"contracts/traits",
"contracts/proxy",
"contracts/escrow",
"contracts/ipfs-metadata",
"security-audit",
"contracts/oracle",
"contracts/bridge",
"contracts/property-token",
"contracts/insurance",
"contracts/analytics",
"contracts/fees",
"contracts/dex",
"contracts/compliance_registry",
"contracts/property-management",
"contracts/tax-compliance",
"contracts/fractional",
"contracts/prediction-market",
"contracts/identity",
"contracts/governance",
"contracts/crowdfunding",
"contracts/lending",
"contracts/metadata",
"contracts/database",
"contracts/third-party",
"contracts/staking",
"contracts/hello-world", # Added this
"tests",
"indexer",
]
resolver = "2"
[workspace.package]
authors = ["PropChain Team <dev@propchain.io>"]
edition = "2021"
homepage = "https://propchain.io"
license = "MIT"
repository = "https://github.com/MettaChain/PropChain-contract"
version = "1.0.0"
[workspace.dependencies]
ink = { version = "5.0.0", default-features = false }
scale = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = ["derive"] }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
soroban-sdk = "21.4.0" # Added this for your Stellar contracts
[profile.release]
overflow-checks = true # Changed to true for better math safety in lending
lto = "fat"
codegen-units = 1
opt-level = "z"
strip = true
panic = "abort"
[profile.dev]
overflow-checks = true
lto = "thin"
opt-level = 1