webrtc-ice 0.3.5

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

# 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", default-features = false, features = ["conn", "vnet"] }
mdns = { package = "webrtc-mdns", version = "0.3.3" }
stun = "0.3.3"
turn = "0.3.4"
tokio = { version = "1.0", features = ["full"] }
url = "2.2.0"
crc = "2.0.0"
uuid = { version = "0.8", features = ["v4"] }
rand = "0.8.3"
log = "0.4.14"
async-trait = "0.1.42"
waitgroup = "0.1.2"
thiserror = "1.0.25"
anyhow = "1.0.41"

[dev-dependencies]
tokio-test = "0.4"
regex = "1.4.3"
env_logger = "0.8"
chrono = "0.4.19"
ipnet = "2.3.0"
clap = "2"
lazy_static = "1.3.0"
hyper = { version = "0.14", features = ["full"] }

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