1[package] 2name = "rtp" 3version = "0.6.8" 4authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"] 5edition = "2018" 6description = "A pure Rust implementation of RTP" 7license = "MIT/Apache-2.0" 8documentation = "https://docs.rs/rtp" 9homepage = "https://webrtc.rs" 10repository = "https://github.com/webrtc-rs/rtp" 11rust-version = "1.60.0" 12 13[dependencies] 14util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] } 15 16bytes = "1" 17rand = "0.8.5" 18thiserror = "1.0" 19async-trait = "0.1.56" 20serde = { version = "1.0.102", features = ["derive"] } 21 22[dev-dependencies] 23chrono = "0.4.23" 24criterion = "0.3.5" 25tokio = { version = "1.19", features = ["full"] } 26tokio-test = "0.4.0" # must match the min version of the `tokio` crate above 27 28[[bench]] 29name = "packet_bench" 30harness = false 31