forked from Stellar-Teye/Teye-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.13 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]
resolver = "2"
members = [
"contracts/key_manager",
"contracts/vision_records",
"contracts/ai_integration",
"contracts/staking",
"contracts/compliance",
"contracts/common",
"contracts/identity",
"contracts/zk_verifier",
"contracts/zk_voting",
"contracts/fhir",
"contracts/cross_chain",
"contracts/analytics",
"contracts/treasury",
"contracts/audit",
"contracts/emr_bridge",
"contracts/orchestrator",
"contracts/state_channel",
"contracts/metering",
"contracts/vault",
"contracts/delegation",
"contracts/governor",
"sdk/zk_prover",
"test",
]
[workspace.package]
version = "1.2.2"
authors = ["Stellar-Teye Contributors"]
license = "MIT"
edition = "2021"
repository = "https://github.com/Stellar-Teye/Teye-Contracts"
rust-version = "1.78"
[workspace.dependencies]
soroban-sdk = "25.0.0"
proptest = "1"
proptest-derive = "0.4"
[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