[package]
name = "webrtc-ice"
version = "0.0.1"
authors = ["Rain Liu <yuliu@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.6" }
mdns = { package = "webrtc-mdns", version = "0.2.1" }
stun = { package = "webrtc-stun", version = "0.1.13" }
turn = { package = "webrtc-turn", version = "0.1.0" }
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"
ifaces = "0.1.0"
[dev-dependencies]
tokio-test = "0.4"
regex = "1.4.3"
crossbeam = "0.8.0"
[profile.dev]
opt-level = 0