[package] name = "webrtc-rs-stun" version = "0.1.13" authors = ["Rain Liu "] edition = "2018" description = "A pure Rust implementation of STUN" license = "MIT" documentation = "https://docs.rs/webrtc-rs-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 [features] binaries = ["clap"] default = ["binaries"] [dependencies] util = { package = "webrtc-rs-util", version = "0.1.1" } 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" clap = { version = "2", optional = true, default-features = false } [dev-dependencies] tokio-test = "0.4" [[example]] name = "stun_client" path = "examples/stun_client.rs" required-features = ["binaries"] bench = false