swactor/crates/streams/Cargo.toml
Zachery Aaron Shores-Chmielewski 315f0ff8ee feat: data streams primitive (#48)
Allows streaming blobs without interference from the actor runtime.
Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-23 04:47:54 +00:00

20 lines
579 B
TOML

[package]
name = "swactor-streams"
version = "0.1.0"
edition = "2024"
[dependencies]
swactor = { path = "../..", features = ["serde"] }
swactor-std = { path = "../std" }
shared-types = { path = "../shared-types" }
distribution = { path = "../distribution" }
crossbeam-queue = "0.3.12"
tokio = { version = "1", features = ["sync", "io-util"] }
iroh = { version = "0.96" }
blake3 = "1"
serde = { version = "1", features = ["derive"] }
getrandom = "0.2"
[dev-dependencies]
proptest = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "test-util", "io-util"] }