11[package ]
22name = " reqwest"
3- version = " 0.12.19 "
3+ version = " 0.12.20 "
44description = " higher level HTTP client library"
55keywords = [" http" , " request" , " client" ]
66categories = [" web-programming::http-client" , " wasm" ]
@@ -53,7 +53,7 @@ rustls-tls-native-roots = ["rustls-tls-native-roots-no-provider", "__rustls-ring
5353
5454blocking = [" dep:futures-channel" , " futures-channel?/sink" , " dep:futures-util" , " futures-util?/io" , " futures-util?/sink" , " tokio/sync" ]
5555
56- charset = [" dep:encoding_rs" ]
56+ charset = [" dep:encoding_rs" , " dep:mime " ]
5757
5858cookies = [" dep:cookie_crate" , " dep:cookie_store" ]
5959
@@ -71,11 +71,11 @@ multipart = ["dep:mime_guess", "dep:futures-util"]
7171
7272# Deprecated, remove this feature while bumping minor versions.
7373trust-dns = []
74- hickory-dns = [" dep:hickory-resolver" ]
74+ hickory-dns = [" dep:hickory-resolver" , " dep:once_cell " ]
7575
7676stream = [" tokio/fs" , " dep:futures-util" , " dep:tokio-util" , " dep:wasm-streams" ]
7777
78- socks = [" dep:tokio-socks " ]
78+ socks = []
7979
8080# Use the system's proxy configuration.
8181system-proxy = [" hyper-util/client-proxy-system" ]
@@ -84,7 +84,7 @@ system-proxy = ["hyper-util/client-proxy-system"]
8484macos-system-configuration = [" system-proxy" ]
8585
8686# Experimental HTTP/3 client.
87- http3 = [" rustls-tls-manual-roots" , " dep:h3" , " dep:h3-quinn" , " dep:quinn" , " dep:slab " , " dep:futures-channel " , " tokio/macros" ]
87+ http3 = [" rustls-tls-manual-roots" , " dep:h3" , " dep:h3-quinn" , " dep:quinn" , " tokio/macros" ]
8888
8989
9090# Internal (PRIVATE!) features used to aid testing.
@@ -124,18 +124,16 @@ http-body-util = "0.1"
124124hyper = { version = " 1.1" , features = [" http1" , " client" ] }
125125hyper-util = { version = " 0.1.12" , features = [" http1" , " client" , " client-legacy" , " client-proxy" , " tokio" ] }
126126h2 = { version = " 0.4" , optional = true }
127- once_cell = " 1.18"
128127log = " 0.4.17"
129- mime = " 0.3.16"
130128percent-encoding = " 2.3"
131129tokio = { version = " 1.0" , default-features = false , features = [" net" , " time" ] }
132130tower = { version = " 0.5.2" , default-features = false , features = [" timeout" , " util" ] }
133131tower-http = { version = " 0.6.5" , default-features = false , features = [" follow-redirect" ] }
134132pin-project-lite = " 0.2.11"
135- ipnet = " 2.3"
136133
137134# Optional deps...
138135rustls-pki-types = { version = " 1.9.0" , features = [" std" ], optional = true }
136+ mime = { version = " 0.3.16" , optional = true }
139137
140138# # default-tls
141139hyper-tls = { version = " 0.6" , optional = true }
@@ -157,17 +155,14 @@ cookie_store = { version = "0.21.0", optional = true }
157155async-compression = { version = " 0.4.0" , default-features = false , features = [" tokio" ], optional = true }
158156tokio-util = { version = " 0.7.9" , default-features = false , features = [" codec" , " io" ], optional = true }
159157
160- # # socks
161- tokio-socks = { version = " 0.5.2" , optional = true }
162-
163158# # hickory-dns
164159hickory-resolver = { version = " 0.24" , optional = true , features = [" tokio-runtime" ] }
160+ once_cell = { version = " 1.18" , optional = true }
165161
166162# HTTP/3 experimental support
167163h3 = { version = " 0.0.8" , optional = true }
168164h3-quinn = { version = " 0.0.10" , optional = true }
169165quinn = { version = " 0.11.1" , default-features = false , features = [" rustls" , " runtime-tokio" ], optional = true }
170- slab = { version = " 0.4.9" , optional = true } # just to get minimal versions working with quinn
171166futures-channel = { version = " 0.3" , optional = true }
172167
173168[target .'cfg(not(target_arch = "wasm32"))' .dev-dependencies ]
0 commit comments