retina/examples/webrtc-proxy/Cargo.toml
Scott Lamb 692bfaa04e WebRTC proxy example (#60)
This is a very basic version, as a starting point.
2022-07-15 16:12:26 -07:00

22 lines
568 B
TOML

[package]
name = "webrtc-proxy"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.41"
base64 = "0.13.0"
futures = "0.3.14"
log = "0.4.8"
mylog = { git = "https://github.com/scottlamb/mylog" }
retina = { path = "../../" }
rustyline = { version = "9.1.2", default-features = false }
serde = "1.0.139"
serde_json = "1.0.82"
structopt = "0.3.21"
tokio = { version = "1.5.0", features = ["macros", "rt-multi-thread", "signal"] }
url = "2.2.1"
webrtc = "0.4.0"