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