38 lines
781 B
TOML
38 lines
781 B
TOML
[package]
|
|
name = "board_server"
|
|
version = "2.2.1"
|
|
edition = "2018"
|
|
license = "Zlib"
|
|
repository = "https://git.solow.xyz/cgit.cgi/Boarders/"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "3.3.2"
|
|
actix-files = "0.5.0"
|
|
toml = "0.5"
|
|
serde = "1.0.125"
|
|
serde_json = "1.0"
|
|
bcrypt-bsd = "0.1.3"
|
|
rand = "0.8.3"
|
|
console = "0.14.1"
|
|
colored = "2.0.0"
|
|
tokio = {version = "1.7.1", features=["net", "rt-multi-thread", "sync", "macros"]}
|
|
futures = "0.3.15"
|
|
handlebars = "4.0.1"
|
|
maplit = "1.0.2"
|
|
log = "0.4.14"
|
|
simple_logger = "1.11.0"
|
|
chrono = "0.4.19"
|
|
ammonia = "3.1.2"
|
|
pulldown-cmark = "0.8.0"
|
|
|
|
[lib]
|
|
name = "boarders"
|
|
path = "src/lib/mod.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|
|
harness = false
|
|
edition = "2018"
|