45 lines
1023 B
TOML
45 lines
1023 B
TOML
[package]
|
|
name = "moq-quinn"
|
|
description = "Media over QUIC"
|
|
authors = ["Luke Curley"]
|
|
repository = "https://github.com/kixelated/moq-rs"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
keywords = ["quic", "http3", "webtransport", "media", "live"]
|
|
categories = ["multimedia", "network-programming", "web-programming"]
|
|
|
|
default-run = "moq-quinn"
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
moq-transport = { path = "../moq-transport" }
|
|
moq-warp = { path = "../moq-warp" }
|
|
|
|
# QUIC
|
|
quinn = "0.10"
|
|
webtransport-generic = "0.5"
|
|
webtransport-quinn = "0.5"
|
|
|
|
# Crypto
|
|
ring = "0.16.20"
|
|
rustls = "0.21.2"
|
|
rustls-pemfile = "1.0.2"
|
|
|
|
# Async stuff
|
|
tokio = { version = "1.27", features = ["full"] }
|
|
|
|
# Web server to serve the fingerprint
|
|
warp = { version = "0.3.3", features = ["tls"] }
|
|
hex = "0.4.3"
|
|
|
|
# Logging
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
log = { version = "0.4", features = ["std"] }
|
|
env_logger = "0.9.3"
|
|
anyhow = "1.0.70"
|