2023-06-16 18:38:19 +00:00
|
|
|
[package]
|
|
|
|
name = "moq-transport"
|
2023-06-17 03:36:07 +00:00
|
|
|
description = "Media over QUIC"
|
|
|
|
authors = [ "Luke Curley" ]
|
|
|
|
repository = "https://github.com/kixelated/moq-rs"
|
2023-06-27 06:30:13 +00:00
|
|
|
license = "MIT"
|
2023-06-17 03:36:07 +00:00
|
|
|
|
2023-06-16 18:38:19 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-06-17 03:36:07 +00:00
|
|
|
keywords = [ "quic", "http3", "webtransport", "media", "live" ]
|
|
|
|
categories = [ "multimedia", "network-programming", "web-programming" ]
|
|
|
|
|
|
|
|
|
2023-06-16 18:38:19 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-17 03:36:07 +00:00
|
|
|
# WebTransport support: TODO pin a version when released
|
|
|
|
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" }
|
|
|
|
quinn = "0.10"
|
2023-06-16 18:38:19 +00:00
|
|
|
http = "0.2"
|
|
|
|
|
2023-06-17 03:36:07 +00:00
|
|
|
tokio = { version = "1.27", features = ["macros"] }
|
2023-06-16 18:38:19 +00:00
|
|
|
bytes = "1"
|
|
|
|
|
2023-06-17 03:36:07 +00:00
|
|
|
log = "0.4"
|
2023-06-16 18:38:19 +00:00
|
|
|
anyhow = "1.0.70"
|
|
|
|
thiserror = "1.0.21"
|
|
|
|
async-trait = "0.1"
|