swactor/crates/data-plane/Cargo.toml
Zachery Aaron Shores-Chmielewski 291698c56f feat(data-plane): add descriptor-based I/O
Add descriptor lifecycle, mapping, errno, namespace reservations, stream cursor operations, Python bindings, guarantees, and benchmarks.
2026-08-24 19:22:20 +04:00

34 lines
717 B
TOML

[package]
name = "data-plane"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
publish = false
[dependencies]
telemetry = { path = "../telemetry" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
swactor = { path = "../..", features = ["serde", "transport"] }
swactor-transport = { path = "../transport" }
swactor-engine = { path = "../engine" }
parking_lot = "0.12"
[dev-dependencies]
parking_lot = "0.12"
criterion = { version = "0.5", default-features = false }
futures-lite = "2"
proptest = "1"
tokio.workspace = true
[[bench]]
name = "descriptor_performance"
harness = false
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"
[lints]
workspace = true