zust-root 0.9.13

Addressable object tree and storage abstractions for Zust runtime integrations.
Documentation
[package]
name = "zust-root"
version = "0.9.13"
edition = "2024"
rust-version = "1.85"
description = "Addressable object tree and storage abstractions for Zust runtime integrations."
license = "Apache-2.0"
repository = "https://github.com/zhuchuanjing/zust"
homepage = "https://www.zust-lang.com"
keywords = ["zust", "storage", "runtime"]
categories = ["data-structures"]

[lib]
name = "root"

[[bin]]
name = "zust-root-iroh-daemon"
path = "src/bin/iroh_daemon.rs"
required-features = ["iroh"]

[[bin]]
name = "zust-root-iroh-upload"
path = "src/bin/iroh_upload.rs"
required-features = ["iroh"]

[features]
default = []
iroh = ["dep:iroh", "dep:iroh-blobs", "dep:serde", "dep:serde_json"]

[dependencies]
dynamic = { package = "zust-dynamic", version = "0.9.14", path = "../dynamic" }

anyhow = "1.0.102"
thiserror = "2.0.18"
smol_str = "0.3.6"
indexmap = "2.14.0"

scc = "3.7.1"
redis = { version = "1.2.1", features = ["tokio-comp"] }
rslock = "0.7.4"

axum = {version = "0.8.9", features = ["ws"]}
futures-util = "0.3.32"

tokio = {version = "1.52.3", features = ["full"]}
fjall = "3.1.4"
rustc-hash = "2.1.2"
rayon = "1.12.0"
anndists = "0.1.5"
rand = "0.10.1"
bytes = "1.11.1"
log = "0.4.29"
uuid = { version = "1.23.1", features = ["v4"]}
iroh = { version = "1.0.0", optional = true }
iroh-blobs = { version = "0.103.0", optional = true }
serde = { version = "1.0.228", features = ["derive"], optional = true }
serde_json = { version = "1.0.150", optional = true }