33 lines
895 B
TOML
33 lines
895 B
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.39.2", features = ["full"] }
|
|
tokio-tungstenite = "0.23.1"
|
|
tokio-rustls = "0.26.0"
|
|
tokio-util = { version = "0.7.11", features = ["compat"] }
|
|
hyper-tungstenite = "0.14.0"
|
|
rustls = "0.23.5"
|
|
rustls-pemfile = "2.1.2"
|
|
webpki-roots = "0.26"
|
|
opaque-ke = "2.0.0"
|
|
hyper = { version = "1.4.1", features = ["full"] }
|
|
hyper-util = { version = "0.1.7", features = ["tokio"] }
|
|
http-body-util = "0.1.2"
|
|
futures = "0.3.30"
|
|
rust-argon2 = "2.1.0"
|
|
ring = "0.17.8"
|
|
const_format = "0.2.32"
|
|
markdown = "0.3.0"
|
|
usvg = "0.44.0"
|
|
regex = "1.11.0"
|
|
|
|
game = { path = "../game" }
|
|
|
|
bus = { git = "https://git.tsukiyo.org/Utility/bus", branch = "tokio" }
|
|
sparse = { git = "https://git.tsukiyo.org/Utility/sparse" }
|
|
trie = { git = "https://git.tsukiyo.org/Utility/trie" }
|
|
pool = { git = "https://git.tsukiyo.org/Utility/pool" }
|