2024-12-28 09:36:13 +00:00
|
|
|
[package]
|
|
|
|
name = "calathea"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2025-01-10 12:22:33 +00:00
|
|
|
[[bin]]
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "calathea"
|
|
|
|
|
2024-12-28 09:36:13 +00:00
|
|
|
[dependencies]
|
2025-01-11 20:37:37 +00:00
|
|
|
argon2 = "0.5.3"
|
2025-01-16 20:06:06 +00:00
|
|
|
axum = { version = "0.8.0", features = ["macros", "multipart"] }
|
2025-01-11 16:35:20 +00:00
|
|
|
axum-extra = { version = "0.10.0", features = ["cookie"] }
|
2025-01-07 18:07:23 +00:00
|
|
|
chrono = { version = "0.4.39", features = ["serde"] }
|
2025-01-12 08:50:46 +00:00
|
|
|
clap = { version = "4.5.26", features = ["derive", "env"] }
|
2025-01-16 12:01:27 +00:00
|
|
|
diesel = { version = "2.2.6", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "r2d2", "chrono"] }
|
2025-01-16 14:00:26 +00:00
|
|
|
diesel_migrations = { version = "2.2.0", features = ["sqlite"] }
|
2025-01-24 19:48:28 +00:00
|
|
|
# Forces diesel to include a bundled version of Sqlite
|
|
|
|
libsqlite3-sys = {version = ">=0.17.2, <0.31.0", features = ["bundled"]}
|
2025-01-16 21:19:22 +00:00
|
|
|
futures = "0.3.31"
|
2025-01-17 10:57:36 +00:00
|
|
|
image = { version = "0.25.5", default-features = false, features = ["gif", "jpeg", "png"] }
|
2025-01-17 12:45:28 +00:00
|
|
|
mime = "0.3.17"
|
2025-01-12 07:48:24 +00:00
|
|
|
rand = "0.8.5"
|
2024-12-28 10:44:56 +00:00
|
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
|
|
tera = "1.20.0"
|
2024-12-28 09:36:13 +00:00
|
|
|
tokio = { version = "1.42.0", features = ["full"] }
|
2025-01-16 21:19:22 +00:00
|
|
|
tokio-util = { version = "0.7.13", features = ["io"] }
|
2025-01-17 12:45:28 +00:00
|
|
|
tower = { version = "0.5.2", features = ["util"] }
|
2025-01-10 14:45:46 +00:00
|
|
|
tower-http = { version = "0.6.2", features = ["compression-br", "compression-gzip", "set-header", "fs"] }
|
2024-12-28 10:44:56 +00:00
|
|
|
tracing = "0.1.41"
|
|
|
|
tracing-subscriber = "0.3.19"
|
2025-01-25 10:08:53 +00:00
|
|
|
serde_urlencoded = "0.7.1"
|
2025-01-12 08:50:46 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = true
|