28 lines
1 KiB
TOML
28 lines
1 KiB
TOML
[package]
|
|
name = "webcomment"
|
|
version = "0.1.0"
|
|
authors = ["tuxmain <tuxmain@zettascript.org>"]
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://git.txmn.tk/tuxmain/webcomment"
|
|
description = "Templatable comment web server"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
argon2 = "0.4.1"
|
|
base64 = "0.13.0"
|
|
clap = { version = "4.0.17", default-features = false, features = ["derive", "std"] }
|
|
crossbeam-channel = "0.5.6"
|
|
directories = "4.0.1"
|
|
log = "0.4.17"
|
|
matrix-sdk = { version = "0.6.0", default-features = false, features = ["rustls-tls"] }
|
|
rand = "0.8.5"
|
|
rand_core = { version = "0.6.4", features = ["std"] }
|
|
rpassword = "7.1.0"
|
|
serde = { version = "1.0.145", features = ["derive", "rc"] }
|
|
sha2 = "0.10.6"
|
|
sled = "0.34.7"
|
|
tera = { version = "1.17.1", features = ["builtins", "date-locale"] }
|
|
tide = { version = "0.16.0", default-features = false, features = ["h1-server", "cookies", "logger"] }
|
|
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }
|
|
toml_edit = { version = "0.14.4", features = ["easy"] }
|
|
typed-sled = "0.2.0"
|