dip/Cargo.toml

28 lines
448 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-08-13 05:57:56 +00:00
version = "0.1.0"
authors = ["Michael Zhang <failed.down@gmail.com>"]
2018-08-16 01:31:15 +00:00
[[example]]
name = "github"
[dev_dependencies]
generic-array = "0.9"
hmac = "0.6"
secstr = "0.3"
sha-1 = "0.7"
2018-08-15 22:51:52 +00:00
2018-08-13 05:57:56 +00:00
[dependencies]
failure = "0.1"
hyper = "0.12"
lazy_static = "1.1"
notify = "4.0"
regex = "1.0"
2018-08-15 21:26:05 +00:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2018-08-13 05:57:56 +00:00
structopt = "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