2021-02-02 11:05:50 +01:00
[ package ]
name = "webhookey"
2021-06-02 03:35:43 +02:00
version = "0.1.0"
2021-04-17 00:08:11 +02:00
authors = [ "finga <webhookey@onders.org>" ]
2021-02-02 11:05:50 +01:00
edition = "2018"
2021-03-12 17:23:35 +01:00
license = "GPL-3.0-or-later"
2021-03-17 11:01:30 +01:00
readme = "README.md"
description = "Trigger scripts via http(s) requests"
2021-02-02 11:05:50 +01:00
2021-03-21 23:37:30 +01:00
[ features ]
tls = [ "rocket/tls" ]
2021-02-02 11:05:50 +01:00
[ dependencies ]
2021-03-21 23:37:30 +01:00
rocket = "0.4"
2021-02-02 11:05:50 +01:00
serde = { version = "1.0" , features = [ "derive" ] }
serde_json = "1.0"
2021-03-03 15:24:46 +01:00
serde_yaml = "0.8"
regex = "1.4"
dirs = "3.0"
anyhow = "1.0"
2021-03-03 16:14:54 +01:00
log = "0.4"
env_logger = "0.8"
2021-03-21 15:51:58 +01:00
nom = "6"
2021-03-28 03:50:52 +02:00
hmac = "0.10"
sha2 = "0.9"
hex = "0.4"
2021-04-02 00:25:39 +02:00
ipnet = { version = "2.3" , features = [ "serde" ] }
2021-04-03 01:10:50 +02:00
thiserror = "1.0"
2021-04-16 17:42:40 +02:00
run_script = "0.7"
2021-05-31 16:14:19 +02:00
clap = "3.0.0-beta.2"
2021-04-17 00:08:11 +02:00
[ package . metadata . deb ]
2021-05-29 00:50:48 +02:00
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."
2021-04-17 00:08:11 +02:00
maintainer-scripts = "debian/"
systemd-units = { enable = false }
assets = [
[ "config.yml" , "etc/webhookey/" , "644" ] ,
[ "target/release/webhookey" , "usr/bin/" , "755" ] ,
[ "README.md" , "usr/share/doc/cargo-deb/README" , "644" ] ,
[ "debian/service" , "lib/systemd/system/webhookey.service" , "644" ] ,
]
2021-04-22 13:19:28 +02:00
conf-files = [ "/etc/webhookey/config.yml" ]