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

28 lines
677 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-10-29 17:02:03 +00:00
chrono = { version = "0.4", default-features = false }
2022-10-23 15:11:49 +00:00
diesel = { version = "2.0", features = [
2022-10-12 13:40:25 +00:00
"r2d2",
2022-10-11 18:39:10 +00:00
"sqlite",
"returning_clauses_for_sqlite_3_35",
"without-deprecated",
] }
2022-10-23 15:11:49 +00:00
hex = "0.4"
hmac = "0.12"
log = "0.4"
2022-10-09 13:53:35 +00:00
rocket = "0.5.0-rc.2"
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["tera"] }
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"
simplelog = "0.12"