forked from alexliesenfeld/httpmock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 1017 Bytes
/
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
43
44
[package]
name = "httpmock"
version = "0.3.5"
authors = ["Alexander Liesenfeld <alexander.liesenfeld@outlook.com>"]
edition = "2018"
description = "an HTTP mock server library for your tests"
readme = "README.md"
keywords = ["http", "mock", "test"]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/alexliesenfeld/httpmock"
[dependencies]
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.45"
serde_regex = "0.4.0"
regex = "1.3.3"
lazy_static = "1.4.0"
futures = "0.1.29"
hyper = "0.12.35"
tokio = "0.1.22"
log = "0.4.8"
qstring = "0.7.2"
assert-json-diff = "1.0.3"
httpmock-macros = { path = "./lib/macros", version = "0.2.0" }
structopt = { version = "0.3.8", optional = true }
env_logger = { version = "0.7.1", optional = true }
[features]
standalone = ["structopt", "env_logger"]
[[bin]]
name = "httpmock"
required-features = ["standalone"]
[dev-dependencies]
reqwest = "0.9.20"
env_logger = "0.7.1"
[workspace]
members = [
"lib/macros"
]