2023-06-16 18:38:19 +00:00
|
|
|
[package]
|
|
|
|
name = "moq-warp"
|
2023-06-17 03:36:07 +00:00
|
|
|
description = "Media over QUIC"
|
2023-08-02 18:41:28 +00:00
|
|
|
authors = ["Luke Curley"]
|
2023-06-17 03:36:07 +00:00
|
|
|
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
|
|
|
|
2023-06-16 18:38:19 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-08-02 18:41:28 +00:00
|
|
|
keywords = ["quic", "http3", "webtransport", "media", "live"]
|
|
|
|
categories = ["multimedia", "network-programming", "web-programming"]
|
2023-06-16 18:38:19 +00:00
|
|
|
|
|
|
|
|
2023-06-17 03:36:07 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2023-06-16 18:38:19 +00:00
|
|
|
|
2023-06-17 03:36:07 +00:00
|
|
|
[dependencies]
|
|
|
|
moq-transport = { path = "../moq-transport" }
|
2023-08-15 17:20:03 +00:00
|
|
|
webtransport-generic = "0.5"
|
2023-06-16 18:38:19 +00:00
|
|
|
|
2023-06-17 03:36:07 +00:00
|
|
|
tokio = "1.27"
|
2023-06-16 18:38:19 +00:00
|
|
|
anyhow = "1.0.70"
|
2023-08-02 18:41:28 +00:00
|
|
|
log = "0.4" # TODO remove
|
|
|
|
bytes = "1.4"
|