agentguard-local 0.1.0

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.
package/Cargo.lock ADDED
@@ -0,0 +1,727 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "agentguard"
7
+ version = "0.1.0"
8
+ dependencies = [
9
+ "agentguard-core",
10
+ "anyhow",
11
+ "clap",
12
+ "serde_json",
13
+ "tempfile",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "agentguard-core"
18
+ version = "0.1.0"
19
+ dependencies = [
20
+ "anyhow",
21
+ "chrono",
22
+ "libc",
23
+ "rusqlite",
24
+ "serde",
25
+ "serde_json",
26
+ "tempfile",
27
+ "thiserror",
28
+ "uuid",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "android_system_properties"
33
+ version = "0.1.5"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
36
+ dependencies = [
37
+ "libc",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "anstream"
42
+ version = "1.0.0"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
45
+ dependencies = [
46
+ "anstyle",
47
+ "anstyle-parse",
48
+ "anstyle-query",
49
+ "anstyle-wincon",
50
+ "colorchoice",
51
+ "is_terminal_polyfill",
52
+ "utf8parse",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "anstyle"
57
+ version = "1.0.14"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
60
+
61
+ [[package]]
62
+ name = "anstyle-parse"
63
+ version = "1.0.0"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
66
+ dependencies = [
67
+ "utf8parse",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anstyle-query"
72
+ version = "1.1.5"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
75
+ dependencies = [
76
+ "windows-sys",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle-wincon"
81
+ version = "3.0.11"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
84
+ dependencies = [
85
+ "anstyle",
86
+ "once_cell_polyfill",
87
+ "windows-sys",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "anyhow"
92
+ version = "1.0.103"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
95
+
96
+ [[package]]
97
+ name = "autocfg"
98
+ version = "1.5.1"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
101
+
102
+ [[package]]
103
+ name = "bitflags"
104
+ version = "2.13.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
107
+
108
+ [[package]]
109
+ name = "bumpalo"
110
+ version = "3.20.3"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
113
+
114
+ [[package]]
115
+ name = "cc"
116
+ version = "1.2.65"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
119
+ dependencies = [
120
+ "find-msvc-tools",
121
+ "shlex",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "cfg-if"
126
+ version = "1.0.4"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
129
+
130
+ [[package]]
131
+ name = "chrono"
132
+ version = "0.4.45"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
135
+ dependencies = [
136
+ "iana-time-zone",
137
+ "js-sys",
138
+ "num-traits",
139
+ "serde",
140
+ "wasm-bindgen",
141
+ "windows-link",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "clap"
146
+ version = "4.6.1"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
149
+ dependencies = [
150
+ "clap_builder",
151
+ "clap_derive",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "clap_builder"
156
+ version = "4.6.0"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
159
+ dependencies = [
160
+ "anstream",
161
+ "anstyle",
162
+ "clap_lex",
163
+ "strsim",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "clap_derive"
168
+ version = "4.6.1"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
171
+ dependencies = [
172
+ "heck",
173
+ "proc-macro2",
174
+ "quote",
175
+ "syn",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "clap_lex"
180
+ version = "1.1.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
183
+
184
+ [[package]]
185
+ name = "colorchoice"
186
+ version = "1.0.5"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
189
+
190
+ [[package]]
191
+ name = "core-foundation-sys"
192
+ version = "0.8.7"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
195
+
196
+ [[package]]
197
+ name = "errno"
198
+ version = "0.3.14"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
201
+ dependencies = [
202
+ "libc",
203
+ "windows-sys",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "fallible-iterator"
208
+ version = "0.3.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
211
+
212
+ [[package]]
213
+ name = "fallible-streaming-iterator"
214
+ version = "0.1.9"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
217
+
218
+ [[package]]
219
+ name = "fastrand"
220
+ version = "2.4.1"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
223
+
224
+ [[package]]
225
+ name = "find-msvc-tools"
226
+ version = "0.1.9"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
229
+
230
+ [[package]]
231
+ name = "foldhash"
232
+ version = "0.1.5"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
235
+
236
+ [[package]]
237
+ name = "futures-core"
238
+ version = "0.3.32"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
241
+
242
+ [[package]]
243
+ name = "futures-task"
244
+ version = "0.3.32"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
247
+
248
+ [[package]]
249
+ name = "futures-util"
250
+ version = "0.3.32"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
253
+ dependencies = [
254
+ "futures-core",
255
+ "futures-task",
256
+ "pin-project-lite",
257
+ "slab",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "getrandom"
262
+ version = "0.4.3"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
265
+ dependencies = [
266
+ "cfg-if",
267
+ "libc",
268
+ "r-efi",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "hashbrown"
273
+ version = "0.15.5"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
276
+ dependencies = [
277
+ "foldhash",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "hashlink"
282
+ version = "0.10.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
285
+ dependencies = [
286
+ "hashbrown",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "heck"
291
+ version = "0.5.0"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
294
+
295
+ [[package]]
296
+ name = "iana-time-zone"
297
+ version = "0.1.65"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
300
+ dependencies = [
301
+ "android_system_properties",
302
+ "core-foundation-sys",
303
+ "iana-time-zone-haiku",
304
+ "js-sys",
305
+ "log",
306
+ "wasm-bindgen",
307
+ "windows-core",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "iana-time-zone-haiku"
312
+ version = "0.1.2"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
315
+ dependencies = [
316
+ "cc",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "is_terminal_polyfill"
321
+ version = "1.70.2"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
324
+
325
+ [[package]]
326
+ name = "itoa"
327
+ version = "1.0.18"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
330
+
331
+ [[package]]
332
+ name = "js-sys"
333
+ version = "0.3.103"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
336
+ dependencies = [
337
+ "cfg-if",
338
+ "futures-util",
339
+ "wasm-bindgen",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "libc"
344
+ version = "0.2.186"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
347
+
348
+ [[package]]
349
+ name = "libsqlite3-sys"
350
+ version = "0.35.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f"
353
+ dependencies = [
354
+ "cc",
355
+ "pkg-config",
356
+ "vcpkg",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "linux-raw-sys"
361
+ version = "0.12.1"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
364
+
365
+ [[package]]
366
+ name = "log"
367
+ version = "0.4.33"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
370
+
371
+ [[package]]
372
+ name = "memchr"
373
+ version = "2.8.2"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
376
+
377
+ [[package]]
378
+ name = "num-traits"
379
+ version = "0.2.19"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
382
+ dependencies = [
383
+ "autocfg",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "once_cell"
388
+ version = "1.21.4"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
391
+
392
+ [[package]]
393
+ name = "once_cell_polyfill"
394
+ version = "1.70.2"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
397
+
398
+ [[package]]
399
+ name = "pin-project-lite"
400
+ version = "0.2.17"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
403
+
404
+ [[package]]
405
+ name = "pkg-config"
406
+ version = "0.3.33"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
409
+
410
+ [[package]]
411
+ name = "proc-macro2"
412
+ version = "1.0.106"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
415
+ dependencies = [
416
+ "unicode-ident",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "quote"
421
+ version = "1.0.46"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
424
+ dependencies = [
425
+ "proc-macro2",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "r-efi"
430
+ version = "6.0.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
433
+
434
+ [[package]]
435
+ name = "rusqlite"
436
+ version = "0.37.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f"
439
+ dependencies = [
440
+ "bitflags",
441
+ "chrono",
442
+ "fallible-iterator",
443
+ "fallible-streaming-iterator",
444
+ "hashlink",
445
+ "libsqlite3-sys",
446
+ "serde_json",
447
+ "smallvec",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "rustix"
452
+ version = "1.1.4"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
455
+ dependencies = [
456
+ "bitflags",
457
+ "errno",
458
+ "libc",
459
+ "linux-raw-sys",
460
+ "windows-sys",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "rustversion"
465
+ version = "1.0.22"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
468
+
469
+ [[package]]
470
+ name = "serde"
471
+ version = "1.0.228"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
474
+ dependencies = [
475
+ "serde_core",
476
+ "serde_derive",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "serde_core"
481
+ version = "1.0.228"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
484
+ dependencies = [
485
+ "serde_derive",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "serde_derive"
490
+ version = "1.0.228"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
493
+ dependencies = [
494
+ "proc-macro2",
495
+ "quote",
496
+ "syn",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "serde_json"
501
+ version = "1.0.150"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
504
+ dependencies = [
505
+ "itoa",
506
+ "memchr",
507
+ "serde",
508
+ "serde_core",
509
+ "zmij",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "shlex"
514
+ version = "2.0.1"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
517
+
518
+ [[package]]
519
+ name = "slab"
520
+ version = "0.4.12"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
523
+
524
+ [[package]]
525
+ name = "smallvec"
526
+ version = "1.15.2"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
529
+
530
+ [[package]]
531
+ name = "strsim"
532
+ version = "0.11.1"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
535
+
536
+ [[package]]
537
+ name = "syn"
538
+ version = "2.0.118"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
541
+ dependencies = [
542
+ "proc-macro2",
543
+ "quote",
544
+ "unicode-ident",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "tempfile"
549
+ version = "3.27.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
552
+ dependencies = [
553
+ "fastrand",
554
+ "getrandom",
555
+ "once_cell",
556
+ "rustix",
557
+ "windows-sys",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "thiserror"
562
+ version = "2.0.18"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
565
+ dependencies = [
566
+ "thiserror-impl",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "thiserror-impl"
571
+ version = "2.0.18"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
574
+ dependencies = [
575
+ "proc-macro2",
576
+ "quote",
577
+ "syn",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "unicode-ident"
582
+ version = "1.0.24"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
585
+
586
+ [[package]]
587
+ name = "utf8parse"
588
+ version = "0.2.2"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
591
+
592
+ [[package]]
593
+ name = "uuid"
594
+ version = "1.23.4"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
597
+ dependencies = [
598
+ "getrandom",
599
+ "js-sys",
600
+ "serde_core",
601
+ "wasm-bindgen",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "vcpkg"
606
+ version = "0.2.15"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
609
+
610
+ [[package]]
611
+ name = "wasm-bindgen"
612
+ version = "0.2.126"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
615
+ dependencies = [
616
+ "cfg-if",
617
+ "once_cell",
618
+ "rustversion",
619
+ "wasm-bindgen-macro",
620
+ "wasm-bindgen-shared",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "wasm-bindgen-macro"
625
+ version = "0.2.126"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
628
+ dependencies = [
629
+ "quote",
630
+ "wasm-bindgen-macro-support",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "wasm-bindgen-macro-support"
635
+ version = "0.2.126"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
638
+ dependencies = [
639
+ "bumpalo",
640
+ "proc-macro2",
641
+ "quote",
642
+ "syn",
643
+ "wasm-bindgen-shared",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "wasm-bindgen-shared"
648
+ version = "0.2.126"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
651
+ dependencies = [
652
+ "unicode-ident",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "windows-core"
657
+ version = "0.62.2"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
660
+ dependencies = [
661
+ "windows-implement",
662
+ "windows-interface",
663
+ "windows-link",
664
+ "windows-result",
665
+ "windows-strings",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "windows-implement"
670
+ version = "0.60.2"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
673
+ dependencies = [
674
+ "proc-macro2",
675
+ "quote",
676
+ "syn",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "windows-interface"
681
+ version = "0.59.3"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
684
+ dependencies = [
685
+ "proc-macro2",
686
+ "quote",
687
+ "syn",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "windows-link"
692
+ version = "0.2.1"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
695
+
696
+ [[package]]
697
+ name = "windows-result"
698
+ version = "0.4.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
701
+ dependencies = [
702
+ "windows-link",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "windows-strings"
707
+ version = "0.5.1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
710
+ dependencies = [
711
+ "windows-link",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "windows-sys"
716
+ version = "0.61.2"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
719
+ dependencies = [
720
+ "windows-link",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "zmij"
725
+ version = "1.0.21"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"