xref: /webrtc/rtcp/Cargo.toml (revision 6ac0fffd)
1[package]
2name = "rtcp"
3version = "0.7.2"
4authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
5edition = "2018"
6description = "A pure Rust implementation of RTCP"
7license = "MIT/Apache-2.0"
8documentation = "https://docs.rs/rtcp"
9homepage = "https://webrtc.rs"
10repository = "https://github.com/webrtc-rs/rtcp"
11rust-version = "1.60.0"
12
13[dependencies]
14util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
15
16bytes = "1"
17thiserror = "1.0"
18
19[dev-dependencies]
20tokio = { version = "1.19", features = ["sync"] }
21tokio-test = "0.4.0" # must match the min version of the `tokio` crate above
22