
Authorization is required for implementation So is a proper messaging model to make implementation clean and scalable For now this serves as a good starting point for the rest of this project
15 lines
402 B
TOML
15 lines
402 B
TOML
[package]
|
|
name = "rtc-server"
|
|
version = "0.1.0"
|
|
authors = ["shockrah <alejandros714@protonmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
tokio = { version = "1", default-features = false, features = ["rt", "rt-multi-thread", "net", "macros"] }
|
|
tokio-tungstenite = "0.14.0"
|
|
|
|
clap = "2.33.3"
|