Skip to content

Commit 2a3180b

Browse files
committedNov 14, 2024·
raise version to beta
1 parent 4213c14 commit 2a3180b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "httpmock"
3-
version = "0.8.0-alpha.1"
3+
version = "0.8.0-beta.1"
44
authors = ["Alexander Liesenfeld <alexander.liesenfeld@outlook.com>"]
55
edition = "2018"
66
description = "HTTP mocking library for Rust"
@@ -40,16 +40,16 @@ colored = { version = "2.1", optional = true }
4040
clap = { version = "4.5", features = ["derive", "env"], optional = true }
4141
env_logger = { version = "0.11", optional = true }
4242
serde_yaml = { version = "0.9", optional = true }
43-
async-std = { version = "1.13", features = ["attributes", "unstable"] }
43+
async-std = { version = "1.12", features = ["attributes", "unstable"] }
4444
headers = { version = "0.4", optional = true }
4545

4646
### TLS / HTTPS / PROXY
4747
rustls = { version = "0.23", default-features = false, features = ["std", "tls12"], optional = true }
4848
rcgen = { version = "0.12", features = ["pem", "x509-parser"], optional = true }
49-
tokio-rustls = { version = "0.26", optional = true }
49+
tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "tls12"], optional = true }
5050
rustls-pemfile = { version = "2", optional = true }
5151
tls-detect = { version = "0.1", optional = true }
52-
hyper-rustls = { version = "0.27", optional = true }
52+
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "logging", "tls12", "native-tokio"], optional = true }
5353
futures-timer = "3"
5454

5555
[dev-dependencies]
@@ -68,16 +68,16 @@ standalone = ["clap", "env_logger", "record", "http2", "cookies", "remote", "re
6868
color = ["colored"] # enables colorful output in standalone mode
6969
cookies = ["headers"] # enables support for matching cookies
7070
remote = ["hyper-util/client-legacy", "hyper-util/http2"] # allows to connect to remote mock servers
71-
remote-https = ["remote", "rustls", "hyper-rustls", "hyper-rustls/http2"] # allows to connect to remote mock servers via HTTPS
71+
remote-https = ["remote", "rustls", "rustls/ring", "hyper-rustls", "hyper-rustls/ring", "hyper-rustls/http2"] # allows to connect to remote mock servers via HTTPS
7272
proxy = ["remote-https", "hyper-util/client-legacy", "hyper-util/http2", "hyper-rustls", "hyper-rustls/http2"] # enables proxy functionality
7373
https = ["rustls", "rcgen", "tokio-rustls", "rustls-pemfile", "rustls/ring", "tls-detect"] # enables httpmock server support for TLS/HTTPS
7474
http2 = ["hyper/http2", "hyper-util/http2"] # enables httpmocks server support for HTTP2
7575
record = ["proxy", "serde_yaml"]
76-
experimental = [] # marker for experimental features
76+
experimental = [] # marker feature for experimental features
7777

7878
[[bin]]
7979
name = "httpmock"
8080
required-features = ["standalone"]
8181

8282
[package.metadata.docs.rs]
83-
all-features = true
83+
all-features = true

0 commit comments

Comments
 (0)
Please sign in to comment.