[package] name = "webrtc-stun" version = "0.1.13" authors = ["Rain Liu "] edition = "2018" description = "A pure Rust implementation of STUN" license = "MIT" documentation = "https://docs.rs/webrtc-stun" homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/stun" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] util = { package = "webrtc-util", version = "0.1.6" } 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