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

30 lines
1.2 KiB
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-12-05 21:28:43 +00:00
version = "0.3.0"
2022-10-09 13:53:35 +00:00
authors = ["Mo Bitar <mo8it@proton.me>"]
edition = "2021"
2022-12-05 21:28:43 +00:00
readme = "README.md"
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" }
2022-12-05 22:44:48 +00:00
axum = { version = "0.6", default-features = false, features = ["http1", "tokio", "macros", "query"] }
2022-12-05 21:28:43 +00:00
axum-extra = { version = "0.4", features = ["spa"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
diesel = { version = "2.0", features = ["r2d2", "sqlite", "returning_clauses_for_sqlite_3_35", "without-deprecated"] }
2022-12-24 19:29:44 +00:00
diesel_migrations = { version = "2.0.0", features = ["sqlite"] }
2022-10-23 15:11:49 +00:00
hex = "0.4"
hmac = "0.12"
2022-12-30 13:54:56 +00:00
lettre = { version = "0.10", default-features = false, features = ["smtp-transport", "hostname", "tokio1-rustls-tls", "pool", "builder"] }
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"
2022-12-05 21:28:43 +00:00
serde_yaml = "0.9"
2022-10-23 15:11:49 +00:00
sha2 = "0.10"
2023-01-12 20:05:17 +00:00
tokio = { version = "1.24", default-features = false, features = ["rt-multi-thread", "macros"] }
2022-11-12 12:04:04 +00:00
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"