forked from Stellar-Uzima/Uzima-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (63 loc) 路 1.81 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (63 loc) 路 1.81 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
68
[workspace]
resolver = "2"
members = [
"contracts/*",
]
exclude = [
"contracts/credential_notifications",
"contracts/medical_imaging",
"contracts/medical_records",
"contracts/healthcare_compliance",
"contracts/medical_record_hash_registry",
"contracts/appointment_booking_escrow",
"contracts/patient_consent_management",
"contracts/clinical_nlp",
"contracts/clinical_decision_support",
"contracts/remote_patient_monitoring",
"contracts/healthcare_analytics_dashboard",
"contracts/healthcare_data_marketplace",
"contracts/telemedicine",
"contracts/patient_portal",
"contracts/notification_system",
"contracts/mental_health_support",
"contracts/patient_gamification",
"contracts/medical_imaging_ai",
"contracts/dicomweb_services",
"contracts/emergency_access_override",
"contracts/health_data_access_logging",
"contracts/escrow",
"contracts/mfa",
"contracts/multi_region_orchestrator",
"contracts/regional_node_manager",
"contracts/digital_twin",
"contracts/aml",
"contracts/forensics",
"contracts/audit",
"contracts/federated_learning",
"contracts/rbac",
"contracts/sync_manager",
"contracts/failover_detector",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
license = "MIT"
repository = "https://github.com/yourusername/soroban-project"
[workspace.dependencies]
soroban-sdk = { version = "21.7.7" }
soroban-cli = "21.7.7"
# Force compatible versions to fix stellar-xdr dependency conflicts
arbitrary = "1.3.2"
derive_arbitrary = "1.3.2"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true