1
0
Fork 0
mirror of https://codeberg.org/Mo8it/git-webhook-client synced 2024-10-18 07:22:39 +00:00
This commit is contained in:
Mo 2022-11-12 13:04:04 +01:00
parent 61bcd61399
commit 1bb2313fd5

View file

@ -9,19 +9,24 @@ license-file = "LICENSE.txt"
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"
chrono = { version = "0.4", default-features = false } askama = { git = "https://github.com/djc/askama.git" }
diesel = { version = "2.0", features = [ askama_axum = { git = "https://github.com/djc/askama.git", package = "askama_axum" }
"r2d2", axum = { version = "0.5", default-features = false, features = [
"sqlite", "http1",
"returning_clauses_for_sqlite_3_35", "query",
"without-deprecated", "form",
] } ] }
axum-extra = { version = "0.3", features = ["spa"] }
chrono = { version = "0.4", default-features = false }
hex = "0.4" hex = "0.4"
hmac = "0.12" hmac = "0.12"
log = "0.4" lettre = "0.10"
rocket = "0.5.0-rc.2"
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["tera"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
sha2 = "0.10" 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"