-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 1.04 KB
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 = "easyhttpmock"
version = "0.1.3-beta.1"
edition = "2021"
authors = ["Rogerio Araújo <rogerio.araujo@gmail.com>"]
repository = "https://github.com/ararog/easyhttpmock"
homepage = "https://github.com/ararog/easyhttpmock"
description = "EasyHttpMock is a simple HTTP mock server for testing HTTP clients."
readme = "README.md"
license = "MIT"
keywords = ["http", "mock", "testing"]
publish = true
rust-version = "1.75.0"
[features]
default = ["tokio-rt", "http2", "tokio-rust-tls"]
tokio-rt = ["vetis/tokio-rt", "vetis/__deboa_tokio"]
smol-rt = ["vetis/smol-rt", "vetis/__deboa_smol"]
tokio-rust-tls = ["vetis/tokio-rust-tls"]
smol-rust-tls = ["vetis/smol-rust-tls"]
http1 = ["vetis/http1"]
http2 = ["vetis/http2"]
http3 = ["vetis/http3"]
[dependencies]
bytes = "1.11.0"
http = "1.4.0"
http-body-util = "0.1.3"
hyper = { version = "1.9.0", features = ["full"] }
hyper-util = "0.1.9"
rand = "0.10.0"
thiserror = "2.0.17"
tokio = { version = "1.51", features = ["full"] }
vetis = { version = "0.1.4-beta.6", optional = true, default-features = false }