engramedb 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.
@@ -0,0 +1,697 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "arrayref"
7
+ version = "0.3.9"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
10
+
11
+ [[package]]
12
+ name = "arrayvec"
13
+ version = "0.7.6"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
16
+
17
+ [[package]]
18
+ name = "autocfg"
19
+ version = "1.5.0"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
22
+
23
+ [[package]]
24
+ name = "bincode"
25
+ version = "1.3.3"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
28
+ dependencies = [
29
+ "serde",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "bitflags"
34
+ version = "2.11.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
37
+
38
+ [[package]]
39
+ name = "blake3"
40
+ version = "1.8.5"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
43
+ dependencies = [
44
+ "arrayref",
45
+ "arrayvec",
46
+ "cc",
47
+ "cfg-if",
48
+ "constant_time_eq",
49
+ "cpufeatures",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "bumpalo"
54
+ version = "3.20.2"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
57
+
58
+ [[package]]
59
+ name = "bytecheck"
60
+ version = "0.8.2"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "0caa33a2c0edca0419d15ac723dff03f1956f7978329b1e3b5fdaaaed9d3ca8b"
63
+ dependencies = [
64
+ "bytecheck_derive",
65
+ "ptr_meta",
66
+ "rancor",
67
+ "simdutf8",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "bytecheck_derive"
72
+ version = "0.8.2"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "89385e82b5d1821d2219e0b095efa2cc1f246cbf99080f3be46a1a85c0d392d9"
75
+ dependencies = [
76
+ "proc-macro2",
77
+ "quote",
78
+ "syn",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "bytes"
83
+ version = "1.11.1"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
86
+
87
+ [[package]]
88
+ name = "cc"
89
+ version = "1.2.61"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
92
+ dependencies = [
93
+ "find-msvc-tools",
94
+ "shlex",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "cfg-if"
99
+ version = "1.0.4"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
102
+
103
+ [[package]]
104
+ name = "constant_time_eq"
105
+ version = "0.4.2"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
108
+
109
+ [[package]]
110
+ name = "cpufeatures"
111
+ version = "0.3.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
114
+ dependencies = [
115
+ "libc",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "engramdb"
120
+ version = "0.1.0"
121
+ dependencies = [
122
+ "bincode",
123
+ "blake3",
124
+ "hex",
125
+ "log",
126
+ "memmap2",
127
+ "pyo3",
128
+ "rkyv",
129
+ "serde",
130
+ "serde_json",
131
+ "thiserror",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "equivalent"
136
+ version = "1.0.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
139
+
140
+ [[package]]
141
+ name = "find-msvc-tools"
142
+ version = "0.1.9"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
145
+
146
+ [[package]]
147
+ name = "futures-core"
148
+ version = "0.3.32"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
151
+
152
+ [[package]]
153
+ name = "futures-task"
154
+ version = "0.3.32"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
157
+
158
+ [[package]]
159
+ name = "futures-util"
160
+ version = "0.3.32"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
163
+ dependencies = [
164
+ "futures-core",
165
+ "futures-task",
166
+ "pin-project-lite",
167
+ "slab",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "hashbrown"
172
+ version = "0.17.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
175
+
176
+ [[package]]
177
+ name = "heck"
178
+ version = "0.4.1"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
181
+
182
+ [[package]]
183
+ name = "hex"
184
+ version = "0.4.3"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
187
+
188
+ [[package]]
189
+ name = "indexmap"
190
+ version = "2.14.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
193
+ dependencies = [
194
+ "equivalent",
195
+ "hashbrown",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "indoc"
200
+ version = "2.0.7"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
203
+ dependencies = [
204
+ "rustversion",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "itoa"
209
+ version = "1.0.18"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
212
+
213
+ [[package]]
214
+ name = "js-sys"
215
+ version = "0.3.97"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
218
+ dependencies = [
219
+ "cfg-if",
220
+ "futures-util",
221
+ "once_cell",
222
+ "wasm-bindgen",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "libc"
227
+ version = "0.2.186"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
230
+
231
+ [[package]]
232
+ name = "lock_api"
233
+ version = "0.4.14"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
236
+ dependencies = [
237
+ "scopeguard",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "log"
242
+ version = "0.4.29"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
245
+
246
+ [[package]]
247
+ name = "memchr"
248
+ version = "2.8.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
251
+
252
+ [[package]]
253
+ name = "memmap2"
254
+ version = "0.9.10"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
257
+ dependencies = [
258
+ "libc",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "memoffset"
263
+ version = "0.9.1"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
266
+ dependencies = [
267
+ "autocfg",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "munge"
272
+ version = "0.4.7"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
275
+ dependencies = [
276
+ "munge_macro",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "munge_macro"
281
+ version = "0.4.7"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
284
+ dependencies = [
285
+ "proc-macro2",
286
+ "quote",
287
+ "syn",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "once_cell"
292
+ version = "1.21.4"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
295
+
296
+ [[package]]
297
+ name = "parking_lot"
298
+ version = "0.12.5"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
301
+ dependencies = [
302
+ "lock_api",
303
+ "parking_lot_core",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "parking_lot_core"
308
+ version = "0.9.12"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
311
+ dependencies = [
312
+ "cfg-if",
313
+ "libc",
314
+ "redox_syscall",
315
+ "smallvec",
316
+ "windows-link",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "pin-project-lite"
321
+ version = "0.2.17"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
324
+
325
+ [[package]]
326
+ name = "portable-atomic"
327
+ version = "1.13.1"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
330
+
331
+ [[package]]
332
+ name = "proc-macro2"
333
+ version = "1.0.106"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
336
+ dependencies = [
337
+ "unicode-ident",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "ptr_meta"
342
+ version = "0.3.1"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
345
+ dependencies = [
346
+ "ptr_meta_derive",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "ptr_meta_derive"
351
+ version = "0.3.1"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
354
+ dependencies = [
355
+ "proc-macro2",
356
+ "quote",
357
+ "syn",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "pyo3"
362
+ version = "0.21.2"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
365
+ dependencies = [
366
+ "cfg-if",
367
+ "indoc",
368
+ "libc",
369
+ "memoffset",
370
+ "parking_lot",
371
+ "portable-atomic",
372
+ "pyo3-build-config",
373
+ "pyo3-ffi",
374
+ "pyo3-macros",
375
+ "unindent",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "pyo3-build-config"
380
+ version = "0.21.2"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
383
+ dependencies = [
384
+ "once_cell",
385
+ "target-lexicon",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "pyo3-ffi"
390
+ version = "0.21.2"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
393
+ dependencies = [
394
+ "libc",
395
+ "pyo3-build-config",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "pyo3-macros"
400
+ version = "0.21.2"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
403
+ dependencies = [
404
+ "proc-macro2",
405
+ "pyo3-macros-backend",
406
+ "quote",
407
+ "syn",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "pyo3-macros-backend"
412
+ version = "0.21.2"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
415
+ dependencies = [
416
+ "heck",
417
+ "proc-macro2",
418
+ "pyo3-build-config",
419
+ "quote",
420
+ "syn",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "quote"
425
+ version = "1.0.45"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
428
+ dependencies = [
429
+ "proc-macro2",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "rancor"
434
+ version = "0.1.1"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "a063ea72381527c2a0561da9c80000ef822bdd7c3241b1cc1b12100e3df081ee"
437
+ dependencies = [
438
+ "ptr_meta",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "redox_syscall"
443
+ version = "0.5.18"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
446
+ dependencies = [
447
+ "bitflags",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "rend"
452
+ version = "0.5.3"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "cadadef317c2f20755a64d7fdc48f9e7178ee6b0e1f7fce33fa60f1d68a276e6"
455
+ dependencies = [
456
+ "bytecheck",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "rkyv"
461
+ version = "0.8.16"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "73389e0c99e664f919275ab5b5b0471391fe9a8de61e1dff9b1eaf56a90f16e3"
464
+ dependencies = [
465
+ "bytecheck",
466
+ "bytes",
467
+ "hashbrown",
468
+ "indexmap",
469
+ "munge",
470
+ "ptr_meta",
471
+ "rancor",
472
+ "rend",
473
+ "rkyv_derive",
474
+ "tinyvec",
475
+ "uuid",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "rkyv_derive"
480
+ version = "0.8.16"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "5d2ed0b54125315fb36bd021e82d314d1c126548f871634b483f46b31d13cac6"
483
+ dependencies = [
484
+ "proc-macro2",
485
+ "quote",
486
+ "syn",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "rustversion"
491
+ version = "1.0.22"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
494
+
495
+ [[package]]
496
+ name = "scopeguard"
497
+ version = "1.2.0"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
500
+
501
+ [[package]]
502
+ name = "serde"
503
+ version = "1.0.228"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
506
+ dependencies = [
507
+ "serde_core",
508
+ "serde_derive",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "serde_core"
513
+ version = "1.0.228"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
516
+ dependencies = [
517
+ "serde_derive",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "serde_derive"
522
+ version = "1.0.228"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
525
+ dependencies = [
526
+ "proc-macro2",
527
+ "quote",
528
+ "syn",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "serde_json"
533
+ version = "1.0.149"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
536
+ dependencies = [
537
+ "itoa",
538
+ "memchr",
539
+ "serde",
540
+ "serde_core",
541
+ "zmij",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "shlex"
546
+ version = "1.3.0"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
549
+
550
+ [[package]]
551
+ name = "simdutf8"
552
+ version = "0.1.5"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
555
+
556
+ [[package]]
557
+ name = "slab"
558
+ version = "0.4.12"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
561
+
562
+ [[package]]
563
+ name = "smallvec"
564
+ version = "1.15.1"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
567
+
568
+ [[package]]
569
+ name = "syn"
570
+ version = "2.0.117"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
573
+ dependencies = [
574
+ "proc-macro2",
575
+ "quote",
576
+ "unicode-ident",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "target-lexicon"
581
+ version = "0.12.16"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
584
+
585
+ [[package]]
586
+ name = "thiserror"
587
+ version = "2.0.18"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
590
+ dependencies = [
591
+ "thiserror-impl",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "thiserror-impl"
596
+ version = "2.0.18"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
599
+ dependencies = [
600
+ "proc-macro2",
601
+ "quote",
602
+ "syn",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "tinyvec"
607
+ version = "1.11.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
610
+ dependencies = [
611
+ "tinyvec_macros",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "tinyvec_macros"
616
+ version = "0.1.1"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
619
+
620
+ [[package]]
621
+ name = "unicode-ident"
622
+ version = "1.0.24"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
625
+
626
+ [[package]]
627
+ name = "unindent"
628
+ version = "0.2.4"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
631
+
632
+ [[package]]
633
+ name = "uuid"
634
+ version = "1.23.1"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
637
+ dependencies = [
638
+ "js-sys",
639
+ "wasm-bindgen",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "wasm-bindgen"
644
+ version = "0.2.120"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
647
+ dependencies = [
648
+ "cfg-if",
649
+ "once_cell",
650
+ "rustversion",
651
+ "wasm-bindgen-macro",
652
+ "wasm-bindgen-shared",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "wasm-bindgen-macro"
657
+ version = "0.2.120"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
660
+ dependencies = [
661
+ "quote",
662
+ "wasm-bindgen-macro-support",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "wasm-bindgen-macro-support"
667
+ version = "0.2.120"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
670
+ dependencies = [
671
+ "bumpalo",
672
+ "proc-macro2",
673
+ "quote",
674
+ "syn",
675
+ "wasm-bindgen-shared",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "wasm-bindgen-shared"
680
+ version = "0.2.120"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
683
+ dependencies = [
684
+ "unicode-ident",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "windows-link"
689
+ version = "0.2.1"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
692
+
693
+ [[package]]
694
+ name = "zmij"
695
+ version = "1.0.21"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
@@ -0,0 +1,21 @@
1
+ [package]
2
+ name = "engramdb"
3
+ version = "0.1.0"
4
+ edition = "2024"
5
+ readme = "README.md"
6
+
7
+ [lib]
8
+ name = "engramdb"
9
+ crate-type = ["cdylib", "rlib"]
10
+
11
+ [dependencies]
12
+ pyo3 = { version = "0.21.2", features = ["extension-module"] }
13
+ blake3 = "1.8.5"
14
+ memmap2 = "0.9.10"
15
+ rkyv = "0.8.16"
16
+ thiserror = "2.0.18"
17
+ hex = "0.4.3"
18
+ serde = { version = "1", features = ["derive"] }
19
+ serde_json = "1.0"
20
+ bincode = "1"
21
+ log = "0.4"