2023-04-13 17:20:17 +00:00
|
|
|
[package]
|
2023-05-25 00:20:44 +00:00
|
|
|
name = "moq"
|
2023-04-13 17:20:17 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-08 07:01:34 +00:00
|
|
|
# Fork of h3 with WebTransport support
|
|
|
|
h3 = { git = "https://github.com/security-union/h3", branch = "add-webtransport" }
|
|
|
|
h3-quinn = { git = "https://github.com/security-union/h3", branch = "add-webtransport" }
|
|
|
|
h3-webtransport = { git = "https://github.com/security-union/h3", branch = "add-webtransport" }
|
|
|
|
quinn = { version = "0.10", default-features = false, features = ["runtime-tokio", "tls-rustls", "ring"] }
|
|
|
|
|
|
|
|
# Crypto dependencies
|
2023-04-24 17:18:55 +00:00
|
|
|
ring = "0.16"
|
2023-06-08 07:01:34 +00:00
|
|
|
rustls = { version = "0.21", features = ["dangerous_configuration"] }
|
|
|
|
rustls-pemfile = "1.0.2"
|
|
|
|
|
|
|
|
# Async stuff
|
|
|
|
tokio = { version = "1.27", features = ["full"] }
|
|
|
|
futures = "0.3"
|
|
|
|
|
|
|
|
# Media
|
2023-05-16 17:23:50 +00:00
|
|
|
mp4 = "0.13.0"
|
2023-06-08 07:01:34 +00:00
|
|
|
|
|
|
|
# Encoding
|
|
|
|
bytes = "1"
|
2023-04-24 17:18:55 +00:00
|
|
|
serde = "1.0.160"
|
2023-05-16 17:23:50 +00:00
|
|
|
serde_json = "1.0"
|
2023-05-25 00:20:44 +00:00
|
|
|
|
2023-06-08 07:01:34 +00:00
|
|
|
# Web server to serve the fingerprint
|
|
|
|
http = "0.2"
|
2023-05-25 00:20:44 +00:00
|
|
|
warp = { version = "0.3.3", features = ["tls"] }
|
|
|
|
hex = "0.4.3"
|
2023-06-08 07:01:34 +00:00
|
|
|
|
|
|
|
# Logging and utility
|
|
|
|
clap = { version = "4.0", features = [ "derive" ] }
|
|
|
|
log = { version = "0.4", features = ["std"] }
|
|
|
|
env_logger = "0.9.3"
|
|
|
|
anyhow = "1.0.70"
|