1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "reqwest"
16version = "0.10.10"
17authors = ["Sean McArthur <sean@seanmonstar.com>"]
18autotests = true
19description = "higher level HTTP client library"
20documentation = "https://docs.rs/reqwest"
21readme = "README.md"
22keywords = ["http", "request", "client"]
23categories = ["web-programming::http-client", "wasm"]
24license = "MIT/Apache-2.0"
25repository = "https://github.com/seanmonstar/reqwest"
26[package.metadata.docs.rs]
27all-features = true
28targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
29
30[package.metadata.playground]
31features = ["blocking", "cookies", "json"]
32
33[[example]]
34name = "blocking"
35path = "examples/blocking.rs"
36required-features = ["blocking"]
37
38[[example]]
39name = "json_dynamic"
40path = "examples/json_dynamic.rs"
41required-features = ["json"]
42
43[[example]]
44name = "json_typed"
45path = "examples/json_typed.rs"
46required-features = ["json"]
47
48[[example]]
49name = "tor_socks"
50path = "examples/tor_socks.rs"
51required-features = ["socks"]
52
53[[example]]
54name = "form"
55path = "examples/form.rs"
56
57[[example]]
58name = "simple"
59path = "examples/simple.rs"
60
61[[test]]
62name = "blocking"
63path = "tests/blocking.rs"
64required-features = ["blocking"]
65
66[[test]]
67name = "cookie"
68path = "tests/cookie.rs"
69required-features = ["cookies"]
70
71[[test]]
72name = "gzip"
73path = "tests/gzip.rs"
74required-features = ["gzip"]
75
76[[test]]
77name = "brotli"
78path = "tests/brotli.rs"
79required-features = ["brotli"]
80[dependencies.bytes]
81version = "0.5"
82
83[dependencies.http]
84version = "0.2"
85
86[dependencies.mime_guess]
87version = "2.0"
88
89[dependencies.serde]
90version = "1.0"
91
92[dependencies.serde_json]
93version = "1.0"
94optional = true
95
96[dependencies.serde_urlencoded]
97version = "0.7"
98
99[dependencies.url]
100version = "2.2"
101
102[features]
103__internal_proxy_sys_no_cache = []
104__rustls = ["hyper-rustls", "tokio-rustls", "rustls", "__tls"]
105__tls = []
106blocking = ["futures-util/io", "tokio/rt-threaded", "tokio/rt-core", "tokio/sync"]
107brotli = ["async-compression", "async-compression/brotli"]
108cookies = ["cookie_crate", "cookie_store", "time"]
109default = ["default-tls"]
110default-tls = ["hyper-tls", "native-tls-crate", "__tls", "tokio-tls"]
111gzip = ["async-compression", "async-compression/gzip"]
112json = ["serde_json"]
113native-tls = ["default-tls"]
114native-tls-vendored = ["native-tls", "native-tls-crate/vendored"]
115rustls-tls = ["rustls-tls-webpki-roots"]
116rustls-tls-manual-roots = ["__rustls"]
117rustls-tls-native-roots = ["rustls-native-certs", "__rustls"]
118rustls-tls-webpki-roots = ["webpki-roots", "__rustls"]
119socks = ["tokio-socks"]
120stream = []
121trust-dns = ["trust-dns-resolver"]
122[target."cfg(not(target_arch = \"wasm32\"))".dependencies.async-compression]
123version = "0.3.0"
124features = ["stream"]
125optional = true
126default-features = false
127
128[target."cfg(not(target_arch = \"wasm32\"))".dependencies.base64]
129version = "0.13"
130
131[target."cfg(not(target_arch = \"wasm32\"))".dependencies.cookie_crate]
132version = "0.14"
133optional = true
134package = "cookie"
135
136[target."cfg(not(target_arch = \"wasm32\"))".dependencies.cookie_store]
137version = "0.12"
138optional = true
139
140[target."cfg(not(target_arch = \"wasm32\"))".dependencies.encoding_rs]
141version = "0.8"
142
143[target."cfg(not(target_arch = \"wasm32\"))".dependencies.futures-core]
144version = "0.3.0"
145default-features = false
146
147[target."cfg(not(target_arch = \"wasm32\"))".dependencies.futures-util]
148version = "0.3.0"
149default-features = false
150
151[target."cfg(not(target_arch = \"wasm32\"))".dependencies.http-body]
152version = "0.3.0"
153
154[target."cfg(not(target_arch = \"wasm32\"))".dependencies.hyper]
155version = "0.13.4"
156features = ["tcp"]
157default-features = false
158
159[target."cfg(not(target_arch = \"wasm32\"))".dependencies.hyper-rustls]
160version = "0.21"
161optional = true
162default-features = false
163
164[target."cfg(not(target_arch = \"wasm32\"))".dependencies.hyper-tls]
165version = "0.4"
166optional = true
167
168[target."cfg(not(target_arch = \"wasm32\"))".dependencies.ipnet]
169version = "2.3"
170
171[target."cfg(not(target_arch = \"wasm32\"))".dependencies.lazy_static]
172version = "1.4"
173
174[target."cfg(not(target_arch = \"wasm32\"))".dependencies.log]
175version = "0.4"
176
177[target."cfg(not(target_arch = \"wasm32\"))".dependencies.mime]
178version = "0.3.7"
179
180[target."cfg(not(target_arch = \"wasm32\"))".dependencies.native-tls-crate]
181version = "0.2"
182optional = true
183package = "native-tls"
184
185[target."cfg(not(target_arch = \"wasm32\"))".dependencies.percent-encoding]
186version = "2.1"
187
188[target."cfg(not(target_arch = \"wasm32\"))".dependencies.pin-project-lite]
189version = "0.2.0"
190
191[target."cfg(not(target_arch = \"wasm32\"))".dependencies.rustls]
192version = "0.18"
193features = ["dangerous_configuration"]
194optional = true
195
196[target."cfg(not(target_arch = \"wasm32\"))".dependencies.rustls-native-certs]
197version = "0.4"
198optional = true
199
200[target."cfg(not(target_arch = \"wasm32\"))".dependencies.time]
201version = "0.2.11"
202optional = true
203
204[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio]
205version = "0.2.5"
206features = ["tcp", "time"]
207default-features = false
208
209[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio-rustls]
210version = "0.14"
211optional = true
212
213[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio-socks]
214version = "0.3"
215optional = true
216
217[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio-tls]
218version = "0.3.0"
219optional = true
220
221[target."cfg(not(target_arch = \"wasm32\"))".dependencies.trust-dns-resolver]
222version = "0.19"
223optional = true
224
225[target."cfg(not(target_arch = \"wasm32\"))".dependencies.webpki-roots]
226version = "0.20"
227optional = true
228[target."cfg(not(target_arch = \"wasm32\"))".dev-dependencies.brotli_crate]
229version = "3.3.0"
230package = "brotli"
231
232[target."cfg(not(target_arch = \"wasm32\"))".dev-dependencies.doc-comment]
233version = "0.3"
234
235[target."cfg(not(target_arch = \"wasm32\"))".dev-dependencies.env_logger]
236version = "0.7"
237
238[target."cfg(not(target_arch = \"wasm32\"))".dev-dependencies.hyper]
239version = "0.13"
240features = ["tcp", "stream"]
241default-features = false
242
243[target."cfg(not(target_arch = \"wasm32\"))".dev-dependencies.libflate]
244version = "1.0"
245
246[target."cfg(not(target_arch = \"wasm32\"))".dev-dependencies.serde]
247version = "1.0"
248features = ["derive"]
249
250[target."cfg(not(target_arch = \"wasm32\"))".dev-dependencies.tokio]
251version = "0.2.0"
252features = ["macros"]
253default-features = false
254[target."cfg(target_arch = \"wasm32\")".dependencies.js-sys]
255version = "0.3.45"
256
257[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen]
258version = "0.2.68"
259features = ["serde-serialize"]
260
261[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen-futures]
262version = "0.4.18"
263
264[target."cfg(target_arch = \"wasm32\")".dependencies.web-sys]
265version = "0.3.25"
266features = ["Headers", "Request", "RequestInit", "RequestMode", "Response", "Window", "FormData", "Blob", "BlobPropertyBag", "ServiceWorkerGlobalScope"]
267[target."cfg(target_arch = \"wasm32\")".dev-dependencies.wasm-bindgen-test]
268version = "0.3"
269[target."cfg(windows)".dependencies.winreg]
270version = "0.7"
271