[package]
name = "webrtc-ice"
version = "0.1.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"
[dependencies]
util = { package = "webrtc-util", version = "0.1.20" }
mdns = { package = "webrtc-mdns", version = "0.2.9" }
stun = "0.1.16"
turn = "0.1.8"
lazy_static = "1.3.0"
tokio = { version = "1.0", features = ["full"] }
url = "2.2.0"
crc32fast = "1.2.1"
uuid = { version = "0.8", features = ["v4"] }
rand = "0.8.3"
log = "0.4.14"
async-trait = "0.1.42"
waitgroup = "0.1.2"
defer = "0.1.0"
[dev-dependencies]
tokio-test = "0.4"
regex = "1.4.3"
env_logger = "0.8"
chrono = "0.4.19"
ipnet = "2.3.0"
clap = "2"
hyper = { version = "0.14", features = ["full"] }
[[example]]
name = "ping_pong"
path = "examples/ping_pong.rs"
bench = false