Skip to content

Commit 04f559d

Browse files
authored
Merge pull request #69 from jayjamesjay/v0.13
V0.13
2 parents c5c2985 + fca1cc2 commit 04f559d

File tree

10 files changed

+442
-168
lines changed

10 files changed

+442
-168
lines changed

Cargo.lock

Lines changed: 54 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "http_req"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
license = "MIT"
55
description = "simple and lightweight HTTP client with built-in HTTPS support"
66
repository = "https://github.com/jayjamesjay/http_req"
@@ -12,6 +12,14 @@ edition = "2021"
1212

1313
[dependencies]
1414
unicase = "^2.7"
15+
base64 = "^0.22.1"
16+
zeroize = { version = "^1.8.1", features = ["zeroize_derive"] }
17+
native-tls = { version = "^0.2", optional = true }
18+
rustls = { version = "^0.23", optional = true }
19+
rustls-pemfile = { version = "^2.1", optional = true }
20+
rustls-pki-types = { version = "^1.7", features = ["alloc"], optional = true }
21+
webpki = { version = "^0.22", optional = true }
22+
webpki-roots = { version = "^0.26", optional = true }
1523

1624
[features]
1725
default = ["native-tls"]
@@ -22,28 +30,3 @@ rust-tls = [
2230
"webpki-roots",
2331
"rustls-pemfile",
2432
]
25-
26-
[dependencies.native-tls]
27-
version = "^0.2"
28-
optional = true
29-
30-
[dependencies.rustls]
31-
version = "^0.23"
32-
optional = true
33-
34-
[dependencies.rustls-pemfile]
35-
version = "^2.1"
36-
optional = true
37-
38-
[dependencies.webpki]
39-
version = "^0.22"
40-
optional = true
41-
42-
[dependencies.webpki-roots]
43-
version = "^0.26"
44-
optional = true
45-
46-
[dependencies.rustls-pki-types]
47-
version = "^1.7"
48-
features = ["alloc"]
49-
optional = true

0 commit comments

Comments
 (0)