2025-03-22 22:17:47 -04:00
|
|
|
[package]
|
|
|
|
name = "tetratto"
|
2025-06-19 15:48:04 -04:00
|
|
|
version = "9.0.0"
|
2025-03-22 22:17:47 -04:00
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
[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"] }
|
2025-06-15 23:35:19 -04:00
|
|
|
tower-http = { version = "0.6.6", features = ["trace", "fs", "catch-panic", "set-header"] }
|
2025-05-07 21:59:10 -04:00
|
|
|
axum = { version = "0.8.4", features = ["macros", "ws"] }
|
2025-05-30 21:22:53 -04:00
|
|
|
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
|
2025-04-04 21:42:08 -04:00
|
|
|
axum-extra = { version = "0.10.1", features = ["cookie", "multipart"] }
|
2025-04-22 19:46:08 -04:00
|
|
|
ammonia = "4.1.0"
|
2025-03-23 12:31:48 -04:00
|
|
|
tetratto-shared = { path = "../shared" }
|
2025-06-15 12:19:58 -04:00
|
|
|
tetratto-core = { path = "../core" }
|
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-06-15 16:09:02 -04:00
|
|
|
reqwest = { version = "0.12.20", 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"
|
2025-05-18 21:43:02 -04:00
|
|
|
contrasted = "0.1.3"
|
2025-04-27 23:11:37 -04:00
|
|
|
futures-util = "0.3.31"
|
2025-05-05 19:38:01 -04:00
|
|
|
async-stripe = { version = "0.41.0", features = [
|
|
|
|
"events",
|
|
|
|
"checkout",
|
|
|
|
"webhook-events",
|
|
|
|
"billing",
|
|
|
|
"runtime-tokio-hyper",
|
|
|
|
] }
|
2025-05-05 23:44:10 -04:00
|
|
|
emojis = "0.6.4"
|
2025-05-17 11:28:58 -04:00
|
|
|
webp = "0.3.0"
|
2025-05-31 13:07:34 -04:00
|
|
|
bberry = "0.2.0"
|