29 lines
718 B
TOML
29 lines
718 B
TOML
[package]
|
|
name = "locutus-server"
|
|
version = "0.1.0"
|
|
authors = ["Lorenz Stechauner <lorenz.stechauner@necronda.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures = "0.3"
|
|
tokio-tls = "0.3.1"
|
|
rustls = "0.19.1"
|
|
tokio-rustls = "0.22.0"
|
|
futures-util = "0.3.15"
|
|
async-stream = "0.3.2"
|
|
hyper-tungstenite = "0.3.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.64"
|
|
chrono = "0.4"
|
|
bb8 = "0.7.0"
|
|
bb8-postgres = "0.7.0"
|
|
ansi_term = "0.12"
|
|
rust-crypto = "^0.2"
|
|
base64 = "0.13.0"
|
|
base64-url = "1.4.10"
|
|
rand = "0.8.3"
|