@@ -3,9 +3,13 @@ authors = ["Simon Bernier St-Pierre <git@sbstp.ca>"]
33edition = " 2018"
44license = " MPL-2.0"
55name = " 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+ ]
913description = " Small and lightweight HTTP client"
1014documentation = " https://docs.rs/attohttpc"
1115homepage = " https://github.com/sbstp/attohttpc"
@@ -14,35 +18,42 @@ readme = "README.md"
1418repository = " 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 }
2125http = " 1"
2226log = " 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 }
3140url = " 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 ]
3544anyhow = " 1.0.61"
3645env_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" }
3948hyper = " 0.14.20"
4049lazy_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+ ] }
4253rustls-pemfile = " 2"
43- tokio = {version = " 1.20.1" , features = [" full" ]}
54+ tokio = { version = " 1.20.1" , features = [" full" ] }
4455tokio-rustls = " 0.25.0"
45- tokio-stream = {version = " 0.1.9" , features = [" net" ]}
56+ tokio-stream = { version = " 0.1.9" , features = [" net" ] }
4657warp = " 0.3.2"
4758
4859[features ]
0 commit comments