Message format has been changed so that all text boxes will be the same width, rather than they change depending on name length. TL;DR: changed location of name tag You can now format your messages with cmark flavored markdown. There still may be rendering bugs, but I will fix them as they come. Messages are now properly sanitized with the ammonia package. Messages now have proper timestamps with help from chrono. Right now previous versions are not compatible with the new timestamp format. A patch will be introduced in the next couple of updates to remedy that issue. Did some housekeeping in `static/index.css`
37 lines
766 B
TOML
37 lines
766 B
TOML
[package]
|
|
name = "board_server"
|
|
version = "2.2.0"
|
|
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"
|
|
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"
|