add: forums ui

This commit is contained in:
trisua 2025-08-04 12:12:04 -04:00
parent 2be87c397d
commit 9ec52abfe4
24 changed files with 770 additions and 64 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "tetratto-core"
description = "The core behind Tetratto"
version = "13.0.0"
version = "14.0.0"
edition = "2024"
authors.workspace = true
repository.workspace = true
@ -9,7 +9,13 @@ license.workspace = true
homepage.workspace = true
[features]
database = ["dep:oiseau", "dep:base64", "dep:base16ct", "dep:async-recursion", "dep:md-5"]
database = [
"dep:oiseau",
"dep:base64",
"dep:base16ct",
"dep:async-recursion",
"dep:md-5",
]
types = ["dep:totp-rs", "dep:paste", "dep:bitflags"]
sdk = ["types", "dep:reqwest"]
default = ["database", "types", "sdk"]
@ -21,8 +27,14 @@ toml = "0.9.4"
tetratto-shared = { version = "12.0.6", path = "../shared" }
tetratto-l10n = { version = "12.0.0", path = "../l10n" }
serde_json = "1.0.142"
totp-rs = { version = "5.7.0", features = ["qr", "gen_secret"], optional = true }
reqwest = { version = "0.12.22", features = ["json", "multipart"], optional = true }
totp-rs = { version = "5.7.0", features = [
"qr",
"gen_secret",
], optional = true }
reqwest = { version = "0.12.22", features = [
"json",
"multipart",
], optional = true }
bitflags = { version = "2.9.1", optional = true }
async-recursion = { version = "1.1.1", optional = true }
md-5 = { version = "0.10.6", optional = true }