diff --git a/Cargo.toml b/Cargo.toml index 886ad5c..1b0b801 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,19 +9,24 @@ license-file = "LICENSE.txt" [dependencies] anyhow = "1.0" -chrono = { version = "0.4", default-features = false } -diesel = { version = "2.0", features = [ - "r2d2", - "sqlite", - "returning_clauses_for_sqlite_3_35", - "without-deprecated", +askama = { git = "https://github.com/djc/askama.git" } +askama_axum = { git = "https://github.com/djc/askama.git", package = "askama_axum" } +axum = { version = "0.5", default-features = false, features = [ + "http1", + "query", + "form", ] } +axum-extra = { version = "0.3", features = ["spa"] } +chrono = { version = "0.4", default-features = false } hex = "0.4" hmac = "0.12" -log = "0.4" -rocket = "0.5.0-rc.2" -rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["tera"] } +lettre = "0.10" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sha2 = "0.10" -simplelog = "0.12" +tokio = { version = "1.21", features = ["full"] } +tower = { version = "0.4", features = ["limit", "buffer"] } +tower-http = { version = "0.3", features = ["trace"] } +tracing = "0.1" +tracing-appender = "0.2" +tracing-subscriber = "0.3"