libmoq 0.5.13

Media over QUIC, C bindings
Documentation
[package]
name = "libmoq"
description = "Media over QUIC, C bindings"
authors = ["Luke Curley <kixelated@gmail.com>", "Brian Medley <bpm@bmedley.org>"]
repository = "https://github.com/moq-dev/moq"
license = "MIT OR Apache-2.0"

version = "0.5.13"
edition = "2024"
rust-version.workspace = true

keywords = ["quic", "http3", "webtransport", "media", "live"]
categories = ["multimedia", "network-programming", "web-programming"]

[lib]
name = "moq"
crate-type = ["staticlib"]

[dependencies]
anyhow = { workspace = true, features = ["backtrace"] }
bytes = { workspace = true }
hang = { workspace = true }
moq-audio = { workspace = true }
moq-json = { workspace = true }
moq-mux = { workspace = true }
moq-native = { workspace = true, default-features = true }
moq-net = { workspace = true }
# Enable the NVIDIA hardware codecs (default-off at the workspace level).
moq-video = { workspace = true, features = ["nvidia"] }
# Blocking on `encode::Sink` from the synchronous C entry points; see
# `video::block_on` for why not a tokio helper.
pollster = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["macros"] }
tracing = { workspace = true }
url = { workspace = true }

[build-dependencies]
cbindgen = "0.29"

[dev-dependencies]
moq-loc = { workspace = true }