forked from LukeMathWalker/wiremock-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 1.1 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
[package]
name = "wiremock"
version = "0.5.10-alpha.0"
authors = ["Luca Palmieri <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/LukeMathWalker/wiremock-rs"
documentation = "https://docs.rs/wiremock/"
description = "HTTP mocking to test Rust applications."
keywords = ["test", "http", "mocking", "mock", "black-box"]
categories = ["development-tools", "asynchronous"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[dependencies]
log = "0.4"
http-types = { version = "2.11", default-features = false, features = ["hyperium_http"] }
serde_json = "1"
serde = "1"
regex = "1"
futures-timer = "3.0.2"
futures = "0.3.5"
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1.5.0", features = ["rt", "io-util", "time"] }
deadpool = "0.7.0"
async-trait = "0.1"
once_cell = "1"
[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
surf = "2.2.0"
reqwest = "0.11.3"
tokio = { version = "1.5.0", features = ["macros"] }
actix-rt = "2.2.0"
isahc = "1.3.1"