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
37 lines (34 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 913 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
35
36
37
[package]
name = "pact_mock_server_cli"
version = "0.3.2"
authors = ["Ronald Holshausen <uglyog@gmail.com>"]
description = "Standalone pact mock server for consumer pact tests"
homepage = "http://www.pact.io"
repository = "https://github.com/pact-foundation/pact-reference/blob/master/rust/pact_mock_server_cli"
readme = "README.md"
keywords = ["testing", "pact", "cdc", "mockserver"]
license = "MIT"
exclude = [
"*.iml"
]
[dependencies]
libc = "0.2.9"
clap = "2.4.0"
serde_json = "1.0"
pact_matching = { version = "0.3.2", path = "../pact_matching" }
pact_mock_server = { version = "0.3.2", path = "../pact_mock_server" }
p-macro = "0.2.0"
simplelog = "^0.4.0"
log = "0.3.5"
uuid = "0.2.2"
maplit = "0.1.3"
rand = "0.3"
webmachine-rust = "0.0.0"
regex = "0.1"
lazy_static = "0.1.15"
[dependencies.hyper]
version = "0.9.7"
default-features = false
[dev-dependencies]
quickcheck = "0.2"
expectest = "0.5.1"