jsql-neo 5.4.2 → 5.5.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.
Files changed (72) hide show
  1. package/LICENSE +202 -202
  2. package/README.md +8097 -7971
  3. package/bin/jsql +320 -320
  4. package/bin/jsql-server +90 -90
  5. package/bin/jsql-server-control.js +177 -177
  6. package/index.d.ts +385 -357
  7. package/index.js +124 -118
  8. package/lib/ast.js +214 -0
  9. package/lib/btree.js +413 -413
  10. package/lib/cache.js +328 -328
  11. package/lib/client.js +125 -125
  12. package/lib/database.js +1744 -1744
  13. package/lib/date-types.js +182 -182
  14. package/lib/errors.js +89 -89
  15. package/lib/jsql_format.js +497 -497
  16. package/lib/migrate.js +254 -254
  17. package/lib/mod.js +292 -292
  18. package/lib/mongo_server.js +607 -607
  19. package/lib/multiserver.js +140 -140
  20. package/lib/mysql_compat.js +413 -413
  21. package/lib/mysql_server.js +1237 -1237
  22. package/lib/native_client.js +732 -732
  23. package/lib/nedb_compat.js +506 -506
  24. package/lib/pg_server.js +864 -864
  25. package/lib/plugin.js +34 -34
  26. package/lib/query.js +815 -815
  27. package/lib/redis_server.js +571 -571
  28. package/lib/sql.js +3460 -2925
  29. package/lib/sqlite_compat.js +323 -323
  30. package/lib/sqlite_worker.js +264 -264
  31. package/lib/table.js +1304 -1304
  32. package/lib/tui.js +502 -502
  33. package/lib/wasm.js +1 -1
  34. package/lib/wasm_client.js +718 -718
  35. package/lib/web_ui.js +257 -257
  36. package/native/jsql-neo-native.node +0 -0
  37. package/nativesrc/jsql-neo-core/Cargo.lock +455 -455
  38. package/nativesrc/jsql-neo-core/Cargo.toml +24 -24
  39. package/nativesrc/jsql-neo-core/src/engine/hybrid.rs +455 -455
  40. package/nativesrc/jsql-neo-core/src/engine/memory.rs +168 -168
  41. package/nativesrc/jsql-neo-core/src/engine/mod.rs +62 -62
  42. package/nativesrc/jsql-neo-core/src/engine/table.rs +700 -700
  43. package/nativesrc/jsql-neo-core/src/lib.rs +2 -2
  44. package/nativesrc/jsql-neo-core/src/storage/mod.rs +2 -2
  45. package/nativesrc/jsql-neo-core/src/storage/persistent.rs +1 -1
  46. package/nativesrc/jsql-neo-core/src/storage/wal.rs +85 -85
  47. package/nativesrc/jsql-neo-core/src/types.rs +93 -93
  48. package/nativesrc/jsql-neo-native/Cargo.lock +606 -606
  49. package/nativesrc/jsql-neo-native/Cargo.toml +16 -16
  50. package/nativesrc/jsql-neo-native/build.rs +3 -3
  51. package/nativesrc/jsql-neo-native/package.json +7 -7
  52. package/nativesrc/jsql-neo-native/src/lib.rs +269 -269
  53. package/nativesrc/jsql-neo-wasm/Cargo.lock +465 -465
  54. package/nativesrc/jsql-neo-wasm/Cargo.toml +15 -15
  55. package/nativesrc/jsql-neo-wasm/src/lib.rs +447 -447
  56. package/package.json +87 -86
  57. package/postinstall.js +158 -158
  58. package/test/btree.test.js +128 -128
  59. package/test/coverage.js +187 -187
  60. package/test/join.test.js +110 -110
  61. package/test/native.test.js +158 -158
  62. package/test/regress-5.1.0.js +271 -271
  63. package/test/smoke.js +58 -58
  64. package/test/sql-parser.test.js +273 -0
  65. package/test/wasm.test.js +110 -110
  66. package/wasm/browser.d.ts +89 -89
  67. package/wasm/browser.mjs +569 -569
  68. package/wasm/browser_bg.mjs +597 -597
  69. package/wasm/jsql_neo_wasm.d.ts +38 -38
  70. package/wasm/jsql_neo_wasm.js +520 -520
  71. package/wasm/jsql_neo_wasm_bg.wasm.d.ts +26 -26
  72. package/wasm/package.json +11 -11
@@ -1,606 +1,606 @@
1
- # This file is automatically @generated by Cargo.
2
- # It is not intended for manual editing.
3
- version = 4
4
-
5
- [[package]]
6
- name = "aho-corasick"
7
- version = "1.1.4"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
- dependencies = [
11
- "memchr",
12
- ]
13
-
14
- [[package]]
15
- name = "android_system_properties"
16
- version = "0.1.5"
17
- source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
- dependencies = [
20
- "libc",
21
- ]
22
-
23
- [[package]]
24
- name = "autocfg"
25
- version = "1.5.1"
26
- source = "registry+https://github.com/rust-lang/crates.io-index"
27
- checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
28
-
29
- [[package]]
30
- name = "bincode"
31
- version = "1.3.3"
32
- source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
34
- dependencies = [
35
- "serde",
36
- ]
37
-
38
- [[package]]
39
- name = "bitflags"
40
- version = "2.13.1"
41
- source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
43
-
44
- [[package]]
45
- name = "bumpalo"
46
- version = "3.20.3"
47
- source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
49
-
50
- [[package]]
51
- name = "cc"
52
- version = "1.4.0"
53
- source = "registry+https://github.com/rust-lang/crates.io-index"
54
- checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
55
- dependencies = [
56
- "find-msvc-tools",
57
- "shlex",
58
- ]
59
-
60
- [[package]]
61
- name = "cfg-if"
62
- version = "1.0.4"
63
- source = "registry+https://github.com/rust-lang/crates.io-index"
64
- checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
65
-
66
- [[package]]
67
- name = "chrono"
68
- version = "0.4.45"
69
- source = "registry+https://github.com/rust-lang/crates.io-index"
70
- checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
71
- dependencies = [
72
- "iana-time-zone",
73
- "js-sys",
74
- "num-traits",
75
- "wasm-bindgen",
76
- "windows-link",
77
- ]
78
-
79
- [[package]]
80
- name = "convert_case"
81
- version = "0.6.0"
82
- source = "registry+https://github.com/rust-lang/crates.io-index"
83
- checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
84
- dependencies = [
85
- "unicode-segmentation",
86
- ]
87
-
88
- [[package]]
89
- name = "core-foundation-sys"
90
- version = "0.8.7"
91
- source = "registry+https://github.com/rust-lang/crates.io-index"
92
- checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
93
-
94
- [[package]]
95
- name = "crc32fast"
96
- version = "1.5.0"
97
- source = "registry+https://github.com/rust-lang/crates.io-index"
98
- checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
99
- dependencies = [
100
- "cfg-if",
101
- ]
102
-
103
- [[package]]
104
- name = "ctor"
105
- version = "0.2.9"
106
- source = "registry+https://github.com/rust-lang/crates.io-index"
107
- checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
108
- dependencies = [
109
- "quote",
110
- "syn 2.0.119",
111
- ]
112
-
113
- [[package]]
114
- name = "equivalent"
115
- version = "1.0.2"
116
- source = "registry+https://github.com/rust-lang/crates.io-index"
117
- checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
118
-
119
- [[package]]
120
- name = "find-msvc-tools"
121
- version = "0.1.9"
122
- source = "registry+https://github.com/rust-lang/crates.io-index"
123
- checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
124
-
125
- [[package]]
126
- name = "futures-core"
127
- version = "0.3.33"
128
- source = "registry+https://github.com/rust-lang/crates.io-index"
129
- checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
130
-
131
- [[package]]
132
- name = "futures-task"
133
- version = "0.3.33"
134
- source = "registry+https://github.com/rust-lang/crates.io-index"
135
- checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
136
-
137
- [[package]]
138
- name = "futures-util"
139
- version = "0.3.33"
140
- source = "registry+https://github.com/rust-lang/crates.io-index"
141
- checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
142
- dependencies = [
143
- "futures-core",
144
- "futures-task",
145
- "pin-project-lite",
146
- "slab",
147
- ]
148
-
149
- [[package]]
150
- name = "hashbrown"
151
- version = "0.17.1"
152
- source = "registry+https://github.com/rust-lang/crates.io-index"
153
- checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
154
-
155
- [[package]]
156
- name = "iana-time-zone"
157
- version = "0.1.65"
158
- source = "registry+https://github.com/rust-lang/crates.io-index"
159
- checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
160
- dependencies = [
161
- "android_system_properties",
162
- "core-foundation-sys",
163
- "iana-time-zone-haiku",
164
- "js-sys",
165
- "log",
166
- "wasm-bindgen",
167
- "windows-core",
168
- ]
169
-
170
- [[package]]
171
- name = "iana-time-zone-haiku"
172
- version = "0.1.2"
173
- source = "registry+https://github.com/rust-lang/crates.io-index"
174
- checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
175
- dependencies = [
176
- "cc",
177
- ]
178
-
179
- [[package]]
180
- name = "indexmap"
181
- version = "2.14.0"
182
- source = "registry+https://github.com/rust-lang/crates.io-index"
183
- checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
184
- dependencies = [
185
- "equivalent",
186
- "hashbrown",
187
- ]
188
-
189
- [[package]]
190
- name = "itoa"
191
- version = "1.0.18"
192
- source = "registry+https://github.com/rust-lang/crates.io-index"
193
- checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
194
-
195
- [[package]]
196
- name = "js-sys"
197
- version = "0.3.103"
198
- source = "registry+https://github.com/rust-lang/crates.io-index"
199
- checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
200
- dependencies = [
201
- "cfg-if",
202
- "futures-util",
203
- "wasm-bindgen",
204
- ]
205
-
206
- [[package]]
207
- name = "jsql-neo-core"
208
- version = "0.1.0"
209
- dependencies = [
210
- "bincode",
211
- "chrono",
212
- "crc32fast",
213
- "itoa",
214
- "rustc-hash",
215
- "ryu",
216
- "serde",
217
- "serde_json",
218
- ]
219
-
220
- [[package]]
221
- name = "jsql-neo-native"
222
- version = "0.1.0"
223
- dependencies = [
224
- "jsql-neo-core",
225
- "napi",
226
- "napi-build",
227
- "napi-derive",
228
- "serde_json",
229
- ]
230
-
231
- [[package]]
232
- name = "libc"
233
- version = "0.2.189"
234
- source = "registry+https://github.com/rust-lang/crates.io-index"
235
- checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
236
-
237
- [[package]]
238
- name = "libloading"
239
- version = "0.8.9"
240
- source = "registry+https://github.com/rust-lang/crates.io-index"
241
- checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
242
- dependencies = [
243
- "cfg-if",
244
- "windows-link",
245
- ]
246
-
247
- [[package]]
248
- name = "log"
249
- version = "0.4.33"
250
- source = "registry+https://github.com/rust-lang/crates.io-index"
251
- checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
252
-
253
- [[package]]
254
- name = "memchr"
255
- version = "2.8.3"
256
- source = "registry+https://github.com/rust-lang/crates.io-index"
257
- checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
258
-
259
- [[package]]
260
- name = "napi"
261
- version = "2.16.17"
262
- source = "registry+https://github.com/rust-lang/crates.io-index"
263
- checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
264
- dependencies = [
265
- "bitflags",
266
- "ctor",
267
- "napi-derive",
268
- "napi-sys",
269
- "once_cell",
270
- ]
271
-
272
- [[package]]
273
- name = "napi-build"
274
- version = "2.4.0"
275
- source = "registry+https://github.com/rust-lang/crates.io-index"
276
- checksum = "5282704fbe8d49b0cf8b08e3f33233416a528658f205c7e5ace63b582de0b11c"
277
-
278
- [[package]]
279
- name = "napi-derive"
280
- version = "2.16.13"
281
- source = "registry+https://github.com/rust-lang/crates.io-index"
282
- checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
283
- dependencies = [
284
- "cfg-if",
285
- "convert_case",
286
- "napi-derive-backend",
287
- "proc-macro2",
288
- "quote",
289
- "syn 2.0.119",
290
- ]
291
-
292
- [[package]]
293
- name = "napi-derive-backend"
294
- version = "1.0.75"
295
- source = "registry+https://github.com/rust-lang/crates.io-index"
296
- checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
297
- dependencies = [
298
- "convert_case",
299
- "once_cell",
300
- "proc-macro2",
301
- "quote",
302
- "regex",
303
- "semver",
304
- "syn 2.0.119",
305
- ]
306
-
307
- [[package]]
308
- name = "napi-sys"
309
- version = "2.4.0"
310
- source = "registry+https://github.com/rust-lang/crates.io-index"
311
- checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
312
- dependencies = [
313
- "libloading",
314
- ]
315
-
316
- [[package]]
317
- name = "num-traits"
318
- version = "0.2.19"
319
- source = "registry+https://github.com/rust-lang/crates.io-index"
320
- checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
321
- dependencies = [
322
- "autocfg",
323
- ]
324
-
325
- [[package]]
326
- name = "once_cell"
327
- version = "1.21.4"
328
- source = "registry+https://github.com/rust-lang/crates.io-index"
329
- checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
330
-
331
- [[package]]
332
- name = "pin-project-lite"
333
- version = "0.2.17"
334
- source = "registry+https://github.com/rust-lang/crates.io-index"
335
- checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
336
-
337
- [[package]]
338
- name = "proc-macro2"
339
- version = "1.0.107"
340
- source = "registry+https://github.com/rust-lang/crates.io-index"
341
- checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
342
- dependencies = [
343
- "unicode-ident",
344
- ]
345
-
346
- [[package]]
347
- name = "quote"
348
- version = "1.0.47"
349
- source = "registry+https://github.com/rust-lang/crates.io-index"
350
- checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
351
- dependencies = [
352
- "proc-macro2",
353
- ]
354
-
355
- [[package]]
356
- name = "regex"
357
- version = "1.13.1"
358
- source = "registry+https://github.com/rust-lang/crates.io-index"
359
- checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
360
- dependencies = [
361
- "aho-corasick",
362
- "memchr",
363
- "regex-automata",
364
- "regex-syntax",
365
- ]
366
-
367
- [[package]]
368
- name = "regex-automata"
369
- version = "0.4.16"
370
- source = "registry+https://github.com/rust-lang/crates.io-index"
371
- checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
372
- dependencies = [
373
- "aho-corasick",
374
- "memchr",
375
- "regex-syntax",
376
- ]
377
-
378
- [[package]]
379
- name = "regex-syntax"
380
- version = "0.8.11"
381
- source = "registry+https://github.com/rust-lang/crates.io-index"
382
- checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
383
-
384
- [[package]]
385
- name = "rustc-hash"
386
- version = "2.1.3"
387
- source = "registry+https://github.com/rust-lang/crates.io-index"
388
- checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
389
-
390
- [[package]]
391
- name = "rustversion"
392
- version = "1.0.23"
393
- source = "registry+https://github.com/rust-lang/crates.io-index"
394
- checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
395
-
396
- [[package]]
397
- name = "ryu"
398
- version = "1.0.23"
399
- source = "registry+https://github.com/rust-lang/crates.io-index"
400
- checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
401
-
402
- [[package]]
403
- name = "semver"
404
- version = "1.0.28"
405
- source = "registry+https://github.com/rust-lang/crates.io-index"
406
- checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
407
-
408
- [[package]]
409
- name = "serde"
410
- version = "1.0.229"
411
- source = "registry+https://github.com/rust-lang/crates.io-index"
412
- checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
413
- dependencies = [
414
- "serde_core",
415
- "serde_derive",
416
- ]
417
-
418
- [[package]]
419
- name = "serde_core"
420
- version = "1.0.229"
421
- source = "registry+https://github.com/rust-lang/crates.io-index"
422
- checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
423
- dependencies = [
424
- "serde_derive",
425
- ]
426
-
427
- [[package]]
428
- name = "serde_derive"
429
- version = "1.0.229"
430
- source = "registry+https://github.com/rust-lang/crates.io-index"
431
- checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
432
- dependencies = [
433
- "proc-macro2",
434
- "quote",
435
- "syn 3.0.3",
436
- ]
437
-
438
- [[package]]
439
- name = "serde_json"
440
- version = "1.0.151"
441
- source = "registry+https://github.com/rust-lang/crates.io-index"
442
- checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
443
- dependencies = [
444
- "indexmap",
445
- "itoa",
446
- "memchr",
447
- "serde",
448
- "serde_core",
449
- "zmij",
450
- ]
451
-
452
- [[package]]
453
- name = "shlex"
454
- version = "2.0.1"
455
- source = "registry+https://github.com/rust-lang/crates.io-index"
456
- checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
457
-
458
- [[package]]
459
- name = "slab"
460
- version = "0.4.12"
461
- source = "registry+https://github.com/rust-lang/crates.io-index"
462
- checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
463
-
464
- [[package]]
465
- name = "syn"
466
- version = "2.0.119"
467
- source = "registry+https://github.com/rust-lang/crates.io-index"
468
- checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
469
- dependencies = [
470
- "proc-macro2",
471
- "quote",
472
- "unicode-ident",
473
- ]
474
-
475
- [[package]]
476
- name = "syn"
477
- version = "3.0.3"
478
- source = "registry+https://github.com/rust-lang/crates.io-index"
479
- checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
480
- dependencies = [
481
- "proc-macro2",
482
- "quote",
483
- "unicode-ident",
484
- ]
485
-
486
- [[package]]
487
- name = "unicode-ident"
488
- version = "1.0.24"
489
- source = "registry+https://github.com/rust-lang/crates.io-index"
490
- checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
491
-
492
- [[package]]
493
- name = "unicode-segmentation"
494
- version = "1.13.3"
495
- source = "registry+https://github.com/rust-lang/crates.io-index"
496
- checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
497
-
498
- [[package]]
499
- name = "wasm-bindgen"
500
- version = "0.2.126"
501
- source = "registry+https://github.com/rust-lang/crates.io-index"
502
- checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
503
- dependencies = [
504
- "cfg-if",
505
- "once_cell",
506
- "rustversion",
507
- "wasm-bindgen-macro",
508
- "wasm-bindgen-shared",
509
- ]
510
-
511
- [[package]]
512
- name = "wasm-bindgen-macro"
513
- version = "0.2.126"
514
- source = "registry+https://github.com/rust-lang/crates.io-index"
515
- checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
516
- dependencies = [
517
- "quote",
518
- "wasm-bindgen-macro-support",
519
- ]
520
-
521
- [[package]]
522
- name = "wasm-bindgen-macro-support"
523
- version = "0.2.126"
524
- source = "registry+https://github.com/rust-lang/crates.io-index"
525
- checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
526
- dependencies = [
527
- "bumpalo",
528
- "proc-macro2",
529
- "quote",
530
- "syn 2.0.119",
531
- "wasm-bindgen-shared",
532
- ]
533
-
534
- [[package]]
535
- name = "wasm-bindgen-shared"
536
- version = "0.2.126"
537
- source = "registry+https://github.com/rust-lang/crates.io-index"
538
- checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
539
- dependencies = [
540
- "unicode-ident",
541
- ]
542
-
543
- [[package]]
544
- name = "windows-core"
545
- version = "0.62.2"
546
- source = "registry+https://github.com/rust-lang/crates.io-index"
547
- checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
548
- dependencies = [
549
- "windows-implement",
550
- "windows-interface",
551
- "windows-link",
552
- "windows-result",
553
- "windows-strings",
554
- ]
555
-
556
- [[package]]
557
- name = "windows-implement"
558
- version = "0.60.2"
559
- source = "registry+https://github.com/rust-lang/crates.io-index"
560
- checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
561
- dependencies = [
562
- "proc-macro2",
563
- "quote",
564
- "syn 2.0.119",
565
- ]
566
-
567
- [[package]]
568
- name = "windows-interface"
569
- version = "0.59.3"
570
- source = "registry+https://github.com/rust-lang/crates.io-index"
571
- checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
572
- dependencies = [
573
- "proc-macro2",
574
- "quote",
575
- "syn 2.0.119",
576
- ]
577
-
578
- [[package]]
579
- name = "windows-link"
580
- version = "0.2.1"
581
- source = "registry+https://github.com/rust-lang/crates.io-index"
582
- checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
583
-
584
- [[package]]
585
- name = "windows-result"
586
- version = "0.4.1"
587
- source = "registry+https://github.com/rust-lang/crates.io-index"
588
- checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
589
- dependencies = [
590
- "windows-link",
591
- ]
592
-
593
- [[package]]
594
- name = "windows-strings"
595
- version = "0.5.1"
596
- source = "registry+https://github.com/rust-lang/crates.io-index"
597
- checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
598
- dependencies = [
599
- "windows-link",
600
- ]
601
-
602
- [[package]]
603
- name = "zmij"
604
- version = "1.0.23"
605
- source = "registry+https://github.com/rust-lang/crates.io-index"
606
- checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "autocfg"
25
+ version = "1.5.1"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
28
+
29
+ [[package]]
30
+ name = "bincode"
31
+ version = "1.3.3"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
34
+ dependencies = [
35
+ "serde",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "bitflags"
40
+ version = "2.13.1"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
43
+
44
+ [[package]]
45
+ name = "bumpalo"
46
+ version = "3.20.3"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
49
+
50
+ [[package]]
51
+ name = "cc"
52
+ version = "1.4.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
55
+ dependencies = [
56
+ "find-msvc-tools",
57
+ "shlex",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "cfg-if"
62
+ version = "1.0.4"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
65
+
66
+ [[package]]
67
+ name = "chrono"
68
+ version = "0.4.45"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
71
+ dependencies = [
72
+ "iana-time-zone",
73
+ "js-sys",
74
+ "num-traits",
75
+ "wasm-bindgen",
76
+ "windows-link",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "convert_case"
81
+ version = "0.6.0"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
84
+ dependencies = [
85
+ "unicode-segmentation",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "core-foundation-sys"
90
+ version = "0.8.7"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
93
+
94
+ [[package]]
95
+ name = "crc32fast"
96
+ version = "1.5.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
99
+ dependencies = [
100
+ "cfg-if",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "ctor"
105
+ version = "0.2.9"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
108
+ dependencies = [
109
+ "quote",
110
+ "syn 2.0.119",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "equivalent"
115
+ version = "1.0.2"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
118
+
119
+ [[package]]
120
+ name = "find-msvc-tools"
121
+ version = "0.1.9"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
124
+
125
+ [[package]]
126
+ name = "futures-core"
127
+ version = "0.3.33"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
130
+
131
+ [[package]]
132
+ name = "futures-task"
133
+ version = "0.3.33"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
136
+
137
+ [[package]]
138
+ name = "futures-util"
139
+ version = "0.3.33"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
142
+ dependencies = [
143
+ "futures-core",
144
+ "futures-task",
145
+ "pin-project-lite",
146
+ "slab",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "hashbrown"
151
+ version = "0.17.1"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
154
+
155
+ [[package]]
156
+ name = "iana-time-zone"
157
+ version = "0.1.65"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
160
+ dependencies = [
161
+ "android_system_properties",
162
+ "core-foundation-sys",
163
+ "iana-time-zone-haiku",
164
+ "js-sys",
165
+ "log",
166
+ "wasm-bindgen",
167
+ "windows-core",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "iana-time-zone-haiku"
172
+ version = "0.1.2"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
175
+ dependencies = [
176
+ "cc",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "indexmap"
181
+ version = "2.14.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
184
+ dependencies = [
185
+ "equivalent",
186
+ "hashbrown",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "itoa"
191
+ version = "1.0.18"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
194
+
195
+ [[package]]
196
+ name = "js-sys"
197
+ version = "0.3.103"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
200
+ dependencies = [
201
+ "cfg-if",
202
+ "futures-util",
203
+ "wasm-bindgen",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "jsql-neo-core"
208
+ version = "0.1.0"
209
+ dependencies = [
210
+ "bincode",
211
+ "chrono",
212
+ "crc32fast",
213
+ "itoa",
214
+ "rustc-hash",
215
+ "ryu",
216
+ "serde",
217
+ "serde_json",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "jsql-neo-native"
222
+ version = "0.1.0"
223
+ dependencies = [
224
+ "jsql-neo-core",
225
+ "napi",
226
+ "napi-build",
227
+ "napi-derive",
228
+ "serde_json",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "libc"
233
+ version = "0.2.189"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
236
+
237
+ [[package]]
238
+ name = "libloading"
239
+ version = "0.8.9"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
242
+ dependencies = [
243
+ "cfg-if",
244
+ "windows-link",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "log"
249
+ version = "0.4.33"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
252
+
253
+ [[package]]
254
+ name = "memchr"
255
+ version = "2.8.3"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
258
+
259
+ [[package]]
260
+ name = "napi"
261
+ version = "2.16.17"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
264
+ dependencies = [
265
+ "bitflags",
266
+ "ctor",
267
+ "napi-derive",
268
+ "napi-sys",
269
+ "once_cell",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "napi-build"
274
+ version = "2.4.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "5282704fbe8d49b0cf8b08e3f33233416a528658f205c7e5ace63b582de0b11c"
277
+
278
+ [[package]]
279
+ name = "napi-derive"
280
+ version = "2.16.13"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
283
+ dependencies = [
284
+ "cfg-if",
285
+ "convert_case",
286
+ "napi-derive-backend",
287
+ "proc-macro2",
288
+ "quote",
289
+ "syn 2.0.119",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "napi-derive-backend"
294
+ version = "1.0.75"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
297
+ dependencies = [
298
+ "convert_case",
299
+ "once_cell",
300
+ "proc-macro2",
301
+ "quote",
302
+ "regex",
303
+ "semver",
304
+ "syn 2.0.119",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "napi-sys"
309
+ version = "2.4.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
312
+ dependencies = [
313
+ "libloading",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "num-traits"
318
+ version = "0.2.19"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
321
+ dependencies = [
322
+ "autocfg",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "once_cell"
327
+ version = "1.21.4"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
330
+
331
+ [[package]]
332
+ name = "pin-project-lite"
333
+ version = "0.2.17"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
336
+
337
+ [[package]]
338
+ name = "proc-macro2"
339
+ version = "1.0.107"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
342
+ dependencies = [
343
+ "unicode-ident",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "quote"
348
+ version = "1.0.47"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
351
+ dependencies = [
352
+ "proc-macro2",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "regex"
357
+ version = "1.13.1"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
360
+ dependencies = [
361
+ "aho-corasick",
362
+ "memchr",
363
+ "regex-automata",
364
+ "regex-syntax",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "regex-automata"
369
+ version = "0.4.16"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
372
+ dependencies = [
373
+ "aho-corasick",
374
+ "memchr",
375
+ "regex-syntax",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "regex-syntax"
380
+ version = "0.8.11"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
383
+
384
+ [[package]]
385
+ name = "rustc-hash"
386
+ version = "2.1.3"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
389
+
390
+ [[package]]
391
+ name = "rustversion"
392
+ version = "1.0.23"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
395
+
396
+ [[package]]
397
+ name = "ryu"
398
+ version = "1.0.23"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
401
+
402
+ [[package]]
403
+ name = "semver"
404
+ version = "1.0.28"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
407
+
408
+ [[package]]
409
+ name = "serde"
410
+ version = "1.0.229"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
413
+ dependencies = [
414
+ "serde_core",
415
+ "serde_derive",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "serde_core"
420
+ version = "1.0.229"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
423
+ dependencies = [
424
+ "serde_derive",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "serde_derive"
429
+ version = "1.0.229"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
432
+ dependencies = [
433
+ "proc-macro2",
434
+ "quote",
435
+ "syn 3.0.3",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "serde_json"
440
+ version = "1.0.151"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
443
+ dependencies = [
444
+ "indexmap",
445
+ "itoa",
446
+ "memchr",
447
+ "serde",
448
+ "serde_core",
449
+ "zmij",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "shlex"
454
+ version = "2.0.1"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
457
+
458
+ [[package]]
459
+ name = "slab"
460
+ version = "0.4.12"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
463
+
464
+ [[package]]
465
+ name = "syn"
466
+ version = "2.0.119"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
469
+ dependencies = [
470
+ "proc-macro2",
471
+ "quote",
472
+ "unicode-ident",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "syn"
477
+ version = "3.0.3"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
480
+ dependencies = [
481
+ "proc-macro2",
482
+ "quote",
483
+ "unicode-ident",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "unicode-ident"
488
+ version = "1.0.24"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
491
+
492
+ [[package]]
493
+ name = "unicode-segmentation"
494
+ version = "1.13.3"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
497
+
498
+ [[package]]
499
+ name = "wasm-bindgen"
500
+ version = "0.2.126"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
503
+ dependencies = [
504
+ "cfg-if",
505
+ "once_cell",
506
+ "rustversion",
507
+ "wasm-bindgen-macro",
508
+ "wasm-bindgen-shared",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "wasm-bindgen-macro"
513
+ version = "0.2.126"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
516
+ dependencies = [
517
+ "quote",
518
+ "wasm-bindgen-macro-support",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "wasm-bindgen-macro-support"
523
+ version = "0.2.126"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
526
+ dependencies = [
527
+ "bumpalo",
528
+ "proc-macro2",
529
+ "quote",
530
+ "syn 2.0.119",
531
+ "wasm-bindgen-shared",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "wasm-bindgen-shared"
536
+ version = "0.2.126"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
539
+ dependencies = [
540
+ "unicode-ident",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "windows-core"
545
+ version = "0.62.2"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
548
+ dependencies = [
549
+ "windows-implement",
550
+ "windows-interface",
551
+ "windows-link",
552
+ "windows-result",
553
+ "windows-strings",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "windows-implement"
558
+ version = "0.60.2"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
561
+ dependencies = [
562
+ "proc-macro2",
563
+ "quote",
564
+ "syn 2.0.119",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "windows-interface"
569
+ version = "0.59.3"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
572
+ dependencies = [
573
+ "proc-macro2",
574
+ "quote",
575
+ "syn 2.0.119",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "windows-link"
580
+ version = "0.2.1"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
583
+
584
+ [[package]]
585
+ name = "windows-result"
586
+ version = "0.4.1"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
589
+ dependencies = [
590
+ "windows-link",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "windows-strings"
595
+ version = "0.5.1"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
598
+ dependencies = [
599
+ "windows-link",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "zmij"
604
+ version = "1.0.23"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"