[package]
name = "stun"
version = "0.1.17"
authors = ["Rain Liu <yuliu@webrtc.rs>"]
edition = "2018"
description = "A pure Rust implementation of STUN"
license = "MIT"
documentation = "https://docs.rs/stun"
homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/stun"
[dependencies]
util = { package = "webrtc-util", version = "0.1.21" }
lazy_static = "1.3.0"
tokio = { version = "1.0", features = ["full"] }
url = "2.2.0"
rand = "0.8.0"
base64 = "0.13.0"
subtle = "2.1.1"
crc32fast = "1.2.1"
ring = "0.16.19"
md-5 = "0.9.1"
[dev-dependencies]
tokio-test = "0.4"
clap = "2"
[[example]]
name = "stun_client"
path = "examples/stun_client.rs"
bench = false
[[example]]
name = "stun_decode"
path = "examples/stun_decode.rs"
bench = false