webcomment/Cargo.toml

34 lines
1.2 KiB
TOML
Raw Normal View History

2022-10-15 13:32:57 +00:00
[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]
2022-10-15 15:32:35 +00:00
argon2 = "0.4.1"
2022-10-25 16:22:49 +00:00
base64 = "0.13.1"
2022-12-04 09:12:34 +00:00
clap = { version = "4.0.29", default-features = false, features = ["derive", "error-context", "help", "std", "usage"] }
2022-10-15 21:48:06 +00:00
crossbeam-channel = "0.5.6"
2022-10-15 13:32:57 +00:00
directories = "4.0.1"
2022-12-04 09:12:34 +00:00
fluent-bundle = "0.15.2"
fluent-langneg = "0.13.0"
intl-memoizer = "0.5.1"
2022-10-15 13:32:57 +00:00
log = "0.4.17"
2022-10-25 16:22:49 +00:00
matrix-sdk = { version = "0.6.2", default-features = false, features = ["rustls-tls"] }
2022-10-15 13:32:57 +00:00
rand = "0.8.5"
2022-10-15 15:32:35 +00:00
rand_core = { version = "0.6.4", features = ["std"] }
2022-12-04 09:12:34 +00:00
rpassword = "7.2.0"
serde = { version = "1.0.148", features = ["derive", "rc"] }
2022-10-15 13:32:57 +00:00
sha2 = "0.10.6"
sled = "0.34.7"
2022-10-29 09:03:37 +00:00
static-rc = "0.6.1"
2022-10-15 13:32:57 +00:00
tera = { version = "1.17.1", features = ["builtins", "date-locale"] }
tide = { version = "0.16.0", default-features = false, features = ["h1-server", "cookies", "logger"] }
2022-12-04 09:12:34 +00:00
tokio = { version = "1.22.0", features = ["macros", "rt-multi-thread"] }
2022-10-25 16:22:49 +00:00
toml_edit = { version = "0.15.0", features = ["easy"] }
2022-10-15 13:32:57 +00:00
typed-sled = "0.2.0"
2022-12-04 09:12:34 +00:00
unic-langid = { version = "0.9.1", features = ["macros"] }