Skip to content

Commit ee133b5

Browse files
committed
Version 0.28.1
1 parent 7eae511 commit ee133b5

File tree

1 file changed

+31
-20
lines changed

1 file changed

+31
-20
lines changed

Cargo.toml

+31-20
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ authors = ["Simon Bernier St-Pierre <[email protected]>"]
33
edition = "2018"
44
license = "MPL-2.0"
55
name = "attohttpc"
6-
version = "0.28.0"
6+
version = "0.28.1"
77

8-
categories = ["network-programming", "web-programming", "web-programming::http-client"]
8+
categories = [
9+
"network-programming",
10+
"web-programming",
11+
"web-programming::http-client",
12+
]
913
description = "Small and lightweight HTTP client"
1014
documentation = "https://docs.rs/attohttpc"
1115
homepage = "https://github.com/sbstp/attohttpc"
@@ -14,35 +18,42 @@ readme = "README.md"
1418
repository = "https://github.com/sbstp/attohttpc"
1519

1620
[dependencies]
17-
base64 = {version = "0.22.0", optional = true}
18-
encoding_rs = {version = "0.8.31", optional = true}
19-
encoding_rs_io = {version = "0.1.7", optional = true}
20-
flate2 = {version = "1.0.24", default-features = false, optional = true}
21+
base64 = { version = "0.22.0", optional = true }
22+
encoding_rs = { version = "0.8.31", optional = true }
23+
encoding_rs_io = { version = "0.1.7", optional = true }
24+
flate2 = { version = "1.0.24", default-features = false, optional = true }
2125
http = "1"
2226
log = "0.4.17"
23-
mime = {version = "0.3.16", optional = true}
24-
multipart = {version = "0.18.0", default-features = false, features = ["client"], optional = true}
25-
native-tls = {version = "0.2.10", optional = true}
26-
rustls-native-certs = {version = "0.7", optional = true}
27-
rustls-opt-dep = {package = "rustls", version = "0.23.0", default-features = false, features = ["ring", "std"], optional = true}
28-
serde = {version = "1.0.143", optional = true}
29-
serde_json = {version = "1.0.83", optional = true}
30-
serde_urlencoded = {version = "0.7.1", optional = true}
27+
mime = { version = "0.3.16", optional = true }
28+
multipart = { version = "0.18.0", default-features = false, features = [
29+
"client",
30+
], optional = true }
31+
native-tls = { version = "0.2.10", optional = true }
32+
rustls-native-certs = { version = "0.7", optional = true }
33+
rustls-opt-dep = { package = "rustls", version = "0.23.0", default-features = false, features = [
34+
"ring",
35+
"std",
36+
], optional = true }
37+
serde = { version = "1.0.143", optional = true }
38+
serde_json = { version = "1.0.83", optional = true }
39+
serde_urlencoded = { version = "0.7.1", optional = true }
3140
url = "2.2.2"
32-
webpki-roots = {version = "0.26.0", optional = true}
41+
webpki-roots = { version = "0.26.0", optional = true }
3342

3443
[dev-dependencies]
3544
anyhow = "1.0.61"
3645
env_logger = "0.11.0"
37-
futures-util = {version = "0.3.23", default-features = false}
38-
http02 = {package = "http", version = "0.2"}
46+
futures-util = { version = "0.3.23", default-features = false }
47+
http02 = { package = "http", version = "0.2" }
3948
hyper = "0.14.20"
4049
lazy_static = "1.4.0"
41-
multipart = {version = "0.18.0", default-features = false, features = ["server"]}
50+
multipart = { version = "0.18.0", default-features = false, features = [
51+
"server",
52+
] }
4253
rustls-pemfile = "2"
43-
tokio = {version = "1.20.1", features = ["full"]}
54+
tokio = { version = "1.20.1", features = ["full"] }
4455
tokio-rustls = "0.25.0"
45-
tokio-stream = {version = "0.1.9", features = ["net"]}
56+
tokio-stream = { version = "0.1.9", features = ["net"] }
4657
warp = "0.3.2"
4758

4859
[features]

0 commit comments

Comments
 (0)