2023-06-17 03:36:07 +00:00
|
|
|
[package]
|
2023-07-12 22:37:09 +00:00
|
|
|
name = "moq-demo-quinn"
|
2023-06-17 03:36:07 +00:00
|
|
|
description = "Media over QUIC"
|
|
|
|
authors = [ "Luke Curley" ]
|
|
|
|
repository = "https://github.com/kixelated/moq-rs"
|
2023-07-05 21:55:40 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-06-17 03:36:07 +00:00
|
|
|
|
|
|
|
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" }
|
2023-07-12 22:37:09 +00:00
|
|
|
moq-transport-quinn = { path = "../moq-transport-quinn" }
|
2023-06-17 03:36:07 +00:00
|
|
|
moq-warp = { path = "../moq-warp" }
|
|
|
|
|
2023-07-12 22:37:09 +00:00
|
|
|
h3 = { git = "https://github.com/hyperium/h3", branch = "master" }
|
|
|
|
h3-quinn = { git = "https://github.com/hyperium/h3", branch = "master" }
|
|
|
|
h3-webtransport = { git = "https://github.com/hyperium/h3", branch = "master" }
|
|
|
|
|
2023-06-17 03:36:07 +00:00
|
|
|
# QUIC
|
|
|
|
quinn = "0.10"
|
|
|
|
|
|
|
|
# Crypto
|
|
|
|
ring = "0.16.20"
|
|
|
|
rustls = "0.21.2"
|
|
|
|
rustls-pemfile = "1.0.2"
|
|
|
|
|
|
|
|
# Async stuff
|
2023-07-12 11:38:55 +00:00
|
|
|
tokio = { version = "1.29.1", features = ["full"] }
|
2023-06-17 03:36:07 +00:00
|
|
|
|
|
|
|
# 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"
|
2023-07-12 11:38:55 +00:00
|
|
|
|
2023-07-12 22:37:09 +00:00
|
|
|
bytes= "1"
|
|
|
|
|
|
|
|
moq-transport-generic = { path = "../moq-transport-generic" }
|
2023-07-12 11:38:55 +00:00
|
|
|
# moq-generic-transport = { path = "../transport" }
|
|
|
|
moq-generic-transport = {git = "https://github.com/francoismichel/moq-rs-quiche", branch = "generic-transport-trait"}
|
|
|
|
webtransport_quiche = { git = "ssh://git@github.com/francoismichel/webtransport-quiche.git" }
|
|
|
|
async_webtransport = { git = "ssh://git@github.com/francoismichel/webtransport-quiche.git" }
|