swactor/crates/bindings/python/Cargo.toml
Zachery Aaron Shores-Chmielewski 564c762be9 feat(data-plane): complete virtual blob namespace
Add durable namespace control, Iroh-backed source transfer, session-independent publication lifetime, and wire managed Myelin jobs and bindings through the reusable data-plane API.
2026-08-22 21:30:59 +04:00

28 lines
699 B
TOML

[package]
name = "python"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
[lib]
name = "swactor"
crate-type = ["cdylib"]
[dependencies]
swactor = { path = "../../.." }
swactor-engine = { path = "../../engine", features = ["tokio"] }
swactor-transport = { path = "../../transport" }
data-plane = { path = "../../data-plane" }
distribution = { path = "../../distribution" }
iroh-driver = { path = "../../iroh-driver" }
libc = "0.2"
futures-lite = "2"
iroh = "0.98"
parking_lot = "0.12"
serde_json = "1"
pyo3 = { version = "0.23", features = ["extension-module"] }
pyo3-async-runtimes = { version = "0.23", features = ["tokio-runtime"] }
tokio.workspace = true
[lints]
workspace = true