[package]
edition = "2021"
rust-version = "1.83"
name = "moqtap-proxy"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MoQT intercepting proxy — transparent forwarding with inline frame parsing"
homepage = "https://github.com/moqtap/moqtap"
readme = "README.md"
keywords = [
"moqt",
"quic",
"streaming",
"media",
"protocol",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/moqtap/moqtap"
[features]
cert-gen = ["rcgen"]
default = []
webtransport = [
"wtransport",
"moqtap-client/webtransport",
]
[lib]
name = "moqtap_proxy"
path = "src/lib.rs"
[[test]]
name = "cert_tests"
path = "tests/cert_tests.rs"
[[test]]
name = "event_tests"
path = "tests/event_tests.rs"
[[test]]
name = "hook_tests"
path = "tests/hook_tests.rs"
[[test]]
name = "listener_tests"
path = "tests/listener_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "proxy_forward"
path = "tests/proxy_forward.rs"
[[test]]
name = "proxy_hook_rewrite"
path = "tests/proxy_hook_rewrite.rs"
[dependencies.bytes]
version = "1"
[dependencies.moqtap-client]
version = "0.2.1"
[dependencies.moqtap-codec]
version = "0.2.0"
default-features = false
[dependencies.quinn]
version = "0.11"
[dependencies.rcgen]
version = "0.14"
optional = true
[dependencies.ring]
version = "0.17"
[dependencies.rustls]
version = "0.23"
features = [
"ring",
"logging",
"std",
"tls12",
]
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.webpki-roots]
version = "0.26"
[dependencies.wtransport]
version = "0.7"
features = [
"dangerous-configuration",
"quinn",
]
optional = true
[dev-dependencies.rcgen]
version = "0.14"