[package] name = "ezrtc-server" version = "0.4.0" authors = ["LÅ‘rik Levente "] edition = "2021" license = "MIT" description = "Easy cross-platform WebRTC communication with data channels and a simple signaling server." repository = "https://github.com/levminer/ezrtc" keywords = ["webrtc", "datachannel", "peer-to-peer", "p2p"] categories = ["network-programming", "web-programming"] readme = "README.md" [dependencies] ezrtc = { path = "../client/rs", version = "0.5"} futures-util = "0.3.21" serde = { version = "1.0.130", features = ["derive"] } serde_json = "1.0.72" tokio = { version = "1.14.0", features = ["macros", "rt-multi-thread"] } tokio-stream = "0.1.8" simplelog = "0.12.0" log = "0.4.8" anyhow = "1" axum = { version = "0.7.5", features = ["ws", "macros", "json"] }