27 lines
688 B
TOML
27 lines
688 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]
|
|
# Async infra stuff here
|
|
futures = "0.3"
|
|
tokio = { version = "1", default-features = false, features = ["rt", "rt-multi-thread", "net", "macros", "fs"] }
|
|
tokio-tungstenite = "0.14.0"
|
|
|
|
# Required for the private server interface
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
|
|
jsonwebtoken = "7"
|
|
|
|
# For caching mysql pools
|
|
lazy_static = "1.4.0"
|
|
|
|
# For serialization of data in events
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
clap = "2.33.3"
|