feat: install gitea webhook security deps and load gitea webhook module
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
745b1eb0d5
commit
0c6199494b
3 changed files with 7 additions and 0 deletions
3
Cargo.lock
generated
3
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
*/
|
||||
pub mod account;
|
||||
pub mod auth;
|
||||
pub mod gitea;
|
||||
pub mod pages;
|
||||
|
||||
#[cfg(test)]
|
||||
|
|
Loading…
Reference in a new issue