overcast-sql 0.1.0__tar.gz

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 (51) hide show
  1. overcast_sql-0.1.0/Cargo.lock +1479 -0
  2. overcast_sql-0.1.0/Cargo.toml +3 -0
  3. overcast_sql-0.1.0/PKG-INFO +7 -0
  4. overcast_sql-0.1.0/core/Cargo.toml +18 -0
  5. overcast_sql-0.1.0/core/src/bin/overcast_sql.rs +83 -0
  6. overcast_sql-0.1.0/core/src/lib.rs +144 -0
  7. overcast_sql-0.1.0/core/src/main.rs +71 -0
  8. overcast_sql-0.1.0/core/src/okta_adapter/cache.rs +79 -0
  9. overcast_sql-0.1.0/core/src/okta_adapter/client.rs +274 -0
  10. overcast_sql-0.1.0/core/src/okta_adapter/client_error.rs +77 -0
  11. overcast_sql-0.1.0/core/src/okta_adapter/config.rs +40 -0
  12. overcast_sql-0.1.0/core/src/okta_adapter/mod.rs +110 -0
  13. overcast_sql-0.1.0/core/src/ports/mod.rs +1 -0
  14. overcast_sql-0.1.0/core/src/ports/okta.rs +458 -0
  15. overcast_sql-0.1.0/core/src/tables/app_groups.rs +243 -0
  16. overcast_sql-0.1.0/core/src/tables/app_users.rs +291 -0
  17. overcast_sql-0.1.0/core/src/tables/applications.rs +446 -0
  18. overcast_sql-0.1.0/core/src/tables/factors.rs +250 -0
  19. overcast_sql-0.1.0/core/src/tables/group_members.rs +325 -0
  20. overcast_sql-0.1.0/core/src/tables/groups.rs +256 -0
  21. overcast_sql-0.1.0/core/src/tables/links.rs +246 -0
  22. overcast_sql-0.1.0/core/src/tables/mod.rs +106 -0
  23. overcast_sql-0.1.0/core/src/tables/policies.rs +330 -0
  24. overcast_sql-0.1.0/core/src/tables/policy_apps.rs +311 -0
  25. overcast_sql-0.1.0/core/src/tables/policy_rules.rs +442 -0
  26. overcast_sql-0.1.0/core/src/tables/user_groups.rs +339 -0
  27. overcast_sql-0.1.0/core/src/tables/users.rs +418 -0
  28. overcast_sql-0.1.0/core/src/tests/audit/apps_everyone.rs +131 -0
  29. overcast_sql-0.1.0/core/src/tests/audit/apps_signon_1fa.rs +140 -0
  30. overcast_sql-0.1.0/core/src/tests/audit/mod.rs +3 -0
  31. overcast_sql-0.1.0/core/src/tests/audit/users_fastpass.rs +110 -0
  32. overcast_sql-0.1.0/core/src/tests/integration/app_groups.rs +21 -0
  33. overcast_sql-0.1.0/core/src/tests/integration/app_users.rs +24 -0
  34. overcast_sql-0.1.0/core/src/tests/integration/applications.rs +22 -0
  35. overcast_sql-0.1.0/core/src/tests/integration/common/mod.rs +37 -0
  36. overcast_sql-0.1.0/core/src/tests/integration/factors.rs +20 -0
  37. overcast_sql-0.1.0/core/src/tests/integration/group_members.rs +21 -0
  38. overcast_sql-0.1.0/core/src/tests/integration/groups.rs +17 -0
  39. overcast_sql-0.1.0/core/src/tests/integration/links.rs +19 -0
  40. overcast_sql-0.1.0/core/src/tests/integration/mod.rs +12 -0
  41. overcast_sql-0.1.0/core/src/tests/integration/policies.rs +19 -0
  42. overcast_sql-0.1.0/core/src/tests/integration/policy_rules.rs +21 -0
  43. overcast_sql-0.1.0/core/src/tests/integration/user_groups.rs +21 -0
  44. overcast_sql-0.1.0/core/src/tests/integration/users.rs +17 -0
  45. overcast_sql-0.1.0/core/src/tests/mod.rs +2 -0
  46. overcast_sql-0.1.0/pyproject.toml +17 -0
  47. overcast_sql-0.1.0/python/.gitignore +29 -0
  48. overcast_sql-0.1.0/python/Cargo.toml +12 -0
  49. overcast_sql-0.1.0/python/overcast_sql/__init__.py +72 -0
  50. overcast_sql-0.1.0/python/src/lib.rs +46 -0
  51. overcast_sql-0.1.0/python/uv.lock +350 -0
@@ -0,0 +1,1479 @@
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 = "android_system_properties"
22
+ version = "0.1.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "0.6.21"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.13"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "0.2.7"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+ dependencies = [
65
+ "windows-sys 0.61.2",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "3.0.11"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73
+ dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys 0.61.2",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anyhow"
81
+ version = "1.0.100"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
84
+
85
+ [[package]]
86
+ name = "autocfg"
87
+ version = "1.5.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
90
+
91
+ [[package]]
92
+ name = "base64"
93
+ version = "0.22.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
96
+
97
+ [[package]]
98
+ name = "bitflags"
99
+ version = "2.10.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
102
+
103
+ [[package]]
104
+ name = "bumpalo"
105
+ version = "3.19.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
108
+
109
+ [[package]]
110
+ name = "bytes"
111
+ version = "1.11.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
114
+
115
+ [[package]]
116
+ name = "cc"
117
+ version = "1.2.49"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
120
+ dependencies = [
121
+ "find-msvc-tools",
122
+ "shlex",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "cfg-if"
127
+ version = "1.0.4"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
130
+
131
+ [[package]]
132
+ name = "chrono"
133
+ version = "0.4.42"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
136
+ dependencies = [
137
+ "iana-time-zone",
138
+ "js-sys",
139
+ "num-traits",
140
+ "serde",
141
+ "wasm-bindgen",
142
+ "windows-link",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "colorchoice"
147
+ version = "1.0.4"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
150
+
151
+ [[package]]
152
+ name = "cookie"
153
+ version = "0.18.1"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
156
+ dependencies = [
157
+ "percent-encoding",
158
+ "time",
159
+ "version_check",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "cookie_store"
164
+ version = "0.22.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "3fc4bff745c9b4c7fb1e97b25d13153da2bc7796260141df62378998d070207f"
167
+ dependencies = [
168
+ "cookie",
169
+ "document-features",
170
+ "idna",
171
+ "indexmap",
172
+ "log",
173
+ "serde",
174
+ "serde_derive",
175
+ "serde_json",
176
+ "time",
177
+ "url",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "core-foundation-sys"
182
+ version = "0.8.7"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
185
+
186
+ [[package]]
187
+ name = "crc32fast"
188
+ version = "1.5.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
191
+ dependencies = [
192
+ "cfg-if",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "deranged"
197
+ version = "0.4.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
200
+ dependencies = [
201
+ "powerfmt",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "displaydoc"
206
+ version = "0.2.5"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
209
+ dependencies = [
210
+ "proc-macro2",
211
+ "quote",
212
+ "syn",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "document-features"
217
+ version = "0.2.11"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
220
+ dependencies = [
221
+ "litrs",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "downcast"
226
+ version = "0.11.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
229
+
230
+ [[package]]
231
+ name = "env_filter"
232
+ version = "0.1.4"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
235
+ dependencies = [
236
+ "log",
237
+ "regex",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "env_logger"
242
+ version = "0.11.8"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
245
+ dependencies = [
246
+ "anstream",
247
+ "anstyle",
248
+ "env_filter",
249
+ "jiff",
250
+ "log",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "equivalent"
255
+ version = "1.0.2"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
258
+
259
+ [[package]]
260
+ name = "fallible-iterator"
261
+ version = "0.3.0"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
264
+
265
+ [[package]]
266
+ name = "fallible-streaming-iterator"
267
+ version = "0.1.9"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
270
+
271
+ [[package]]
272
+ name = "find-msvc-tools"
273
+ version = "0.1.5"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
276
+
277
+ [[package]]
278
+ name = "flate2"
279
+ version = "1.1.5"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
282
+ dependencies = [
283
+ "crc32fast",
284
+ "miniz_oxide",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "foldhash"
289
+ version = "0.2.0"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
292
+
293
+ [[package]]
294
+ name = "form_urlencoded"
295
+ version = "1.2.2"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
298
+ dependencies = [
299
+ "percent-encoding",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "fragile"
304
+ version = "2.0.1"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619"
307
+
308
+ [[package]]
309
+ name = "getrandom"
310
+ version = "0.2.16"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
313
+ dependencies = [
314
+ "cfg-if",
315
+ "libc",
316
+ "wasi",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "hashbrown"
321
+ version = "0.16.1"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
324
+ dependencies = [
325
+ "foldhash",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "hashlink"
330
+ version = "0.11.0"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "ea0b22561a9c04a7cb1a302c013e0259cd3b4bb619f145b32f72b8b4bcbed230"
333
+ dependencies = [
334
+ "hashbrown",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "heck"
339
+ version = "0.5.0"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
342
+
343
+ [[package]]
344
+ name = "http"
345
+ version = "1.4.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
348
+ dependencies = [
349
+ "bytes",
350
+ "itoa",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "httparse"
355
+ version = "1.10.1"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
358
+
359
+ [[package]]
360
+ name = "iana-time-zone"
361
+ version = "0.1.64"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
364
+ dependencies = [
365
+ "android_system_properties",
366
+ "core-foundation-sys",
367
+ "iana-time-zone-haiku",
368
+ "js-sys",
369
+ "log",
370
+ "wasm-bindgen",
371
+ "windows-core",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "iana-time-zone-haiku"
376
+ version = "0.1.2"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
379
+ dependencies = [
380
+ "cc",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "icu_collections"
385
+ version = "2.1.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
388
+ dependencies = [
389
+ "displaydoc",
390
+ "potential_utf",
391
+ "yoke",
392
+ "zerofrom",
393
+ "zerovec",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "icu_locale_core"
398
+ version = "2.1.1"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
401
+ dependencies = [
402
+ "displaydoc",
403
+ "litemap",
404
+ "tinystr",
405
+ "writeable",
406
+ "zerovec",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "icu_normalizer"
411
+ version = "2.1.1"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
414
+ dependencies = [
415
+ "icu_collections",
416
+ "icu_normalizer_data",
417
+ "icu_properties",
418
+ "icu_provider",
419
+ "smallvec",
420
+ "zerovec",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "icu_normalizer_data"
425
+ version = "2.1.1"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
428
+
429
+ [[package]]
430
+ name = "icu_properties"
431
+ version = "2.1.1"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
434
+ dependencies = [
435
+ "icu_collections",
436
+ "icu_locale_core",
437
+ "icu_properties_data",
438
+ "icu_provider",
439
+ "zerotrie",
440
+ "zerovec",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "icu_properties_data"
445
+ version = "2.1.1"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
448
+
449
+ [[package]]
450
+ name = "icu_provider"
451
+ version = "2.1.1"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
454
+ dependencies = [
455
+ "displaydoc",
456
+ "icu_locale_core",
457
+ "writeable",
458
+ "yoke",
459
+ "zerofrom",
460
+ "zerotrie",
461
+ "zerovec",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "idna"
466
+ version = "1.1.0"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
469
+ dependencies = [
470
+ "idna_adapter",
471
+ "smallvec",
472
+ "utf8_iter",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "idna_adapter"
477
+ version = "1.2.1"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
480
+ dependencies = [
481
+ "icu_normalizer",
482
+ "icu_properties",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "indexmap"
487
+ version = "2.12.1"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
490
+ dependencies = [
491
+ "equivalent",
492
+ "hashbrown",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "is_terminal_polyfill"
497
+ version = "1.70.2"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
500
+
501
+ [[package]]
502
+ name = "itoa"
503
+ version = "1.0.15"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
506
+
507
+ [[package]]
508
+ name = "jiff"
509
+ version = "0.2.17"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "a87d9b8105c23642f50cbbae03d1f75d8422c5cb98ce7ee9271f7ff7505be6b8"
512
+ dependencies = [
513
+ "jiff-static",
514
+ "log",
515
+ "portable-atomic",
516
+ "portable-atomic-util",
517
+ "serde_core",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "jiff-static"
522
+ version = "0.2.17"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "b787bebb543f8969132630c51fd0afab173a86c6abae56ff3b9e5e3e3f9f6e58"
525
+ dependencies = [
526
+ "proc-macro2",
527
+ "quote",
528
+ "syn",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "js-sys"
533
+ version = "0.3.83"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
536
+ dependencies = [
537
+ "once_cell",
538
+ "wasm-bindgen",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "libc"
543
+ version = "0.2.178"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
546
+
547
+ [[package]]
548
+ name = "libsqlite3-sys"
549
+ version = "0.36.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "95b4103cffefa72eb8428cb6b47d6627161e51c2739fc5e3b734584157bc642a"
552
+ dependencies = [
553
+ "cc",
554
+ "pkg-config",
555
+ "vcpkg",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "litemap"
560
+ version = "0.8.1"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
563
+
564
+ [[package]]
565
+ name = "litrs"
566
+ version = "0.4.1"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5"
569
+
570
+ [[package]]
571
+ name = "log"
572
+ version = "0.4.29"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
575
+
576
+ [[package]]
577
+ name = "memchr"
578
+ version = "2.7.6"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
581
+
582
+ [[package]]
583
+ name = "miniz_oxide"
584
+ version = "0.8.9"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
587
+ dependencies = [
588
+ "adler2",
589
+ "simd-adler32",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "mockall"
594
+ version = "0.14.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "f58d964098a5f9c6b63d0798e5372fd04708193510a7af313c22e9f29b7b620b"
597
+ dependencies = [
598
+ "cfg-if",
599
+ "downcast",
600
+ "fragile",
601
+ "mockall_derive",
602
+ "predicates",
603
+ "predicates-tree",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "mockall_derive"
608
+ version = "0.14.0"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "ca41ce716dda6a9be188b385aa78ee5260fc25cd3802cb2a8afdc6afbe6b6dbf"
611
+ dependencies = [
612
+ "cfg-if",
613
+ "proc-macro2",
614
+ "quote",
615
+ "syn",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "num-conv"
620
+ version = "0.1.0"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
623
+
624
+ [[package]]
625
+ name = "num-traits"
626
+ version = "0.2.19"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
629
+ dependencies = [
630
+ "autocfg",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "once_cell"
635
+ version = "1.21.3"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
638
+
639
+ [[package]]
640
+ name = "once_cell_polyfill"
641
+ version = "1.70.2"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
644
+
645
+ [[package]]
646
+ name = "overcast"
647
+ version = "0.1.0"
648
+ dependencies = [
649
+ "anyhow",
650
+ "chrono",
651
+ "env_logger",
652
+ "log",
653
+ "mockall",
654
+ "rusqlite",
655
+ "serde",
656
+ "serde_json",
657
+ "ureq",
658
+ "urlencoding",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "overcast-python"
663
+ version = "0.1.0"
664
+ dependencies = [
665
+ "overcast",
666
+ "pyo3",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "percent-encoding"
671
+ version = "2.3.2"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
674
+
675
+ [[package]]
676
+ name = "pkg-config"
677
+ version = "0.3.32"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
680
+
681
+ [[package]]
682
+ name = "portable-atomic"
683
+ version = "1.12.0"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
686
+
687
+ [[package]]
688
+ name = "portable-atomic-util"
689
+ version = "0.2.4"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
692
+ dependencies = [
693
+ "portable-atomic",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "potential_utf"
698
+ version = "0.1.4"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
701
+ dependencies = [
702
+ "zerovec",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "powerfmt"
707
+ version = "0.2.0"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
710
+
711
+ [[package]]
712
+ name = "predicates"
713
+ version = "3.1.3"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
716
+ dependencies = [
717
+ "anstyle",
718
+ "predicates-core",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "predicates-core"
723
+ version = "1.0.9"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
726
+
727
+ [[package]]
728
+ name = "predicates-tree"
729
+ version = "1.0.12"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
732
+ dependencies = [
733
+ "predicates-core",
734
+ "termtree",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "proc-macro2"
739
+ version = "1.0.103"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
742
+ dependencies = [
743
+ "unicode-ident",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "pyo3"
748
+ version = "0.28.2"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
751
+ dependencies = [
752
+ "libc",
753
+ "once_cell",
754
+ "portable-atomic",
755
+ "pyo3-build-config",
756
+ "pyo3-ffi",
757
+ "pyo3-macros",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "pyo3-build-config"
762
+ version = "0.28.2"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
765
+ dependencies = [
766
+ "target-lexicon",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "pyo3-ffi"
771
+ version = "0.28.2"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
774
+ dependencies = [
775
+ "libc",
776
+ "pyo3-build-config",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "pyo3-macros"
781
+ version = "0.28.2"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
784
+ dependencies = [
785
+ "proc-macro2",
786
+ "pyo3-macros-backend",
787
+ "quote",
788
+ "syn",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "pyo3-macros-backend"
793
+ version = "0.28.2"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
796
+ dependencies = [
797
+ "heck",
798
+ "proc-macro2",
799
+ "pyo3-build-config",
800
+ "quote",
801
+ "syn",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "quote"
806
+ version = "1.0.42"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
809
+ dependencies = [
810
+ "proc-macro2",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "regex"
815
+ version = "1.12.2"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
818
+ dependencies = [
819
+ "aho-corasick",
820
+ "memchr",
821
+ "regex-automata",
822
+ "regex-syntax",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "regex-automata"
827
+ version = "0.4.13"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
830
+ dependencies = [
831
+ "aho-corasick",
832
+ "memchr",
833
+ "regex-syntax",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "regex-syntax"
838
+ version = "0.8.8"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
841
+
842
+ [[package]]
843
+ name = "ring"
844
+ version = "0.17.14"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
847
+ dependencies = [
848
+ "cc",
849
+ "cfg-if",
850
+ "getrandom",
851
+ "libc",
852
+ "untrusted",
853
+ "windows-sys 0.52.0",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "rusqlite"
858
+ version = "0.38.0"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "f1c93dd1c9683b438c392c492109cb702b8090b2bfc8fed6f6e4eb4523f17af3"
861
+ dependencies = [
862
+ "bitflags",
863
+ "fallible-iterator",
864
+ "fallible-streaming-iterator",
865
+ "hashlink",
866
+ "libsqlite3-sys",
867
+ "smallvec",
868
+ "sqlite-wasm-rs",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "rustls"
873
+ version = "0.23.35"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
876
+ dependencies = [
877
+ "log",
878
+ "once_cell",
879
+ "ring",
880
+ "rustls-pki-types",
881
+ "rustls-webpki",
882
+ "subtle",
883
+ "zeroize",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "rustls-pki-types"
888
+ version = "1.13.1"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c"
891
+ dependencies = [
892
+ "zeroize",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "rustls-webpki"
897
+ version = "0.103.8"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
900
+ dependencies = [
901
+ "ring",
902
+ "rustls-pki-types",
903
+ "untrusted",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "rustversion"
908
+ version = "1.0.22"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
911
+
912
+ [[package]]
913
+ name = "ryu"
914
+ version = "1.0.20"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
917
+
918
+ [[package]]
919
+ name = "serde"
920
+ version = "1.0.228"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
923
+ dependencies = [
924
+ "serde_core",
925
+ "serde_derive",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "serde_core"
930
+ version = "1.0.228"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
933
+ dependencies = [
934
+ "serde_derive",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "serde_derive"
939
+ version = "1.0.228"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
942
+ dependencies = [
943
+ "proc-macro2",
944
+ "quote",
945
+ "syn",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "serde_json"
950
+ version = "1.0.145"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
953
+ dependencies = [
954
+ "itoa",
955
+ "memchr",
956
+ "ryu",
957
+ "serde",
958
+ "serde_core",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "shlex"
963
+ version = "1.3.0"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
966
+
967
+ [[package]]
968
+ name = "simd-adler32"
969
+ version = "0.3.7"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
972
+
973
+ [[package]]
974
+ name = "smallvec"
975
+ version = "1.15.1"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
978
+
979
+ [[package]]
980
+ name = "sqlite-wasm-rs"
981
+ version = "0.5.1"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "05e98301bf8b0540c7de45ecd760539b9c62f5772aed172f08efba597c11cd5d"
984
+ dependencies = [
985
+ "cc",
986
+ "hashbrown",
987
+ "js-sys",
988
+ "thiserror",
989
+ "wasm-bindgen",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "stable_deref_trait"
994
+ version = "1.2.1"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
997
+
998
+ [[package]]
999
+ name = "subtle"
1000
+ version = "2.6.1"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1003
+
1004
+ [[package]]
1005
+ name = "syn"
1006
+ version = "2.0.111"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
1009
+ dependencies = [
1010
+ "proc-macro2",
1011
+ "quote",
1012
+ "unicode-ident",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "synstructure"
1017
+ version = "0.13.2"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1020
+ dependencies = [
1021
+ "proc-macro2",
1022
+ "quote",
1023
+ "syn",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "target-lexicon"
1028
+ version = "0.13.5"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1031
+
1032
+ [[package]]
1033
+ name = "termtree"
1034
+ version = "0.5.1"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1037
+
1038
+ [[package]]
1039
+ name = "thiserror"
1040
+ version = "2.0.17"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1043
+ dependencies = [
1044
+ "thiserror-impl",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "thiserror-impl"
1049
+ version = "2.0.17"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1052
+ dependencies = [
1053
+ "proc-macro2",
1054
+ "quote",
1055
+ "syn",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "time"
1060
+ version = "0.3.41"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
1063
+ dependencies = [
1064
+ "deranged",
1065
+ "itoa",
1066
+ "num-conv",
1067
+ "powerfmt",
1068
+ "serde",
1069
+ "time-core",
1070
+ "time-macros",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "time-core"
1075
+ version = "0.1.4"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
1078
+
1079
+ [[package]]
1080
+ name = "time-macros"
1081
+ version = "0.2.22"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
1084
+ dependencies = [
1085
+ "num-conv",
1086
+ "time-core",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "tinystr"
1091
+ version = "0.8.2"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1094
+ dependencies = [
1095
+ "displaydoc",
1096
+ "zerovec",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "unicode-ident"
1101
+ version = "1.0.22"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1104
+
1105
+ [[package]]
1106
+ name = "untrusted"
1107
+ version = "0.9.0"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1110
+
1111
+ [[package]]
1112
+ name = "ureq"
1113
+ version = "3.1.4"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "d39cb1dbab692d82a977c0392ffac19e188bd9186a9f32806f0aaa859d75585a"
1116
+ dependencies = [
1117
+ "base64",
1118
+ "cookie_store",
1119
+ "flate2",
1120
+ "log",
1121
+ "percent-encoding",
1122
+ "rustls",
1123
+ "rustls-pki-types",
1124
+ "serde",
1125
+ "serde_json",
1126
+ "ureq-proto",
1127
+ "utf-8",
1128
+ "webpki-roots",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "ureq-proto"
1133
+ version = "0.5.3"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "d81f9efa9df032be5934a46a068815a10a042b494b6a58cb0a1a97bb5467ed6f"
1136
+ dependencies = [
1137
+ "base64",
1138
+ "http",
1139
+ "httparse",
1140
+ "log",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "url"
1145
+ version = "2.5.7"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
1148
+ dependencies = [
1149
+ "form_urlencoded",
1150
+ "idna",
1151
+ "percent-encoding",
1152
+ "serde",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "urlencoding"
1157
+ version = "2.1.3"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
1160
+
1161
+ [[package]]
1162
+ name = "utf-8"
1163
+ version = "0.7.6"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1166
+
1167
+ [[package]]
1168
+ name = "utf8_iter"
1169
+ version = "1.0.4"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1172
+
1173
+ [[package]]
1174
+ name = "utf8parse"
1175
+ version = "0.2.2"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1178
+
1179
+ [[package]]
1180
+ name = "vcpkg"
1181
+ version = "0.2.15"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1184
+
1185
+ [[package]]
1186
+ name = "version_check"
1187
+ version = "0.9.5"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1190
+
1191
+ [[package]]
1192
+ name = "wasi"
1193
+ version = "0.11.1+wasi-snapshot-preview1"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1196
+
1197
+ [[package]]
1198
+ name = "wasm-bindgen"
1199
+ version = "0.2.106"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
1202
+ dependencies = [
1203
+ "cfg-if",
1204
+ "once_cell",
1205
+ "rustversion",
1206
+ "wasm-bindgen-macro",
1207
+ "wasm-bindgen-shared",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "wasm-bindgen-macro"
1212
+ version = "0.2.106"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
1215
+ dependencies = [
1216
+ "quote",
1217
+ "wasm-bindgen-macro-support",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "wasm-bindgen-macro-support"
1222
+ version = "0.2.106"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
1225
+ dependencies = [
1226
+ "bumpalo",
1227
+ "proc-macro2",
1228
+ "quote",
1229
+ "syn",
1230
+ "wasm-bindgen-shared",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "wasm-bindgen-shared"
1235
+ version = "0.2.106"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
1238
+ dependencies = [
1239
+ "unicode-ident",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "webpki-roots"
1244
+ version = "1.0.4"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
1247
+ dependencies = [
1248
+ "rustls-pki-types",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "windows-core"
1253
+ version = "0.62.2"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1256
+ dependencies = [
1257
+ "windows-implement",
1258
+ "windows-interface",
1259
+ "windows-link",
1260
+ "windows-result",
1261
+ "windows-strings",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "windows-implement"
1266
+ version = "0.60.2"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1269
+ dependencies = [
1270
+ "proc-macro2",
1271
+ "quote",
1272
+ "syn",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "windows-interface"
1277
+ version = "0.59.3"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1280
+ dependencies = [
1281
+ "proc-macro2",
1282
+ "quote",
1283
+ "syn",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "windows-link"
1288
+ version = "0.2.1"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1291
+
1292
+ [[package]]
1293
+ name = "windows-result"
1294
+ version = "0.4.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1297
+ dependencies = [
1298
+ "windows-link",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "windows-strings"
1303
+ version = "0.5.1"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1306
+ dependencies = [
1307
+ "windows-link",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "windows-sys"
1312
+ version = "0.52.0"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1315
+ dependencies = [
1316
+ "windows-targets",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "windows-sys"
1321
+ version = "0.61.2"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1324
+ dependencies = [
1325
+ "windows-link",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "windows-targets"
1330
+ version = "0.52.6"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1333
+ dependencies = [
1334
+ "windows_aarch64_gnullvm",
1335
+ "windows_aarch64_msvc",
1336
+ "windows_i686_gnu",
1337
+ "windows_i686_gnullvm",
1338
+ "windows_i686_msvc",
1339
+ "windows_x86_64_gnu",
1340
+ "windows_x86_64_gnullvm",
1341
+ "windows_x86_64_msvc",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "windows_aarch64_gnullvm"
1346
+ version = "0.52.6"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1349
+
1350
+ [[package]]
1351
+ name = "windows_aarch64_msvc"
1352
+ version = "0.52.6"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1355
+
1356
+ [[package]]
1357
+ name = "windows_i686_gnu"
1358
+ version = "0.52.6"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1361
+
1362
+ [[package]]
1363
+ name = "windows_i686_gnullvm"
1364
+ version = "0.52.6"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1367
+
1368
+ [[package]]
1369
+ name = "windows_i686_msvc"
1370
+ version = "0.52.6"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1373
+
1374
+ [[package]]
1375
+ name = "windows_x86_64_gnu"
1376
+ version = "0.52.6"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1379
+
1380
+ [[package]]
1381
+ name = "windows_x86_64_gnullvm"
1382
+ version = "0.52.6"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1385
+
1386
+ [[package]]
1387
+ name = "windows_x86_64_msvc"
1388
+ version = "0.52.6"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1391
+
1392
+ [[package]]
1393
+ name = "writeable"
1394
+ version = "0.6.2"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
1397
+
1398
+ [[package]]
1399
+ name = "yoke"
1400
+ version = "0.8.1"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
1403
+ dependencies = [
1404
+ "stable_deref_trait",
1405
+ "yoke-derive",
1406
+ "zerofrom",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "yoke-derive"
1411
+ version = "0.8.1"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
1414
+ dependencies = [
1415
+ "proc-macro2",
1416
+ "quote",
1417
+ "syn",
1418
+ "synstructure",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "zerofrom"
1423
+ version = "0.1.6"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1426
+ dependencies = [
1427
+ "zerofrom-derive",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "zerofrom-derive"
1432
+ version = "0.1.6"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1435
+ dependencies = [
1436
+ "proc-macro2",
1437
+ "quote",
1438
+ "syn",
1439
+ "synstructure",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "zeroize"
1444
+ version = "1.8.2"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1447
+
1448
+ [[package]]
1449
+ name = "zerotrie"
1450
+ version = "0.2.3"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
1453
+ dependencies = [
1454
+ "displaydoc",
1455
+ "yoke",
1456
+ "zerofrom",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "zerovec"
1461
+ version = "0.11.5"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
1464
+ dependencies = [
1465
+ "yoke",
1466
+ "zerofrom",
1467
+ "zerovec-derive",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "zerovec-derive"
1472
+ version = "0.11.2"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
1475
+ dependencies = [
1476
+ "proc-macro2",
1477
+ "quote",
1478
+ "syn",
1479
+ ]