[package]
name = "hls-runtime"
version = "0.5.0"
edition = "2024"
description = "Sans-IO Low-Latency HLS (RFC 8216bis) client + server engines in one crate (blocking reload, part prefetch, rolling-window origin), with an optional tokio+reqwest IO adapter."
license = "MIT OR Apache-2.0"
authors = ["Alex Fishlock <alex.fishlock@racingjag.com>"]
keywords = ["hls", "llhls", "sans-io", "streaming", "client"]
categories = ["multimedia", "network-programming", "parser-implementations"]
repository = "https://github.com/fishloa/rust-broadcast"
readme = "README.md"
rust-version = "1.86"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
broadcast-common = { path = "../broadcast-common", version = "9", default-features = false }
transmux = { path = "../transmux", version = "0.23", default-features = false }
broadcast-hls = { path = "../broadcast-hls", version = "0.1", default-features = false }
thiserror = { version = "2", default-features = false }
serde = { version = "1", optional = true, default-features = false, features = ["derive", "alloc"] }
media-plane = { path = "../media-plane", version = "0.3", optional = true, default-features = false }
bytes = { version = "1", optional = true, default-features = false }
tokio = { version = "1", optional = true, default-features = false, features = ["time"] }
reqwest = { version = "0.12", optional = true, default-features = false, features = ["rustls-tls"] }
broadcast-auth = { path = "../broadcast-auth", version = "0.2", optional = true }
[features]
default = ["std"]
std = ["broadcast-common/std", "thiserror/std", "transmux/std", "broadcast-hls/std", "media-plane/std", "dep:bytes"]
serde = ["dep:serde"]
tokio = ["std", "dep:tokio", "dep:reqwest", "dep:broadcast-auth"]