[package]
edition = "2024"
name = "rtc-interceptor"
version = "0.21.0-beta.2"
authors = ["Rain Liu <yliu@webrtc.rs>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RTC Interceptor in Rust"
homepage = "https://webrtc.rs"
documentation = "https://docs.rs/rtc-interceptor"
readme = false
keywords = [
"sansio",
"networking",
"protocols",
]
categories = ["network-programming"]
license = "MIT/Apache-2.0"
repository = "https://github.com/webrtc-rs/rtc"
resolver = "2"
[lib]
name = "rtc_interceptor"
path = "src/lib.rs"
[[test]]
name = "congestion_control"
path = "tests/congestion_control.rs"
[[test]]
name = "empty_rtcp_is_reserved"
path = "tests/empty_rtcp_is_reserved.rs"
[[test]]
name = "flexfec_receive"
path = "tests/flexfec_receive.rs"
[[test]]
name = "flexfec_round_trip"
path = "tests/flexfec_round_trip.rs"
[[test]]
name = "flexfec_send"
path = "tests/flexfec_send.rs"
[[test]]
name = "interval_pli"
path = "tests/interval_pli.rs"
[[test]]
name = "jitter_buffer_nack_depth"
path = "tests/jitter_buffer_nack_depth.rs"
[[test]]
name = "jitter_buffer_playout"
path = "tests/jitter_buffer_playout.rs"
[[test]]
name = "nack_integration"
path = "tests/nack_integration.rs"
[[test]]
name = "pacing"
path = "tests/pacing.rs"
[[test]]
name = "path_simulation"
path = "tests/path_simulation.rs"
[[test]]
name = "rfc8888_feedback"
path = "tests/rfc8888_feedback.rs"
[[test]]
name = "rtcp_report_integration"
path = "tests/rtcp_report_integration.rs"
[[test]]
name = "twcc_integration"
path = "tests/twcc_integration.rs"
[[bench]]
name = "congestion_control"
path = "benches/congestion_control.rs"
harness = false
[dependencies.log]
version = "0.4.33"
[dependencies.rand]
version = "0.10.1"
[dependencies.rtcp]
version = "0.21.0-beta.2"
package = "rtc-rtcp"
[dependencies.rtp]
version = "0.21.0-beta.2"
package = "rtc-rtp"
[dependencies.sansio]
version = "1"
[dependencies.shared]
version = "0.21.0-beta.2"
features = []
default-features = false
package = "rtc-shared"
[dev-dependencies]