2021-02-02 11:05:50 +01:00
[ package ]
name = "webhookey"
2021-12-09 13:43:46 +01:00
version = "0.1.6"
2021-04-17 00:08:11 +02:00
authors = [ "finga <webhookey@onders.org>" ]
2021-11-06 12:06:10 +01:00
edition = "2021"
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-11-03 13:09:44 +01:00
rocket = "0.5.0-rc.1"
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"
2021-11-18 17:47:13 +01:00
serde_regex = "1.1"
2021-11-06 12:06:10 +01:00
regex = "1.5"
dirs = "4.0"
2021-03-03 15:24:46 +01:00
anyhow = "1.0"
2021-03-03 16:14:54 +01:00
log = "0.4"
2021-11-06 12:06:10 +01:00
env_logger = "0.9"
hmac = "0.11"
2021-03-28 03:50:52 +02:00
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-11-06 12:06:10 +01:00
run_script = "0.9"
2021-12-14 17:00:55 +01:00
clap = { version = "3.0.0-rc.4" , features = [ "derive" ] }
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" ] ,
2021-10-17 08:53:31 +02:00
[ "README.md" , "usr/share/doc/webhookey/README" , "644" ] ,
2021-11-26 11:59:47 +01:00
[ "webhookey.1" , "usr/share/man/man1/" , "644" ] ,
2021-04-17 00:08:11 +02:00
[ "debian/service" , "lib/systemd/system/webhookey.service" , "644" ] ,
]
2021-04-22 13:19:28 +02:00
conf-files = [ "/etc/webhookey/config.yml" ]