finga
65430e65b7
In order to keep things together the code was restructured. Some small improvements such as clippy warnings and the validation of a hook in regards of the ip filter.
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "webhookey"
|
|
version = "0.1.0"
|
|
authors = ["finga <webhookey@onders.org>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later"
|
|
readme = "README.md"
|
|
description = "Trigger scripts via http(s) requests"
|
|
|
|
[features]
|
|
tls = ["rocket/tls"]
|
|
|
|
[dependencies]
|
|
rocket = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.8"
|
|
regex = "1.4"
|
|
dirs = "3.0"
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.8"
|
|
nom = "6"
|
|
hmac = "0.10"
|
|
sha2 = "0.9"
|
|
hex = "0.4"
|
|
ipnet = { version = "2.3", features = ["serde"] }
|
|
thiserror = "1.0"
|
|
run_script = "0.7"
|
|
clap = "3.0.0-beta.2"
|
|
|
|
[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."
|
|
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"],
|
|
]
|
|
conf-files = ["/etc/webhookey/config.yml"]
|