webrtc 0.0.9

A pure Rust implementation of WebRTC API
Documentation
[package]
name = "webrtc"
version = "0.0.9"
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.4.2" }
sdp = "0.2.3"
mdns = { package = "webrtc-mdns", version = "0.3.3" }
stun = "0.3.3"
turn = "0.3.4"
ice = { package = "webrtc-ice", version = "0.4.0" }
dtls = { package = "webrtc-dtls", version = "0.4.2" }
rtp = "0.3.3"
rtcp = "0.3.3"
srtp = { package = "webrtc-srtp", version = "0.3.4" }
sctp = { package = "webrtc-sctp", version = "0.3.3" }
data = { package = "webrtc-data", version = "0.2.2" }
tokio = { version = "1.10.1", features = ["full"] }
log = "0.4.14"
async-trait = "0.1.42"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
bytes = "1"
thiserror = "1.0.25"
anyhow = "1.0.41"
waitgroup = "0.1.2"
regex = "1"
url = "2.2.2"

[dev-dependencies]
tokio-test = "0.4"
env_logger = "0.8"
chrono = "0.4.19"
#clap = "2"
lazy_static = "1.4"

[profile.dev]
opt-level = 0

[[example]]
name = "examples"
path = "examples/examples.rs"
bench = false