duckling 0.1.2 → 0.3.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.
data/Cargo.lock ADDED
@@ -0,0 +1,639 @@
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 = "bindgen"
31
+ version = "0.72.1"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
34
+ dependencies = [
35
+ "bitflags",
36
+ "cexpr",
37
+ "clang-sys",
38
+ "itertools",
39
+ "proc-macro2",
40
+ "quote",
41
+ "regex",
42
+ "rustc-hash",
43
+ "shlex 1.3.0",
44
+ "syn",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "bitflags"
49
+ version = "2.13.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
52
+
53
+ [[package]]
54
+ name = "bumpalo"
55
+ version = "3.20.3"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
58
+
59
+ [[package]]
60
+ name = "cc"
61
+ version = "1.2.65"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
64
+ dependencies = [
65
+ "find-msvc-tools",
66
+ "shlex 2.0.1",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "cexpr"
71
+ version = "0.6.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
74
+ dependencies = [
75
+ "nom",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "cfg-if"
80
+ version = "1.0.4"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
83
+
84
+ [[package]]
85
+ name = "chrono"
86
+ version = "0.4.45"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
89
+ dependencies = [
90
+ "iana-time-zone",
91
+ "js-sys",
92
+ "num-traits",
93
+ "serde",
94
+ "wasm-bindgen",
95
+ "windows-link",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "clang-sys"
100
+ version = "1.8.1"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
103
+ dependencies = [
104
+ "glob",
105
+ "libc",
106
+ "libloading",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "core-foundation-sys"
111
+ version = "0.8.7"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
114
+
115
+ [[package]]
116
+ name = "duckling"
117
+ version = "0.1.0"
118
+ dependencies = [
119
+ "chrono",
120
+ "duckling 0.4.0",
121
+ "magnus",
122
+ "rb-sys",
123
+ "serde",
124
+ "serde_magnus",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "duckling"
129
+ version = "0.4.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "978b87ce9afe88369d26490f008bfd942676e15309c60830480a16863cb98430"
132
+ dependencies = [
133
+ "chrono",
134
+ "log",
135
+ "once_cell",
136
+ "regex",
137
+ "serde",
138
+ "serde_json",
139
+ "smallvec",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "either"
144
+ version = "1.16.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
147
+
148
+ [[package]]
149
+ name = "find-msvc-tools"
150
+ version = "0.1.9"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
153
+
154
+ [[package]]
155
+ name = "futures-core"
156
+ version = "0.3.32"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
159
+
160
+ [[package]]
161
+ name = "futures-task"
162
+ version = "0.3.32"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
165
+
166
+ [[package]]
167
+ name = "futures-util"
168
+ version = "0.3.32"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
171
+ dependencies = [
172
+ "futures-core",
173
+ "futures-task",
174
+ "pin-project-lite",
175
+ "slab",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "glob"
180
+ version = "0.3.3"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
183
+
184
+ [[package]]
185
+ name = "iana-time-zone"
186
+ version = "0.1.65"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
189
+ dependencies = [
190
+ "android_system_properties",
191
+ "core-foundation-sys",
192
+ "iana-time-zone-haiku",
193
+ "js-sys",
194
+ "log",
195
+ "wasm-bindgen",
196
+ "windows-core",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "iana-time-zone-haiku"
201
+ version = "0.1.2"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
204
+ dependencies = [
205
+ "cc",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "itertools"
210
+ version = "0.13.0"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
213
+ dependencies = [
214
+ "either",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "itoa"
219
+ version = "1.0.18"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
222
+
223
+ [[package]]
224
+ name = "js-sys"
225
+ version = "0.3.103"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
228
+ dependencies = [
229
+ "cfg-if",
230
+ "futures-util",
231
+ "wasm-bindgen",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "lazy_static"
236
+ version = "1.5.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
239
+
240
+ [[package]]
241
+ name = "libc"
242
+ version = "0.2.186"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
245
+
246
+ [[package]]
247
+ name = "libloading"
248
+ version = "0.8.9"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
251
+ dependencies = [
252
+ "cfg-if",
253
+ "windows-link",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "log"
258
+ version = "0.4.33"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
261
+
262
+ [[package]]
263
+ name = "magnus"
264
+ version = "0.8.2"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
267
+ dependencies = [
268
+ "chrono",
269
+ "magnus-macros",
270
+ "rb-sys",
271
+ "rb-sys-env",
272
+ "seq-macro",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "magnus-macros"
277
+ version = "0.8.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
280
+ dependencies = [
281
+ "proc-macro2",
282
+ "quote",
283
+ "syn",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "memchr"
288
+ version = "2.8.2"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
291
+
292
+ [[package]]
293
+ name = "minimal-lexical"
294
+ version = "0.2.1"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
297
+
298
+ [[package]]
299
+ name = "nom"
300
+ version = "7.1.3"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
303
+ dependencies = [
304
+ "memchr",
305
+ "minimal-lexical",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "num-traits"
310
+ version = "0.2.19"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
313
+ dependencies = [
314
+ "autocfg",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "once_cell"
319
+ version = "1.21.4"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
322
+
323
+ [[package]]
324
+ name = "pin-project-lite"
325
+ version = "0.2.17"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
328
+
329
+ [[package]]
330
+ name = "proc-macro2"
331
+ version = "1.0.106"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
334
+ dependencies = [
335
+ "unicode-ident",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "quote"
340
+ version = "1.0.46"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
343
+ dependencies = [
344
+ "proc-macro2",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "rb-sys"
349
+ version = "0.9.128"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
352
+ dependencies = [
353
+ "rb-sys-build",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "rb-sys-build"
358
+ version = "0.9.128"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
361
+ dependencies = [
362
+ "bindgen",
363
+ "lazy_static",
364
+ "proc-macro2",
365
+ "quote",
366
+ "regex",
367
+ "shell-words",
368
+ "syn",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "rb-sys-env"
373
+ version = "0.2.3"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
376
+
377
+ [[package]]
378
+ name = "regex"
379
+ version = "1.12.4"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
382
+ dependencies = [
383
+ "aho-corasick",
384
+ "memchr",
385
+ "regex-automata",
386
+ "regex-syntax",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "regex-automata"
391
+ version = "0.4.14"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
394
+ dependencies = [
395
+ "aho-corasick",
396
+ "memchr",
397
+ "regex-syntax",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "regex-syntax"
402
+ version = "0.8.11"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
405
+
406
+ [[package]]
407
+ name = "rustc-hash"
408
+ version = "2.1.2"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
411
+
412
+ [[package]]
413
+ name = "rustversion"
414
+ version = "1.0.22"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
417
+
418
+ [[package]]
419
+ name = "seq-macro"
420
+ version = "0.3.6"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
423
+
424
+ [[package]]
425
+ name = "serde"
426
+ version = "1.0.228"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
429
+ dependencies = [
430
+ "serde_core",
431
+ "serde_derive",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "serde_core"
436
+ version = "1.0.228"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
439
+ dependencies = [
440
+ "serde_derive",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "serde_derive"
445
+ version = "1.0.228"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
448
+ dependencies = [
449
+ "proc-macro2",
450
+ "quote",
451
+ "syn",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "serde_json"
456
+ version = "1.0.150"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
459
+ dependencies = [
460
+ "itoa",
461
+ "memchr",
462
+ "serde",
463
+ "serde_core",
464
+ "zmij",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "serde_magnus"
469
+ version = "0.11.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "8ff64c88ddd26acdcad5a501f18bcc339927b77b69f4a03bfaf2a6fc5ba2ac4b"
472
+ dependencies = [
473
+ "magnus",
474
+ "serde",
475
+ "tap",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "shell-words"
480
+ version = "1.1.1"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
483
+
484
+ [[package]]
485
+ name = "shlex"
486
+ version = "1.3.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
489
+
490
+ [[package]]
491
+ name = "shlex"
492
+ version = "2.0.1"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
495
+
496
+ [[package]]
497
+ name = "slab"
498
+ version = "0.4.12"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
501
+
502
+ [[package]]
503
+ name = "smallvec"
504
+ version = "1.15.2"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
507
+
508
+ [[package]]
509
+ name = "syn"
510
+ version = "2.0.118"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
513
+ dependencies = [
514
+ "proc-macro2",
515
+ "quote",
516
+ "unicode-ident",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "tap"
521
+ version = "1.0.1"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
524
+
525
+ [[package]]
526
+ name = "unicode-ident"
527
+ version = "1.0.24"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
530
+
531
+ [[package]]
532
+ name = "wasm-bindgen"
533
+ version = "0.2.126"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
536
+ dependencies = [
537
+ "cfg-if",
538
+ "once_cell",
539
+ "rustversion",
540
+ "wasm-bindgen-macro",
541
+ "wasm-bindgen-shared",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "wasm-bindgen-macro"
546
+ version = "0.2.126"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
549
+ dependencies = [
550
+ "quote",
551
+ "wasm-bindgen-macro-support",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "wasm-bindgen-macro-support"
556
+ version = "0.2.126"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
559
+ dependencies = [
560
+ "bumpalo",
561
+ "proc-macro2",
562
+ "quote",
563
+ "syn",
564
+ "wasm-bindgen-shared",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "wasm-bindgen-shared"
569
+ version = "0.2.126"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
572
+ dependencies = [
573
+ "unicode-ident",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "windows-core"
578
+ version = "0.62.2"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
581
+ dependencies = [
582
+ "windows-implement",
583
+ "windows-interface",
584
+ "windows-link",
585
+ "windows-result",
586
+ "windows-strings",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "windows-implement"
591
+ version = "0.60.2"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
594
+ dependencies = [
595
+ "proc-macro2",
596
+ "quote",
597
+ "syn",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "windows-interface"
602
+ version = "0.59.3"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
605
+ dependencies = [
606
+ "proc-macro2",
607
+ "quote",
608
+ "syn",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "windows-link"
613
+ version = "0.2.1"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
616
+
617
+ [[package]]
618
+ name = "windows-result"
619
+ version = "0.4.1"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
622
+ dependencies = [
623
+ "windows-link",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "windows-strings"
628
+ version = "0.5.1"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
631
+ dependencies = [
632
+ "windows-link",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "zmij"
637
+ version = "1.0.21"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
data/Cargo.toml ADDED
@@ -0,0 +1,9 @@
1
+ # This Cargo.toml lets tools that operate from the repo root — `cargo fmt`
2
+ # run without --manifest-path, IDEs, and RbSys::ExtensionTask's `cargo
3
+ # metadata` call (which the Rakefile invokes at load time, before any
4
+ # Dir.chdir into ext/duckling/) — discover the Rust project. Add extension
5
+ # dependencies to ext/duckling/Cargo.toml instead; this file only points at
6
+ # it as a workspace member.
7
+ [workspace]
8
+ members = ["ext/duckling"]
9
+ resolver = "2"