dip/Cargo.toml

29 lines
486 B
TOML
Raw Normal View History

2018-08-13 05:57:56 +00:00
[package]
name = "dip"
2018-08-15 22:24:36 +00:00
description = "Configurable webhook server."
2018-09-01 22:14:59 +00:00
version = "0.1.4"
2018-08-13 05:57:56 +00:00
authors = ["Michael Zhang <failed.down@gmail.com>"]
[dependencies]
failure = "0.1"
futures = "0.1"
2018-09-01 05:04:04 +00:00
generic-array = "0.9"
hmac = "0.6"
2018-08-13 05:57:56 +00:00
hyper = "0.12"
mktemp = "0.3"
2018-08-13 05:57:56 +00:00
lazy_static = "1.1"
notify = "4.0"
2018-08-17 02:04:52 +00:00
owning_ref = "0.3"
2018-08-13 05:57:56 +00:00
regex = "1.0"
2018-09-01 05:04:04 +00:00
secstr = "0.3"
2018-08-15 21:26:05 +00:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2018-09-01 05:04:04 +00:00
sha-1 = "0.7"
2018-08-13 05:57:56 +00:00
structopt = "0.2"
2018-08-17 01:06:35 +00:00
tokio = "0.1"
tokio-process = "0.2"
2018-08-13 06:34:49 +00:00
toml = "0.4"
2018-08-13 05:57:56 +00:00
walkdir = "2.2"
2018-08-16 01:31:15 +00:00