-
Notifications
You must be signed in to change notification settings - Fork 60
/
Cargo.toml
32 lines (24 loc) · 831 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
[package]
name = "moq-clock"
description = "CLOCK over QUIC"
authors = ["Luke Curley"]
repository = "https://github.com/kixelated/moq-rs"
license = "MIT OR Apache-2.0"
version = "0.5.14"
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-native = { path = "../moq-native", version = "0.5" }
moq-transfork = { path = "../moq-transfork", version = "0.5" }
# QUIC
url = "2"
# Async stuff
tokio = { version = "1", features = ["full"] }
# CLI, logging, error handling
clap = { version = "4", features = ["derive"] }
anyhow = { version = "1", features = ["backtrace"] }
tracing = "0.1"
# CLOCK STUFF
chrono = "0.4"