cargo: Order dependencies alphabetically
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
To improve readability of dependencies order them alphabetically.
This commit is contained in:
parent
f6ec8af944
commit
71153b28ec
1 changed files with 11 additions and 11 deletions
22
Cargo.toml
22
Cargo.toml
|
@ -11,23 +11,23 @@ description = "Trigger scripts via http(s) requests"
|
||||||
tls = ["rocket/tls"]
|
tls = ["rocket/tls"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
anyhow = "1.0"
|
||||||
|
clap = { version = "3.0", features = ["derive"] }
|
||||||
|
dirs = "4.0"
|
||||||
|
env_logger = "0.9"
|
||||||
|
hex = "0.4"
|
||||||
|
hmac = "0.11"
|
||||||
|
ipnet = { version = "2.3", features = ["serde"] }
|
||||||
|
log = "0.4"
|
||||||
|
regex = "1.5"
|
||||||
rocket = "0.5.0-rc.1"
|
rocket = "0.5.0-rc.1"
|
||||||
|
run_script = "0.9"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
serde_yaml = "0.8"
|
|
||||||
serde_regex = "1.1"
|
serde_regex = "1.1"
|
||||||
regex = "1.5"
|
serde_yaml = "0.8"
|
||||||
dirs = "4.0"
|
|
||||||
anyhow = "1.0"
|
|
||||||
log = "0.4"
|
|
||||||
env_logger = "0.9"
|
|
||||||
hmac = "0.11"
|
|
||||||
sha2 = "0.9"
|
sha2 = "0.9"
|
||||||
hex = "0.4"
|
|
||||||
ipnet = { version = "2.3", features = ["serde"] }
|
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
run_script = "0.9"
|
|
||||||
clap = { version = "3.0", features = ["derive"] }
|
|
||||||
|
|
||||||
[package.metadata.deb]
|
[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."
|
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."
|
||||||
|
|
Loading…
Reference in a new issue