32 lines
846 B
TOML
32 lines
846 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"
|
|
rustls = "0.20"
|
|
rustls-pemfile = "1.0"
|
|
tokio-rustls = "0.23"
|
|
futures-util = "0.3"
|
|
async-stream = "0.3"
|
|
hyper-tungstenite = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = "0.4"
|
|
tokio-postgres = { version = "0.7", features = ["with-uuid-1"] }
|
|
bb8 = "0.8"
|
|
bb8-postgres = "0.8"
|
|
ansi_term = "0.12"
|
|
rust-crypto = "^0.2"
|
|
base64 = "0.13"
|
|
base64-url = "1.4"
|
|
rand = "0.8"
|
|
uuid = { version = "1.1", features = ["v4", "serde", "fast-rng"] }
|