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]
|
[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"
|
||||||
|
|
Loading…
Reference in a new issue