[package] name = "rtc-ice" version = "0.2.0" authors = ["Rain Liu "] edition = "2021" description = "RTC ICE in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-ice" homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/rtc" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = [] } stun = { version = "0.2.0", path = "../rtc-stun", package = "rtc-stun" } crc = "3.0.1" log = "0.4.21" rand = "0.8.5" serde = { version = "1.0.197", features = ["derive"] } url = "2.5.0" bytes = "1.5.0" [dev-dependencies] regex = "1.10.3" env_logger = "0.11.3" chrono = "0.4.35" ipnet = "2.9.0" clap = { version = "4.5.2", features = ["derive"] } lazy_static = "1.4.0" hyper = { version = "0.14.28", features = ["full"] } sha1 = "0.10.6" waitgroup = "0.1.2" serde_json = "1.0.114" tokio = { version = "1.36", features = ["full"] } futures = "0.3.30" ctrlc = "3.4" [[example]] name = "ping_pong" path = "examples/ping_pong.rs" bench = false