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", "derive_more",
"futures", "futures",
"git2", "git2",
"hex",
"hmac",
"lazy_static", "lazy_static",
"libconductor", "libconductor",
"libconfig", "libconfig",
@ -1464,6 +1466,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"serde_yaml", "serde_yaml",
"sha2",
"sqlx", "sqlx",
"tera", "tera",
"tokio", "tokio",

View File

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

View File

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