dip/Cargo.toml

34 lines
657 B
TOML
Raw Permalink 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."
2020-11-03 01:56:57 +00:00
version = "0.2.0"
authors = ["Michael Zhang <mail@mzhang.io>"]
edition = "2018"
[features]
github = []
default = ["github"]
2018-08-13 05:57:56 +00:00
[dependencies]
2020-11-03 01:56:57 +00:00
anyhow = "1.0.34"
futures = "0.3.7"
generic-array = "0.14.4"
hmac = "0.10.1"
hyper = { version = "0.13", features = ["stream"] }
lazy_static = "1.4.0"
mktemp = "0.4.0"
notify = "4.0.15"
owning_ref = "0.4.1"
parking_lot = "0.11.0"
regex = "1.4.2"
secstr = "0.4.0"
serde = "1.0.117"
serde_derive = "1.0.117"
serde_json = "1.0.59"
sha-1 = "0.9.1"
structopt = "0.3.20"
tokio = { version = "0.3", features = ["full"] }
toml = "0.5.7"
walkdir = "2.3.1"
2018-08-16 01:31:15 +00:00