wreq 1.2.3-x64-mingw-ucrt

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/Cargo.lock +1687 -0
  3. data/Cargo.toml +54 -0
  4. data/Gemfile +18 -0
  5. data/LICENSE +201 -0
  6. data/README.md +153 -0
  7. data/Rakefile +90 -0
  8. data/build.rs +16 -0
  9. data/docs/windows-gnu-tokio-crash.md +70 -0
  10. data/examples/body.rb +42 -0
  11. data/examples/client.rb +33 -0
  12. data/examples/cookie.rb +24 -0
  13. data/examples/emulate_request.rb +37 -0
  14. data/examples/headers.rb +27 -0
  15. data/examples/proxy.rb +113 -0
  16. data/examples/send_stream.rb +85 -0
  17. data/examples/stream.rb +14 -0
  18. data/examples/thread_interrupt.rb +83 -0
  19. data/extconf.rb +7 -0
  20. data/lib/wreq.rb +303 -0
  21. data/lib/wreq_ruby/3.3/wreq_ruby.so +0 -0
  22. data/lib/wreq_ruby/3.4/wreq_ruby.so +0 -0
  23. data/lib/wreq_ruby/4.0/wreq_ruby.so +0 -0
  24. data/lib/wreq_ruby/body.rb +36 -0
  25. data/lib/wreq_ruby/client.rb +526 -0
  26. data/lib/wreq_ruby/cookie.rb +156 -0
  27. data/lib/wreq_ruby/emulate.rb +232 -0
  28. data/lib/wreq_ruby/error.rb +157 -0
  29. data/lib/wreq_ruby/header.rb +205 -0
  30. data/lib/wreq_ruby/http.rb +160 -0
  31. data/lib/wreq_ruby/response.rb +209 -0
  32. data/script/build_platform_gem.rb +34 -0
  33. data/script/build_windows_gnu.ps1 +257 -0
  34. data/src/arch.rs +33 -0
  35. data/src/client/body/form.rs +2 -0
  36. data/src/client/body/json.rs +16 -0
  37. data/src/client/body/stream.rs +146 -0
  38. data/src/client/body.rs +57 -0
  39. data/src/client/param.rs +19 -0
  40. data/src/client/query.rs +2 -0
  41. data/src/client/req.rs +274 -0
  42. data/src/client/resp.rs +248 -0
  43. data/src/client.rs +413 -0
  44. data/src/cookie.rs +312 -0
  45. data/src/emulate.rs +376 -0
  46. data/src/error.rs +163 -0
  47. data/src/extractor.rs +117 -0
  48. data/src/gvl.rs +154 -0
  49. data/src/header.rs +245 -0
  50. data/src/http.rs +142 -0
  51. data/src/lib.rs +98 -0
  52. data/src/macros.rs +123 -0
  53. data/src/rt.rs +46 -0
  54. data/test/client_cookie_test.rb +46 -0
  55. data/test/client_test.rb +136 -0
  56. data/test/cookie_test.rb +182 -0
  57. data/test/emulation_test.rb +21 -0
  58. data/test/error_handling_test.rb +92 -0
  59. data/test/header_test.rb +290 -0
  60. data/test/inspect_test.rb +125 -0
  61. data/test/module_methods_test.rb +75 -0
  62. data/test/orig_header_test.rb +115 -0
  63. data/test/request_parameters_test.rb +175 -0
  64. data/test/request_test.rb +244 -0
  65. data/test/response_test.rb +69 -0
  66. data/test/stream_test.rb +397 -0
  67. data/test/test_helper.rb +52 -0
  68. data/wreq.gemspec +68 -0
  69. metadata +123 -0
data/Cargo.lock ADDED
@@ -0,0 +1,1687 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloc-no-stdlib"
22
+ version = "2.0.4"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
25
+
26
+ [[package]]
27
+ name = "alloc-stdlib"
28
+ version = "0.2.4"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
31
+ dependencies = [
32
+ "alloc-no-stdlib",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "allocator-api2"
37
+ version = "0.2.21"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
40
+
41
+ [[package]]
42
+ name = "arc-swap"
43
+ version = "1.9.2"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
46
+ dependencies = [
47
+ "rustversion",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "async-compression"
52
+ version = "0.4.42"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
55
+ dependencies = [
56
+ "compression-codecs",
57
+ "compression-core",
58
+ "pin-project-lite",
59
+ "tokio",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "atomic-waker"
64
+ version = "1.1.2"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
67
+
68
+ [[package]]
69
+ name = "bindgen"
70
+ version = "0.72.1"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
73
+ dependencies = [
74
+ "bitflags",
75
+ "cexpr",
76
+ "clang-sys",
77
+ "itertools",
78
+ "proc-macro2",
79
+ "quote",
80
+ "regex",
81
+ "rustc-hash",
82
+ "shlex 1.3.0",
83
+ "syn",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "bitflags"
88
+ version = "2.13.0"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
91
+
92
+ [[package]]
93
+ name = "brotli"
94
+ version = "8.0.4"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
97
+ dependencies = [
98
+ "alloc-no-stdlib",
99
+ "alloc-stdlib",
100
+ "brotli-decompressor",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "brotli-decompressor"
105
+ version = "5.0.3"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
108
+ dependencies = [
109
+ "alloc-no-stdlib",
110
+ "alloc-stdlib",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "btls"
115
+ version = "0.5.6"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "2c5e60b8c8d282c86360cab651ded04ab0335a7b5390c8d34145cbeab8cacf5f"
118
+ dependencies = [
119
+ "bitflags",
120
+ "btls-sys",
121
+ "foreign-types",
122
+ "libc",
123
+ "openssl-macros",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "btls-sys"
128
+ version = "0.5.6"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "9b1b8638a2e1c38a5ae4efa90ae57e643baec35a30d03fc5b399b893adc4954b"
131
+ dependencies = [
132
+ "bindgen",
133
+ "cmake",
134
+ "fs_extra",
135
+ "fslock",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "bytes"
140
+ version = "1.12.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
143
+
144
+ [[package]]
145
+ name = "cc"
146
+ version = "1.2.66"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
149
+ dependencies = [
150
+ "find-msvc-tools",
151
+ "jobserver",
152
+ "libc",
153
+ "shlex 2.0.1",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "cexpr"
158
+ version = "0.6.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
161
+ dependencies = [
162
+ "nom",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "cfg-if"
167
+ version = "1.0.4"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
170
+
171
+ [[package]]
172
+ name = "clang-sys"
173
+ version = "1.8.1"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
176
+ dependencies = [
177
+ "glob",
178
+ "libc",
179
+ "libloading",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "cmake"
184
+ version = "0.1.58"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
187
+ dependencies = [
188
+ "cc",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "compression-codecs"
193
+ version = "0.4.38"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
196
+ dependencies = [
197
+ "brotli",
198
+ "compression-core",
199
+ "flate2",
200
+ "memchr",
201
+ "zstd",
202
+ "zstd-safe",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "compression-core"
207
+ version = "0.4.32"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
210
+
211
+ [[package]]
212
+ name = "cookie"
213
+ version = "0.18.1"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
216
+ dependencies = [
217
+ "time",
218
+ "version_check",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "core-foundation"
223
+ version = "0.9.4"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
226
+ dependencies = [
227
+ "core-foundation-sys",
228
+ "libc",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "core-foundation-sys"
233
+ version = "0.8.7"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
236
+
237
+ [[package]]
238
+ name = "crc32fast"
239
+ version = "1.5.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
242
+ dependencies = [
243
+ "cfg-if",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "deranged"
248
+ version = "0.5.8"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
251
+ dependencies = [
252
+ "powerfmt",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "displaydoc"
257
+ version = "0.2.6"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
260
+ dependencies = [
261
+ "proc-macro2",
262
+ "quote",
263
+ "syn",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "either"
268
+ version = "1.16.0"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
271
+
272
+ [[package]]
273
+ name = "encoding_rs"
274
+ version = "0.8.35"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
277
+ dependencies = [
278
+ "cfg-if",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "equivalent"
283
+ version = "1.0.2"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
286
+
287
+ [[package]]
288
+ name = "errno"
289
+ version = "0.3.14"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
292
+ dependencies = [
293
+ "libc",
294
+ "windows-sys",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "find-msvc-tools"
299
+ version = "0.1.9"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
302
+
303
+ [[package]]
304
+ name = "flate2"
305
+ version = "1.1.9"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
308
+ dependencies = [
309
+ "crc32fast",
310
+ "miniz_oxide",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "fnv"
315
+ version = "1.0.7"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
318
+
319
+ [[package]]
320
+ name = "foldhash"
321
+ version = "0.2.0"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
324
+
325
+ [[package]]
326
+ name = "foreign-types"
327
+ version = "0.5.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
330
+ dependencies = [
331
+ "foreign-types-macros",
332
+ "foreign-types-shared",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "foreign-types-macros"
337
+ version = "0.2.3"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
340
+ dependencies = [
341
+ "proc-macro2",
342
+ "quote",
343
+ "syn",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "foreign-types-shared"
348
+ version = "0.3.1"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
351
+
352
+ [[package]]
353
+ name = "form_urlencoded"
354
+ version = "1.2.2"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
357
+ dependencies = [
358
+ "percent-encoding",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "fs_extra"
363
+ version = "1.3.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
366
+
367
+ [[package]]
368
+ name = "fslock"
369
+ version = "0.2.1"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
372
+ dependencies = [
373
+ "libc",
374
+ "winapi",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "futures-channel"
379
+ version = "0.3.32"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
382
+ dependencies = [
383
+ "futures-core",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "futures-core"
388
+ version = "0.3.32"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
391
+
392
+ [[package]]
393
+ name = "futures-sink"
394
+ version = "0.3.32"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
397
+
398
+ [[package]]
399
+ name = "futures-task"
400
+ version = "0.3.32"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
403
+
404
+ [[package]]
405
+ name = "futures-util"
406
+ version = "0.3.32"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
409
+ dependencies = [
410
+ "futures-core",
411
+ "futures-task",
412
+ "pin-project-lite",
413
+ "slab",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "getrandom"
418
+ version = "0.4.3"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
421
+ dependencies = [
422
+ "cfg-if",
423
+ "libc",
424
+ "r-efi",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "glob"
429
+ version = "0.3.3"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
432
+
433
+ [[package]]
434
+ name = "hashbrown"
435
+ version = "0.17.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
438
+ dependencies = [
439
+ "allocator-api2",
440
+ "equivalent",
441
+ "foldhash",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "http"
446
+ version = "1.4.2"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
449
+ dependencies = [
450
+ "bytes",
451
+ "itoa",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "http-body"
456
+ version = "1.0.1"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
459
+ dependencies = [
460
+ "bytes",
461
+ "http",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "http-body-util"
466
+ version = "0.1.3"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
469
+ dependencies = [
470
+ "bytes",
471
+ "futures-core",
472
+ "http",
473
+ "http-body",
474
+ "pin-project-lite",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "http2"
479
+ version = "0.5.19"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "39fa01ed3820381df693c455ba2109d229c0cb02c95a51108ef45ddd758d91b9"
482
+ dependencies = [
483
+ "atomic-waker",
484
+ "bytes",
485
+ "fnv",
486
+ "futures-core",
487
+ "futures-sink",
488
+ "http",
489
+ "indexmap",
490
+ "slab",
491
+ "smallvec",
492
+ "tokio",
493
+ "tokio-util",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "httparse"
498
+ version = "1.10.1"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
501
+
502
+ [[package]]
503
+ name = "icu_collections"
504
+ version = "2.1.1"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
507
+ dependencies = [
508
+ "displaydoc",
509
+ "potential_utf",
510
+ "yoke",
511
+ "zerofrom",
512
+ "zerovec",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "icu_locale_core"
517
+ version = "2.1.1"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
520
+ dependencies = [
521
+ "displaydoc",
522
+ "litemap",
523
+ "tinystr",
524
+ "writeable",
525
+ "zerovec",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "icu_normalizer"
530
+ version = "2.1.1"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
533
+ dependencies = [
534
+ "icu_collections",
535
+ "icu_normalizer_data",
536
+ "icu_properties",
537
+ "icu_provider",
538
+ "smallvec",
539
+ "zerovec",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "icu_normalizer_data"
544
+ version = "2.1.1"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
547
+
548
+ [[package]]
549
+ name = "icu_properties"
550
+ version = "2.1.2"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
553
+ dependencies = [
554
+ "icu_collections",
555
+ "icu_locale_core",
556
+ "icu_properties_data",
557
+ "icu_provider",
558
+ "zerotrie",
559
+ "zerovec",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "icu_properties_data"
564
+ version = "2.1.2"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
567
+
568
+ [[package]]
569
+ name = "icu_provider"
570
+ version = "2.1.1"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
573
+ dependencies = [
574
+ "displaydoc",
575
+ "icu_locale_core",
576
+ "writeable",
577
+ "yoke",
578
+ "zerofrom",
579
+ "zerotrie",
580
+ "zerovec",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "idna"
585
+ version = "1.1.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
588
+ dependencies = [
589
+ "idna_adapter",
590
+ "smallvec",
591
+ "utf8_iter",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "idna_adapter"
596
+ version = "1.2.1"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
599
+ dependencies = [
600
+ "icu_normalizer",
601
+ "icu_properties",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "indexmap"
606
+ version = "2.14.0"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
609
+ dependencies = [
610
+ "equivalent",
611
+ "hashbrown",
612
+ "serde",
613
+ "serde_core",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "ipnet"
618
+ version = "2.12.0"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
621
+
622
+ [[package]]
623
+ name = "itertools"
624
+ version = "0.13.0"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
627
+ dependencies = [
628
+ "either",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "itoa"
633
+ version = "1.0.18"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
636
+
637
+ [[package]]
638
+ name = "jobserver"
639
+ version = "0.1.35"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
642
+ dependencies = [
643
+ "getrandom",
644
+ "libc",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "lazy_static"
649
+ version = "1.5.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
652
+
653
+ [[package]]
654
+ name = "libc"
655
+ version = "0.2.186"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
658
+
659
+ [[package]]
660
+ name = "libloading"
661
+ version = "0.8.9"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
664
+ dependencies = [
665
+ "cfg-if",
666
+ "windows-link",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "litemap"
671
+ version = "0.8.2"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
674
+
675
+ [[package]]
676
+ name = "lock_api"
677
+ version = "0.4.14"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
680
+ dependencies = [
681
+ "scopeguard",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "lru"
686
+ version = "0.18.0"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
689
+ dependencies = [
690
+ "hashbrown",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "magnus"
695
+ version = "0.8.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
698
+ dependencies = [
699
+ "bytes",
700
+ "magnus-macros",
701
+ "rb-sys",
702
+ "rb-sys-env",
703
+ "seq-macro",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "magnus-macros"
708
+ version = "0.8.0"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
711
+ dependencies = [
712
+ "proc-macro2",
713
+ "quote",
714
+ "syn",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "memchr"
719
+ version = "2.8.3"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
722
+
723
+ [[package]]
724
+ name = "mime"
725
+ version = "0.3.17"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
728
+
729
+ [[package]]
730
+ name = "minimal-lexical"
731
+ version = "0.2.1"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
734
+
735
+ [[package]]
736
+ name = "miniz_oxide"
737
+ version = "0.8.9"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
740
+ dependencies = [
741
+ "adler2",
742
+ "simd-adler32",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "mio"
747
+ version = "1.2.1"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
750
+ dependencies = [
751
+ "libc",
752
+ "wasi",
753
+ "windows-sys",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "nom"
758
+ version = "7.1.3"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
761
+ dependencies = [
762
+ "memchr",
763
+ "minimal-lexical",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "num-conv"
768
+ version = "0.1.0"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
771
+
772
+ [[package]]
773
+ name = "openssl-macros"
774
+ version = "0.1.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
777
+ dependencies = [
778
+ "proc-macro2",
779
+ "quote",
780
+ "syn",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "parking_lot"
785
+ version = "0.12.5"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
788
+ dependencies = [
789
+ "lock_api",
790
+ "parking_lot_core",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "parking_lot_core"
795
+ version = "0.9.12"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
798
+ dependencies = [
799
+ "cfg-if",
800
+ "libc",
801
+ "redox_syscall",
802
+ "smallvec",
803
+ "windows-link",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "percent-encoding"
808
+ version = "2.3.2"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
811
+
812
+ [[package]]
813
+ name = "pin-project-lite"
814
+ version = "0.2.17"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
817
+
818
+ [[package]]
819
+ name = "pkg-config"
820
+ version = "0.3.33"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
823
+
824
+ [[package]]
825
+ name = "potential_utf"
826
+ version = "0.1.5"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
829
+ dependencies = [
830
+ "zerovec",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "powerfmt"
835
+ version = "0.2.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
838
+
839
+ [[package]]
840
+ name = "proc-macro2"
841
+ version = "1.0.106"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
844
+ dependencies = [
845
+ "unicode-ident",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "quote"
850
+ version = "1.0.46"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
853
+ dependencies = [
854
+ "proc-macro2",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "r-efi"
859
+ version = "6.0.0"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
862
+
863
+ [[package]]
864
+ name = "rb-sys"
865
+ version = "0.9.128"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
868
+ dependencies = [
869
+ "rb-sys-build",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "rb-sys-build"
874
+ version = "0.9.128"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
877
+ dependencies = [
878
+ "bindgen",
879
+ "lazy_static",
880
+ "proc-macro2",
881
+ "quote",
882
+ "regex",
883
+ "shell-words",
884
+ "syn",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "rb-sys-env"
889
+ version = "0.2.3"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
892
+
893
+ [[package]]
894
+ name = "redox_syscall"
895
+ version = "0.5.18"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
898
+ dependencies = [
899
+ "bitflags",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "regex"
904
+ version = "1.12.4"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
907
+ dependencies = [
908
+ "aho-corasick",
909
+ "memchr",
910
+ "regex-automata",
911
+ "regex-syntax",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "regex-automata"
916
+ version = "0.4.14"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
919
+ dependencies = [
920
+ "aho-corasick",
921
+ "memchr",
922
+ "regex-syntax",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "regex-syntax"
927
+ version = "0.8.11"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
930
+
931
+ [[package]]
932
+ name = "rustc-hash"
933
+ version = "2.1.3"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
936
+
937
+ [[package]]
938
+ name = "rustls-pki-types"
939
+ version = "1.15.0"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
942
+
943
+ [[package]]
944
+ name = "rustversion"
945
+ version = "1.0.23"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
948
+
949
+ [[package]]
950
+ name = "scopeguard"
951
+ version = "1.2.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
954
+
955
+ [[package]]
956
+ name = "seq-macro"
957
+ version = "0.3.6"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
960
+
961
+ [[package]]
962
+ name = "serde"
963
+ version = "1.0.228"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
966
+ dependencies = [
967
+ "serde_core",
968
+ "serde_derive",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "serde_core"
973
+ version = "1.0.228"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
976
+ dependencies = [
977
+ "serde_derive",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "serde_derive"
982
+ version = "1.0.228"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
985
+ dependencies = [
986
+ "proc-macro2",
987
+ "quote",
988
+ "syn",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "serde_html_form"
993
+ version = "0.4.1"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "8f0346d7a342ab90f405cfc08f25d15075f944f42fcabbc5eac923829fa6d228"
996
+ dependencies = [
997
+ "form_urlencoded",
998
+ "indexmap",
999
+ "itoa",
1000
+ "serde_core",
1001
+ "zmij",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "serde_json"
1006
+ version = "1.0.150"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1009
+ dependencies = [
1010
+ "itoa",
1011
+ "memchr",
1012
+ "serde",
1013
+ "serde_core",
1014
+ "zmij",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "serde_magnus"
1019
+ version = "0.11.0"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "8ff64c88ddd26acdcad5a501f18bcc339927b77b69f4a03bfaf2a6fc5ba2ac4b"
1022
+ dependencies = [
1023
+ "magnus",
1024
+ "serde",
1025
+ "tap",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "shell-words"
1030
+ version = "1.1.1"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1033
+
1034
+ [[package]]
1035
+ name = "shlex"
1036
+ version = "1.3.0"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1039
+
1040
+ [[package]]
1041
+ name = "shlex"
1042
+ version = "2.0.1"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1045
+
1046
+ [[package]]
1047
+ name = "signal-hook-registry"
1048
+ version = "1.4.8"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1051
+ dependencies = [
1052
+ "errno",
1053
+ "libc",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "simd-adler32"
1058
+ version = "0.3.9"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1061
+
1062
+ [[package]]
1063
+ name = "slab"
1064
+ version = "0.4.12"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1067
+
1068
+ [[package]]
1069
+ name = "smallvec"
1070
+ version = "1.15.2"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1073
+
1074
+ [[package]]
1075
+ name = "socket2"
1076
+ version = "0.6.4"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
1079
+ dependencies = [
1080
+ "libc",
1081
+ "windows-sys",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "stable_deref_trait"
1086
+ version = "1.2.1"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1089
+
1090
+ [[package]]
1091
+ name = "syn"
1092
+ version = "2.0.118"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1095
+ dependencies = [
1096
+ "proc-macro2",
1097
+ "quote",
1098
+ "unicode-ident",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "sync_wrapper"
1103
+ version = "1.0.2"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1106
+ dependencies = [
1107
+ "futures-core",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "synstructure"
1112
+ version = "0.13.2"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1115
+ dependencies = [
1116
+ "proc-macro2",
1117
+ "quote",
1118
+ "syn",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "system-configuration"
1123
+ version = "0.7.0"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
1126
+ dependencies = [
1127
+ "bitflags",
1128
+ "core-foundation",
1129
+ "system-configuration-sys",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "system-configuration-sys"
1134
+ version = "0.6.0"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
1137
+ dependencies = [
1138
+ "core-foundation-sys",
1139
+ "libc",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "tap"
1144
+ version = "1.0.1"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1147
+
1148
+ [[package]]
1149
+ name = "thiserror"
1150
+ version = "1.0.69"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1153
+ dependencies = [
1154
+ "thiserror-impl",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "thiserror-impl"
1159
+ version = "1.0.69"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1162
+ dependencies = [
1163
+ "proc-macro2",
1164
+ "quote",
1165
+ "syn",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "time"
1170
+ version = "0.3.45"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
1173
+ dependencies = [
1174
+ "deranged",
1175
+ "itoa",
1176
+ "num-conv",
1177
+ "powerfmt",
1178
+ "serde_core",
1179
+ "time-core",
1180
+ "time-macros",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "time-core"
1185
+ version = "0.1.7"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
1188
+
1189
+ [[package]]
1190
+ name = "time-macros"
1191
+ version = "0.2.25"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "71e552d1249bf61ac2a52db88179fd0673def1e1ad8243a00d9ec9ed71fee3dd"
1194
+ dependencies = [
1195
+ "num-conv",
1196
+ "time-core",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "tinystr"
1201
+ version = "0.8.3"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1204
+ dependencies = [
1205
+ "displaydoc",
1206
+ "zerovec",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "tokio"
1211
+ version = "1.52.3"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1214
+ dependencies = [
1215
+ "bytes",
1216
+ "libc",
1217
+ "mio",
1218
+ "parking_lot",
1219
+ "pin-project-lite",
1220
+ "signal-hook-registry",
1221
+ "socket2",
1222
+ "tokio-macros",
1223
+ "windows-sys",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "tokio-btls"
1228
+ version = "0.5.6"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "2e1fd638ec35427faf3b8f412e0fdd6fae76591d79dba40f38fa667d22bc44dd"
1231
+ dependencies = [
1232
+ "btls",
1233
+ "tokio",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "tokio-macros"
1238
+ version = "2.7.0"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1241
+ dependencies = [
1242
+ "proc-macro2",
1243
+ "quote",
1244
+ "syn",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "tokio-socks"
1249
+ version = "0.5.3"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "a7e2948f60dbe26b35f2c7fb74ac2854c1fddded0fe9d7548fcc674a246f7615"
1252
+ dependencies = [
1253
+ "either",
1254
+ "futures-util",
1255
+ "thiserror",
1256
+ "tokio",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "tokio-util"
1261
+ version = "0.7.18"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1264
+ dependencies = [
1265
+ "bytes",
1266
+ "futures-core",
1267
+ "futures-sink",
1268
+ "pin-project-lite",
1269
+ "tokio",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "tower"
1274
+ version = "0.5.3"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1277
+ dependencies = [
1278
+ "futures-core",
1279
+ "futures-util",
1280
+ "pin-project-lite",
1281
+ "sync_wrapper",
1282
+ "tokio",
1283
+ "tower-layer",
1284
+ "tower-service",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "tower-http"
1289
+ version = "0.6.11"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
1292
+ dependencies = [
1293
+ "async-compression",
1294
+ "bitflags",
1295
+ "bytes",
1296
+ "futures-core",
1297
+ "http",
1298
+ "http-body",
1299
+ "http-body-util",
1300
+ "pin-project-lite",
1301
+ "tokio",
1302
+ "tokio-util",
1303
+ "tower-layer",
1304
+ "tower-service",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "tower-layer"
1309
+ version = "0.3.3"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1312
+
1313
+ [[package]]
1314
+ name = "tower-service"
1315
+ version = "0.3.3"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1318
+
1319
+ [[package]]
1320
+ name = "try-lock"
1321
+ version = "0.2.5"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1324
+
1325
+ [[package]]
1326
+ name = "typed-builder"
1327
+ version = "0.23.2"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "31aa81521b70f94402501d848ccc0ecaa8f93c8eb6999eb9747e72287757ffda"
1330
+ dependencies = [
1331
+ "typed-builder-macro",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "typed-builder-macro"
1336
+ version = "0.23.2"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "076a02dc54dd46795c2e9c8282ed40bcfb1e22747e955de9389a1de28190fb26"
1339
+ dependencies = [
1340
+ "proc-macro2",
1341
+ "quote",
1342
+ "syn",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "unicode-ident"
1347
+ version = "1.0.24"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1350
+
1351
+ [[package]]
1352
+ name = "url"
1353
+ version = "2.5.8"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1356
+ dependencies = [
1357
+ "form_urlencoded",
1358
+ "idna",
1359
+ "percent-encoding",
1360
+ "serde",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "utf8_iter"
1365
+ version = "1.0.4"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1368
+
1369
+ [[package]]
1370
+ name = "version_check"
1371
+ version = "0.9.5"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1374
+
1375
+ [[package]]
1376
+ name = "want"
1377
+ version = "0.3.1"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1380
+ dependencies = [
1381
+ "try-lock",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "wasi"
1386
+ version = "0.11.1+wasi-snapshot-preview1"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1389
+
1390
+ [[package]]
1391
+ name = "webpki-root-certs"
1392
+ version = "1.0.8"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
1395
+ dependencies = [
1396
+ "rustls-pki-types",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "winapi"
1401
+ version = "0.3.9"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1404
+ dependencies = [
1405
+ "winapi-i686-pc-windows-gnu",
1406
+ "winapi-x86_64-pc-windows-gnu",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "winapi-i686-pc-windows-gnu"
1411
+ version = "0.4.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1414
+
1415
+ [[package]]
1416
+ name = "winapi-x86_64-pc-windows-gnu"
1417
+ version = "0.4.0"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1420
+
1421
+ [[package]]
1422
+ name = "windows-link"
1423
+ version = "0.2.1"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1426
+
1427
+ [[package]]
1428
+ name = "windows-registry"
1429
+ version = "0.6.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
1432
+ dependencies = [
1433
+ "windows-link",
1434
+ "windows-result",
1435
+ "windows-strings",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "windows-result"
1440
+ version = "0.4.1"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1443
+ dependencies = [
1444
+ "windows-link",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "windows-strings"
1449
+ version = "0.5.1"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1452
+ dependencies = [
1453
+ "windows-link",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "windows-sys"
1458
+ version = "0.61.2"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1461
+ dependencies = [
1462
+ "windows-link",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "wreq"
1467
+ version = "6.0.0-rc.29"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "3f0eba5f5814a94e5f1a99156f187133464e525b66bdbc69a9627d46530af2e1"
1470
+ dependencies = [
1471
+ "btls",
1472
+ "btls-sys",
1473
+ "bytes",
1474
+ "cookie",
1475
+ "encoding_rs",
1476
+ "futures-util",
1477
+ "http",
1478
+ "http-body",
1479
+ "http-body-util",
1480
+ "http2",
1481
+ "httparse",
1482
+ "ipnet",
1483
+ "libc",
1484
+ "lru",
1485
+ "mime",
1486
+ "percent-encoding",
1487
+ "pin-project-lite",
1488
+ "serde",
1489
+ "serde_html_form",
1490
+ "serde_json",
1491
+ "socket2",
1492
+ "sync_wrapper",
1493
+ "system-configuration",
1494
+ "tokio",
1495
+ "tokio-btls",
1496
+ "tokio-socks",
1497
+ "tokio-util",
1498
+ "tower",
1499
+ "tower-http",
1500
+ "url",
1501
+ "webpki-root-certs",
1502
+ "windows-registry",
1503
+ "wreq-proto",
1504
+ "wreq-rt",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "wreq-proto"
1509
+ version = "0.2.5"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "a43942f024bb303f1042c9aa3c87fa1d9149f507c65db6e5220a11ccdb207387"
1512
+ dependencies = [
1513
+ "bytes",
1514
+ "futures-channel",
1515
+ "futures-util",
1516
+ "http",
1517
+ "http-body",
1518
+ "http2",
1519
+ "httparse",
1520
+ "pin-project-lite",
1521
+ "smallvec",
1522
+ "tokio",
1523
+ "tokio-util",
1524
+ "want",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "wreq-rt"
1529
+ version = "0.2.2-rc.4"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "99e9bce67a3fa3dd3f1503f066d86661c9caf399a763d3bd184da7afaf886c8b"
1532
+ dependencies = [
1533
+ "pin-project-lite",
1534
+ "tokio",
1535
+ "wreq-proto",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "wreq-ruby"
1540
+ version = "1.2.3"
1541
+ dependencies = [
1542
+ "arc-swap",
1543
+ "bytes",
1544
+ "cookie",
1545
+ "futures-util",
1546
+ "http",
1547
+ "http-body-util",
1548
+ "indexmap",
1549
+ "magnus",
1550
+ "rb-sys",
1551
+ "rb-sys-env",
1552
+ "serde",
1553
+ "serde_magnus",
1554
+ "tokio",
1555
+ "wreq",
1556
+ "wreq-util",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "wreq-util"
1561
+ version = "3.0.0-rc.14"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "1d8d73c75be86fbde675988dbe5cb15f02567025c13f6ffab910361ad1ba6c89"
1564
+ dependencies = [
1565
+ "brotli",
1566
+ "flate2",
1567
+ "typed-builder",
1568
+ "wreq",
1569
+ "zstd",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "writeable"
1574
+ version = "0.6.3"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1577
+
1578
+ [[package]]
1579
+ name = "yoke"
1580
+ version = "0.8.3"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1583
+ dependencies = [
1584
+ "stable_deref_trait",
1585
+ "yoke-derive",
1586
+ "zerofrom",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "yoke-derive"
1591
+ version = "0.8.2"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1594
+ dependencies = [
1595
+ "proc-macro2",
1596
+ "quote",
1597
+ "syn",
1598
+ "synstructure",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "zerofrom"
1603
+ version = "0.1.8"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1606
+ dependencies = [
1607
+ "zerofrom-derive",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "zerofrom-derive"
1612
+ version = "0.1.7"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1615
+ dependencies = [
1616
+ "proc-macro2",
1617
+ "quote",
1618
+ "syn",
1619
+ "synstructure",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "zerotrie"
1624
+ version = "0.2.4"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1627
+ dependencies = [
1628
+ "displaydoc",
1629
+ "yoke",
1630
+ "zerofrom",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "zerovec"
1635
+ version = "0.11.6"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1638
+ dependencies = [
1639
+ "yoke",
1640
+ "zerofrom",
1641
+ "zerovec-derive",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "zerovec-derive"
1646
+ version = "0.11.3"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1649
+ dependencies = [
1650
+ "proc-macro2",
1651
+ "quote",
1652
+ "syn",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "zmij"
1657
+ version = "1.0.21"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
1660
+
1661
+ [[package]]
1662
+ name = "zstd"
1663
+ version = "0.13.3"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
1666
+ dependencies = [
1667
+ "zstd-safe",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "zstd-safe"
1672
+ version = "7.2.4"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
1675
+ dependencies = [
1676
+ "zstd-sys",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "zstd-sys"
1681
+ version = "2.0.16+zstd.1.5.7"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
1684
+ dependencies = [
1685
+ "cc",
1686
+ "pkg-config",
1687
+ ]