xref: /webrtc/rtp/Cargo.toml (revision 7bf14382)
1[package]
2name = "rtp"
3version = "0.7.0"
4authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
5edition = "2021"
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.63.0"
12
13[dependencies]
14util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
15
16bytes = "1"
17rand = "0.8.5"
18thiserror = "1.0"
19serde = { version = "1.0.102", features = ["derive"] }
20
21[dev-dependencies]
22chrono = "0.4.23"
23criterion = "0.4.0"
24
25[[bench]]
26name = "packet_bench"
27harness = false
28