forked from pi-apps/stellar-core
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 969 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 969 Bytes
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
[workspace]
resolver = "2"
members = ["src/rust"]
[profile.release]
codegen-units = 1
lto = true
# Package metadata for the workspace (optional, for documentation)
[package]
name = "pi-ecosystem-workspace"
version = "0.1.0"
edition = "2025"
authors = ["KOSASIH"]
description = "Workspace for Hyper-tech Pi Ecosystem Super App Smart Contracts on Stellar/Soroban"
license = "MIT"
keywords = ["stellar", "soroban", "pi", "blockchain", "stablecoin"]
categories = ["cryptography::cryptocurrencies", "smart-contracts"]
[dependencies]
soroban-sdk = "0.9"
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["json"] }
sha2 = "0.10"
stellar-sdk = "0.1" # For Stellar integration (add if needed)
# AI integration (optional, for Rust-Python bridge if required)
pyo3 = { version = "0.18", optional = true }
[features]
default = []
python-ai = ["pyo3"] # Enable for AI calls from Rust