1
0
Fork 0
mirror of https://codeberg.org/Mo8it/git-webhook-client synced 2024-10-18 07:22:39 +00:00
git-webhook-client/Cargo.toml

33 lines
966 B
TOML
Raw Normal View History

2022-10-09 13:53:35 +00:00
[package]
2022-10-10 11:52:42 +00:00
name = "git-webhook-client"
2022-10-23 15:11:49 +00:00
version = "0.2.0"
2022-10-09 13:53:35 +00:00
authors = ["Mo Bitar <mo8it@proton.me>"]
edition = "2021"
readme = "README.adoc"
2022-10-23 15:11:49 +00:00
repository = "https://codeberg.org/Mo8it/git-webhook-client"
license-file = "LICENSE.txt"
2022-10-09 13:53:35 +00:00
[dependencies]
2022-10-23 15:11:49 +00:00
anyhow = "1.0"
2022-11-12 12:04:04 +00:00
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",
2022-10-11 18:39:10 +00:00
] }
2022-11-12 12:04:04 +00:00
axum-extra = { version = "0.3", features = ["spa"] }
chrono = { version = "0.4", default-features = false }
2022-10-23 15:11:49 +00:00
hex = "0.4"
hmac = "0.12"
2022-11-12 12:04:04 +00:00
lettre = "0.10"
2022-10-10 11:52:42 +00:00
serde = { version = "1.0", features = ["derive"] }
2022-10-23 15:11:49 +00:00
serde_json = "1.0"
sha2 = "0.10"
2022-11-12 12:04:04 +00:00
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"