feat: install gitea webhook security deps and load gitea webhook module
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Aravinth Manivannan 2022-12-28 04:39:13 +05:30
parent 745b1eb0d5
commit 0c6199494b
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
3 changed files with 7 additions and 0 deletions

3
Cargo.lock generated
View File

@ -1449,6 +1449,8 @@ dependencies = [
"derive_more",
"futures",
"git2",
"hex",
"hmac",
"lazy_static",
"libconductor",
"libconfig",
@ -1464,6 +1466,7 @@ dependencies = [
"serde",
"serde_json",
"serde_yaml",
"sha2",
"sqlx",
"tera",
"tokio",

View File

@ -53,6 +53,9 @@ toml = "0.5.9"
serde_yaml = "0.9.14"
uuid = { version = "1.2.2", features = ["serde"] }
reqwest = { version = "0.11.13", features = ["json"] }
sha2 = "0.10.6"
hmac = "0.12.1"
hex= "0.4.3"
[dependencies.cache-buster]
git = "https://github.com/realaravinth/cache-buster"

View File

@ -16,6 +16,7 @@
*/
pub mod account;
pub mod auth;
pub mod gitea;
pub mod pages;
#[cfg(test)]