1[package] 2name = "webrtc-data" 3version = "0.6.0" 4authors = ["Rain Liu <[email protected]>"] 5edition = "2018" 6description = "A pure Rust implementation of WebRTC DataChannel API" 7license = "MIT/Apache-2.0" 8documentation = "https://docs.rs/webrtc-data" 9homepage = "https://webrtc.rs" 10repository = "https://github.com/webrtc-rs/data" 11rust-version = "1.60.0" 12 13# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 14 15[dependencies] 16util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] } 17sctp = { version = "0.7.0", path = "../sctp", package = "webrtc-sctp" } 18 19tokio = { version = "1.19", features = ["full"] } 20bytes = "1" 21derive_builder = "0.11.2" 22log = "0.4.16" 23thiserror = "1.0" 24 25[dev-dependencies] 26tokio-test = "0.4.0" # must match the min version of the `tokio` crate above 27env_logger = "0.9.0" 28chrono = "0.4.19" 29