2025-03-22 22:17:47 -04:00
|
|
|
[package]
|
|
|
|
name = "tetratto"
|
2025-04-14 17:21:52 -04:00
|
|
|
version = "1.0.5"
|
2025-03-22 22:17:47 -04:00
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
[features]
|
2025-03-23 12:31:48 -04:00
|
|
|
postgres = ["tetratto-core/postgres"]
|
|
|
|
sqlite = ["tetratto-core/sqlite"]
|
2025-04-03 13:09:50 -04:00
|
|
|
redis = ["tetratto-core/redis"]
|
|
|
|
default = ["sqlite", "redis"]
|
2025-03-22 22:17:47 -04:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pathbufd = "0.1.4"
|
|
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
|
|
tera = "1.20.0"
|
|
|
|
tracing = "0.1.41"
|
|
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
|
|
tower-http = { version = "0.6.2", features = ["trace", "fs"] }
|
2025-04-04 21:42:08 -04:00
|
|
|
axum = { version = "0.8.3", features = ["macros"] }
|
2025-04-08 02:08:23 +00:00
|
|
|
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
|
2025-04-04 21:42:08 -04:00
|
|
|
axum-extra = { version = "0.10.1", features = ["cookie", "multipart"] }
|
2025-04-10 18:16:52 -04:00
|
|
|
ammonia = "4.0.0"
|
2025-03-23 12:31:48 -04:00
|
|
|
tetratto-shared = { path = "../shared" }
|
2025-04-01 13:26:33 -04:00
|
|
|
tetratto-core = { path = "../core", features = [
|
|
|
|
"redis",
|
|
|
|
], default-features = false }
|
2025-03-23 12:31:48 -04:00
|
|
|
tetratto-l10n = { path = "../l10n" }
|
|
|
|
|
2025-04-04 21:42:08 -04:00
|
|
|
image = "0.25.6"
|
2025-04-01 13:26:33 -04:00
|
|
|
reqwest = { version = "0.12.15", features = ["json", "stream"] }
|
2025-03-23 12:31:48 -04:00
|
|
|
regex = "1.11.1"
|
2025-03-29 22:27:57 -04:00
|
|
|
serde_json = "1.0.140"
|
2025-04-01 13:26:33 -04:00
|
|
|
mime_guess = "2.0.5"
|
2025-04-02 23:26:43 -04:00
|
|
|
cf-turnstile = "0.2.0"
|