forked from pact-foundation/pact-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 831 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 831 Bytes
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
[package]
name = "pact_verifier_cli"
version = "0.3.1"
authors = ["Ronald Holshausen <uglyog@gmail.com>"]
description = "Standalone pact verifier for provider pact verification"
homepage = "http://www.pact.io"
repository = "https://github.com/pact-foundation/pact-reference/blob/master/rust/pact_verifier_cli"
readme = "README.md"
keywords = ["testing", "pact", "cdc"]
license = "MIT"
exclude = [
"*.iml"
]
[dependencies]
libc = "0.2.9"
clap = "2.13.0"
pact_matching = { version = "0.3.1", path = "../pact_matching" }
pact_verifier = { version = "0.3.1", path = "../pact_verifier" }
p-macro = "0.2.0"
simplelog = "0.1.0"
log = "0.3.5"
maplit = "0.1.3"
lazy_static = "0.1.15"
rand = "0.3"
regex = "0.1"
[dependencies.hyper]
version = "0.9.7"
default-features = false
[dev-dependencies]
quickcheck = "0.2"
expectest = "0.5.1"