-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
42 lines (38 loc) · 981 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "trigger"
version = "1.1.2"
authors = ["Kay Lin <[email protected]>"]
description = "Yet another GitHub/GitLab Webhook listener"
homepage = "https://github.com/RedL0tus/trigger"
repository = "https://github.com/RedL0tus/trigger"
keywords = ["github", "gitlab", "ci", "webhook"]
categories = ["command-line-utilities", "web-programming::http-server"]
readme = "README.md"
edition = "2018"
license = "MIT"
[badges]
travis-ci = { repository = "RedL0tus/trigger", branch = "master" }
[dependencies]
log = "~0.4"
clap = { version = "~2.33", default-features = false, features = [] }
hyper = "~0.12"
yaml-rust = "~0.4"
run_script = "~0.2"
pretty_env_logger = "~0.3"
[dependencies.rifling]
version = "~0.4"
default-features = false
features = [
"hyper-support",
"logging",
"crypto-use-rustcrypto",
"content-type-urlencoded"
]
[profile.release]
lto = true
debug = false
panic = 'abort'
rpath = false
opt-level = 'z'
codegen-units = 1
debug-assertions = false