forked from moq-dev/moq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 788 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) · 788 Bytes
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
[package]
name = "moq-lite"
description = "Media over QUIC - Transport (Lite)"
authors = ["Luke Curley"]
repository = "https://github.com/moq-dev/moq"
license = "MIT OR Apache-2.0"
version = "0.15.9"
edition = "2024"
rust-version.workspace = true
keywords = ["quic", "http3", "webtransport", "media", "live"]
categories = ["multimedia", "network-programming", "web-programming"]
[features]
serde = ["dep:serde"]
[dependencies]
bytes = "1"
conducer = { workspace = true }
futures = "0.3"
num_enum = "0.7"
rand = "0.9.2"
serde = { workspace = true, optional = true, features = ["rc"] }
thiserror = "2"
tokio = { workspace = true, features = ["macros", "io-util", "sync", "test-util", "time"] }
tracing = "0.1"
web-async = { workspace = true }
web-transport-trait = { workspace = true }