webrtc 0.3.4

A pure Rust implementation of WebRTC API
Documentation
[package]
name = "webrtc"
version = "0.3.4"
authors = ["Rain Liu <yliu@webrtc.rs>"]
edition = "2018"
description = "A pure Rust implementation of WebRTC API"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/webrtc"
homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/webrtc"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
util = { package = "webrtc-util", version = "0.5.2" }
sdp = "0.5.0"
mdns = { package = "webrtc-mdns", version = "0.4.1" }
stun = "0.4.1"
turn = "0.5.2"
ice = { package = "webrtc-ice", version = "0.6.3" }
dtls = { package = "webrtc-dtls", version = "0.5.1" }
rtp = "0.6.3"
rtcp = "0.6.3"
srtp = { package = "webrtc-srtp", version = "0.8.7" }
sctp = { package = "webrtc-sctp", version = "0.4.2" }
data = { package = "webrtc-data", version = "0.3.2" }
media = { package = "webrtc-media", version = "0.4.3" }
interceptor = "0.7.4"
tokio = { version = "1.13.0", features = ["full"] }
log = "0.4.14"
async-trait = "0.1.51"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.70"
rand = "0.8.4"
bytes = "1.1.0"
thiserror = "1.0.30"
waitgroup = "0.1.2"
regex = "1.5.4"
url = "2.2.2"
rustls = { version = "0.19.0", features = ["dangerous_configuration"]}
rcgen = { version = "0.8.14", features = ["pem", "x509-parser"]}
ring = "0.16.20"
sha2 = "0.9.8"
lazy_static = "1.4.0"
hex = "0.4.3"

[dev-dependencies]
tokio-test = "0.4.2"
env_logger = "0.9.0"

[profile.dev]
opt-level = 0