evie/server/Cargo.toml

56 lines
1.1 KiB
TOML
Raw Normal View History

2024-12-14 15:37:35 -05:00
[package]
name = "server"
version = "0.1.0"
edition = "2021"
2025-01-06 20:15:24 -05:00
[[bin]]
name = "evie"
path = "./src/main.rs"
2024-12-14 15:37:35 -05:00
[dependencies]
blogdb = { path = "../blogdb/" }
anyhow = "1.0.89"
argon2 = "0.5.3"
axum = { version = "0.7.7", features = ["macros", "multipart"] }
axum-extra = { version = "0.9.4", features = [
"cookie",
"cookie-private",
"form",
"multipart",
"query",
] }
serde = { version = "1.0.210", features = ["derive"] }
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio", "macros"] }
tokio = { version = "1.40.0", features = ["full"] }
tower-http = { version = "0.6.1", features = [
"cors",
"fs",
"limit",
"normalize-path",
"trace",
] }
tracing = "0.1.40"
futures = "0.3.31"
tower = "0.5.1"
http-body = "1.0.1"
lol_html = "2.0.0"
tokio-util = { version = "0.7.12", features = ["io"] }
glob = "0.3.1"
mime_guess = "2.0.5"
serde_json = "1.0.132"
tantivy = "0.22.0"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"serde",
"serde_json",
"std",
] }
phf = "0.11.2"
[build-dependencies]
dotenvy = "0.15.7"
glob = "0.3.1"
phf = "0.11.2"
phf_codegen = "0.11.2"
constcat = "0.5.1"