
Made the error when you try to post without being logged in more informative. It used to be very vague and confusing. Added build number to home page and backend banner. It pulls the version number from cargo at compile time.
17 lines
327 B
TOML
17 lines
327 B
TOML
[package]
|
|
name = "board_server"
|
|
version = "1.0.1"
|
|
edition = "2018"
|
|
|
|
# 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"
|
|
colored = "2.0.0"
|