59 lines
1.6 KiB
TOML
59 lines
1.6 KiB
TOML
[package]
|
|
name = "recipes"
|
|
version = "0.9.0"
|
|
authors = ["Grégory Burri <greg.burri@gmail.com>"]
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
|
|
axum = { version = "0.8", features = ["macros"] }
|
|
axum-extra = { version = "0.10", features = ["cookie", "query"] }
|
|
tokio = { version = "1", features = ["signal", "rt-multi-thread"] }
|
|
tower = { version = "0.5", features = ["util", "limit", "buffer"] }
|
|
tower-http = { version = "0.6", features = ["fs", "trace"] }
|
|
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tracing-appender = "0.2"
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Rust object notation, to load configuration files.
|
|
ron = "0.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
itertools = "0.14"
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio", "chrono"] }
|
|
|
|
async-compression = { version = "0.4", features = ["tokio", "gzip"] }
|
|
|
|
askama = "0.14"
|
|
comrak = "0.39"
|
|
|
|
argon2 = { version = "0.5", features = ["default", "std"] }
|
|
rand_core = { version = "0.9", features = ["std"] }
|
|
rand = "0.9"
|
|
strum = { version = "0.27", features = ["derive"] }
|
|
async-trait = "0.1"
|
|
|
|
lettre = { version = "0.11", default-features = false, features = [
|
|
"smtp-transport",
|
|
"pool",
|
|
"hostname",
|
|
"builder",
|
|
"tokio1",
|
|
"tokio1-rustls-tls",
|
|
] }
|
|
|
|
thiserror = "2"
|
|
|
|
# Integration tests dependencies.
|
|
[dev-dependencies]
|
|
axum-test = "17"
|
|
cookie = "0.18"
|
|
scraper = "0.23"
|
|
mockall = "0.13"
|
|
sscanf = "0.4"
|