-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.08 KB
/
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]
authors = ["Maximilian Goisser <goisser94@gmail.com>"]
categories = ["web-programming", "development-tools", "api-bindings"]
description = "Dredd HTTP API testing integration for Rust"
documentation = "https://docs.rs/dredd-hooks"
exclude = ["test-suite/**/*"]
keywords = ["testing", "dredd"]
license = "MIT OR Apache-2.0"
name = "dredd-hooks"
repository = "https://github.com/hobofan/dredd-hooks-rust"
version = "0.3.0"
[[bin]]
name = "dredd-hooks-rust"
path = "src/bin/dredd-hooks-rust.rs"
required-features = ["binaries"]
[[bin]]
name = "cargo-dredd"
path = "src/bin/cargo-dredd.rs"
required-features = ["binaries"]
[dependencies]
bufstream = "0.1.3"
bytes = "0.4.4"
chan-signal = "0.3.0"
futures = "0.1.14"
serde = "1.0.0"
serde_derive = "1.0.0"
tokio-io = "0.1.2"
tokio-proto = "0.1.1"
tokio-service = "0.1.0"
cargo = { version = "0.20.0", optional = true }
cargo-edit = { version = "0.2.0", optional = true }
docopt = { version = "0.8.1", optional = true }
[dependencies.serde_json]
features = ["preserve_order"]
version = "1.0.0"
[features]
binaries = ["cargo", "cargo-edit", "docopt"]