feat: Implement basic markdown rendering for post content and user-based visibility for private posts.

This commit is contained in:
2026-03-03 18:19:42 +00:00
parent 82f7e006cf
commit 347ac8af55
7 changed files with 247 additions and 33 deletions

13
Cargo.lock generated
View File

@@ -361,6 +361,7 @@ dependencies = [
"image",
"lofty",
"rand 0.10.0",
"regex",
"serde",
"sqlx",
"tokio",
@@ -2062,6 +2063,18 @@ dependencies = [
"bitflags",
]
[[package]]
name = "regex"
version = "1.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.4.14"