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>
40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "swactor-datastore"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
swactor = { path = "../..", features = ["serde", "transport"] }
|
|
distribution = { path = "../distribution" }
|
|
shared-types = { path = "../shared-types" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
blake3 = "1"
|
|
tiny_http = "0.12"
|
|
clap = { version = "4", features = ["derive"], optional = true }
|
|
ureq = { version = "2", features = ["json"], optional = true }
|
|
getrandom = { version = "0.2", optional = true }
|
|
dashboard = { path = "../dashboard" }
|
|
swactor-std = { path = "../std" }
|
|
swactor-streams = { path = "../streams" }
|
|
tokio = { version = "1", features = ["sync", "rt", "time"] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|
|
proptest = "1"
|
|
tempfile = "3"
|
|
swactor = { path = "../.." }
|
|
swactor-streams = { path = "../streams" }
|
|
swactor-std = { path = "../std" }
|
|
distribution = { path = "../distribution", features = ["iroh"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-util", "time"] }
|
|
iroh = "0.96"
|
|
ureq = { version = "2", features = ["json"] }
|
|
|
|
[features]
|
|
cli = ["dep:clap", "dep:ureq", "dep:getrandom"]
|
|
|
|
[[bin]]
|
|
name = "swactor-store"
|
|
path = "src/bin/store_cli.rs"
|
|
required-features = ["cli"]
|