
add: config "no_track" file list option add: rainbeam-shared -> tetratto-shared add: l10n
27 lines
820 B
TOML
27 lines
820 B
TOML
[package]
|
|
name = "tetratto"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
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"
|
|
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.1", features = ["macros", "rt-multi-thread"] }
|
|
axum-extra = { version = "0.10.0", features = ["cookie", "multipart"] }
|
|
tetratto-shared = { path = "../shared" }
|
|
tetratto-core = { path = "../core", default-features = false }
|
|
tetratto-l10n = { path = "../l10n" }
|
|
|
|
image = "0.25.5"
|
|
reqwest = "0.12.15"
|
|
regex = "1.11.1"
|