49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[package]
|
|
name = "tetratto"
|
|
version = "2.2.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
postgres = ["tetratto-core/postgres"]
|
|
sqlite = ["tetratto-core/sqlite"]
|
|
redis = ["tetratto-core/redis", "dep:redis"]
|
|
default = ["sqlite", "redis"]
|
|
|
|
[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.3", features = ["trace", "fs", "catch-panic"] }
|
|
axum = { version = "0.8.4", features = ["macros", "ws"] }
|
|
tokio = { version = "1.45.0", features = ["macros", "rt-multi-thread"] }
|
|
axum-extra = { version = "0.10.1", features = ["cookie", "multipart"] }
|
|
ammonia = "4.1.0"
|
|
tetratto-shared = { path = "../shared" }
|
|
tetratto-core = { path = "../core", features = [
|
|
"redis",
|
|
], default-features = false }
|
|
tetratto-l10n = { path = "../l10n" }
|
|
|
|
image = "0.25.6"
|
|
reqwest = { version = "0.12.15", features = ["json", "stream"] }
|
|
regex = "1.11.1"
|
|
serde_json = "1.0.140"
|
|
mime_guess = "2.0.5"
|
|
cf-turnstile = "0.2.0"
|
|
contrasted = "0.1.2"
|
|
futures-util = "0.3.31"
|
|
|
|
redis = { version = "0.30.0", features = [
|
|
"aio",
|
|
"tokio-comp",
|
|
], optional = true }
|
|
async-stripe = { version = "0.41.0", features = [
|
|
"events",
|
|
"checkout",
|
|
"webhook-events",
|
|
"billing",
|
|
"runtime-tokio-hyper",
|
|
] }
|
|
emojis = "0.6.4"
|