mirror of
https://codeberg.org/Mo8it/git-webhook-client
synced 2024-11-21 11:06:32 +00:00
Add deps
This commit is contained in:
parent
61bcd61399
commit
1bb2313fd5
1 changed files with 15 additions and 10 deletions
25
Cargo.toml
25
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"
|
||||
|
|
Loading…
Reference in a new issue