-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
36 lines (28 loc) · 857 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "moq-dir"
description = "Media over QUIC"
authors = ["Luke Curley"]
repository = "https://github.com/englishm/moq-rs"
license = "MIT OR Apache-2.0"
version = "0.3.3"
edition = "2021"
keywords = ["quic", "http3", "webtransport", "media", "live"]
categories = ["multimedia", "network-programming", "web-programming"]
[dependencies]
moq-native-ietf = { path = "../moq-native-ietf", version = "0.5" }
moq-transport = { path = "../moq-transport", version = "0.10" }
# QUIC
web-transport = { workspace = true }
bytes = "1"
# Async stuff
tokio = { version = "1", features = ["full"] }
futures = "0.3"
# Error handling
anyhow = { version = "1", features = ["backtrace"] }
# CLI
clap = { version = "4", features = ["derive"] }
# Logging
log = { workspace = true }
env_logger = { workspace = true }
tracing = "0.1"
tracing-subscriber = "0.3"