32 lines
681 B
TOML
32 lines
681 B
TOML
[package]
|
|
name = "moq-warp"
|
|
description = "Media over QUIC"
|
|
authors = [ "Luke Curley" ]
|
|
repository = "https://github.com/kixelated/moq-rs"
|
|
license = "Apache-2.0"
|
|
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
keywords = [ "quic", "http3", "webtransport", "media", "live" ]
|
|
categories = [ "multimedia", "network-programming", "web-programming" ]
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
moq-transport = { path = "../moq-transport" }
|
|
|
|
tokio = "1.27"
|
|
mp4 = "0.13.0"
|
|
anyhow = "1.0.70"
|
|
log = "0.4" # TODO remove
|
|
|
|
# QUIC stuff
|
|
quinn = "0.10"
|
|
ring = "0.16.20"
|
|
rustls = "0.21.2"
|
|
rustls-pemfile = "1.0.2"
|
|
|
|
async-trait = "0.1"
|