1[package] 2name = "webrtc-data" 3version = "0.7.0" 4authors = ["Rain Liu <[email protected]>"] 5edition = "2021" 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.63.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.8.0", path = "../sctp", package = "webrtc-sctp" } 18 19tokio = { version = "1.19", features = ["full"] } 20bytes = "1" 21log = "0.4.16" 22thiserror = "1.0" 23 24[dev-dependencies] 25tokio-test = "0.4.0" # must match the min version of the `tokio` crate above 26env_logger = "0.9.0" 27chrono = "0.4.23" 28