add: icon resolver

add: config "no_track" file list option
add: rainbeam-shared -> tetratto-shared
add: l10n
This commit is contained in:
trisua 2025-03-23 12:31:48 -04:00
parent b6fe2fba37
commit d2ca9e23d3
40 changed files with 1107 additions and 583 deletions
crates/app

View file

@ -4,23 +4,24 @@ version = "0.1.0"
edition = "2024"
[features]
postgres = ["tetratto_core/postgres"]
sqlite = ["tetratto_core/sqlite"]
postgres = ["tetratto-core/postgres"]
sqlite = ["tetratto-core/sqlite"]
default = ["sqlite"]
[dependencies]
pathbufd = "0.1.4"
serde = { version = "1.0.219", features = ["derive"] }
tera = "1.20.0"
toml = "0.8.20"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tower-http = { version = "0.6.2", features = ["trace", "fs"] }
axum = { version = "0.8.1", features = ["macros"] }
tokio = { version = "1.44.0", features = ["macros", "rt-multi-thread"] }
rainbeam-shared = "1.0.1"
serde_json = "1.0.140"
tokio = { version = "1.44.1", features = ["macros", "rt-multi-thread"] }
axum-extra = { version = "0.10.0", features = ["cookie", "multipart"] }
tetratto_core = { path = "../tetratto_core", default-features = false }
tetratto-shared = { path = "../shared" }
tetratto-core = { path = "../core", default-features = false }
tetratto-l10n = { path = "../l10n" }
image = "0.25.5"
mime_guess = "2.0.5"
reqwest = "0.12.15"
regex = "1.11.1"