1[package] 2name = "interceptor" 3version = "0.8.2" 4authors = ["Rain Liu <[email protected]>"] 5edition = "2021" 6description = "A pure Rust implementation of Pluggable RTP/RTCP processors" 7license = "MIT/Apache-2.0" 8documentation = "https://docs.rs/interceptor" 9homepage = "https://webrtc.rs" 10repository = "https://github.com/webrtc-rs/interceptor" 11rust-version = "1.63.0" 12 13[dependencies] 14util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] } 15rtp = { version = "0.7.0", path = "../rtp" } 16rtcp = { version = "0.8.0", path = "../rtcp" } 17srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" } 18 19tokio = { version = "1.19", features = ["sync", "time"] } 20async-trait = "0.1.56" 21bytes = "1" 22thiserror = "1.0" 23rand = "0.8.5" 24waitgroup = "0.1.2" 25log = "0.4.16" 26 27[dev-dependencies] 28tokio-test = "0.4.0" # must match the min version of the `tokio` crate above 29chrono = "0.4.23" 30