[package]
edition = "2021"
name = "haagenti-network"
version = "0.1.0"
authors = ["Daemoniorum LLC"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CDN-based network streaming for HoloTensor fragments"
readme = false
keywords = [
"cdn",
"streaming",
"fragments",
"model-loading",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/daemoniorum/haagenti"
[lib]
name = "haagenti_network"
path = "src/lib.rs"
[[bench]]
name = "network_streaming"
path = "benches/network_streaming.rs"
harness = false
[dependencies.arcanum-primitives]
version = "0.1.2"
features = [
"simd",
"blake3",
"sha2",
]
[dependencies.async-trait]
version = "0.1"
[dependencies.backoff]
version = "0.4"
features = ["tokio"]
[dependencies.bincode]
version = "1.3"
[dependencies.bytes]
version = "1.8"
[dependencies.dashmap]
version = "6.1"
[dependencies.futures]
version = "0.3"
[dependencies.haagenti-core]
version = "0.1.0"
[dependencies.haagenti-fragments]
version = "0.1.0"
[dependencies.hyper]
version = "1.5"
features = [
"http1",
"http2",
"server",
"client",
]
[dependencies.indexmap]
version = "2.7"
features = ["serde"]
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.reqwest]
version = "0.11"
features = [
"stream",
"gzip",
"brotli",
"rustls-tls",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.41"
features = [
"io-util",
"sync",
"net",
"fs",
"rt-multi-thread",
"time",
"macros",
]
[dependencies.tower]
version = "0.5"
features = [
"util",
"retry",
"timeout",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wiremock]
version = "0.6"