Adapt to new versions of rocket and clap

Use clap `3.0.0-beta.5` and rocket `0.5.0-rc.1`.
This commit is contained in:
finga 2021-11-03 13:09:44 +01:00
parent 41d8efe8a8
commit 5a88fb892b
3 changed files with 1169 additions and 437 deletions

View file

@ -11,7 +11,7 @@ description = "Trigger scripts via http(s) requests"
tls = ["rocket/tls"]
[dependencies]
rocket = "0.4"
rocket = "0.5.0-rc.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
@ -27,7 +27,7 @@ hex = "0.4"
ipnet = { version = "2.3", features = ["serde"] }
thiserror = "1.0"
run_script = "0.7"
clap = "3.0.0-beta.4"
clap = "3.0.0-beta.5"
[package.metadata.deb]
extended-description = "Webhookey receives requests in form of a so called Webhook as for example sent by Gitea. Those requests are matched against configured filters, if a filter matches, values from the header and the body can be passed to scripts as parameters which are then executed subsequently."