solstone-core 0.9.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. solstone_core-0.9.0/PKG-INFO +6 -0
  2. solstone_core-0.9.0/core/Cargo.lock +696 -0
  3. solstone_core-0.9.0/core/Cargo.toml +26 -0
  4. solstone_core-0.9.0/core/crates/solstone-core/Cargo.toml +13 -0
  5. solstone_core-0.9.0/core/crates/solstone-core/src/main.rs +211 -0
  6. solstone_core-0.9.0/core/crates/solstone-core/tests/indexer.rs +136 -0
  7. solstone_core-0.9.0/core/crates/solstone-core/tests/version.rs +166 -0
  8. solstone_core-0.9.0/core/crates/solstone-core-cli/Cargo.toml +9 -0
  9. solstone_core-0.9.0/core/crates/solstone-core-cli/src/lib.rs +415 -0
  10. solstone_core-0.9.0/core/crates/solstone-core-indexer/Cargo.toml +18 -0
  11. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/chunker.rs +129 -0
  12. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/action_logs.rs +76 -0
  13. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/activities.rs +142 -0
  14. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/ai_chat.rs +66 -0
  15. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/browser.rs +170 -0
  16. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/chat.rs +192 -0
  17. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/day_accumulator.rs +51 -0
  18. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/documents.rs +326 -0
  19. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/events.rs +102 -0
  20. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/facet_entities.rs +104 -0
  21. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/imports.rs +263 -0
  22. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/mod.rs +856 -0
  23. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/morning_briefing.rs +232 -0
  24. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/observations.rs +22 -0
  25. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/screen.rs +149 -0
  26. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/content/sense.rs +225 -0
  27. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/discovery.rs +282 -0
  28. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/activity.rs +244 -0
  29. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/candidates.rs +430 -0
  30. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/copresence.rs +88 -0
  31. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/discovery.rs +94 -0
  32. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/document.rs +72 -0
  33. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/event.rs +244 -0
  34. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/mod.rs +1851 -0
  35. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/observation.rs +85 -0
  36. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/registry.rs +145 -0
  37. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/screen.rs +356 -0
  38. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/edges/speaker.rs +814 -0
  39. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/entity_name_matcher.rs +941 -0
  40. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/entity_search.rs +593 -0
  41. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/entity_slug.rs +503 -0
  42. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/lib.rs +15 -0
  43. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/metadata.rs +178 -0
  44. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/paths.rs +95 -0
  45. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/segment.rs +218 -0
  46. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/segment_aggregate.rs +135 -0
  47. solstone_core-0.9.0/core/crates/solstone-core-indexer/src/stream.rs +144 -0
  48. solstone_core-0.9.0/core/crates/solstone-core-indexer-store/Cargo.toml +14 -0
  49. solstone_core-0.9.0/core/crates/solstone-core-indexer-store/src/db.rs +345 -0
  50. solstone_core-0.9.0/core/crates/solstone-core-indexer-store/src/lib.rs +78 -0
  51. solstone_core-0.9.0/core/crates/solstone-core-indexer-store/src/scan.rs +3123 -0
  52. solstone_core-0.9.0/core/crates/solstone-core-journal/Cargo.toml +13 -0
  53. solstone_core-0.9.0/core/crates/solstone-core-journal/src/lib.rs +702 -0
  54. solstone_core-0.9.0/pyproject.toml +16 -0
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: solstone-core
3
+ Version: 0.9.0
4
+ Summary: solstone helper binary. Linux wheels are tagged manylinux2014 / glibc 2.17+, while the binary is fully static and has no libc runtime dependency; Alpine installs fall back to the sdist and cargo.
5
+ License: AGPL-3.0-only
6
+ Requires-Python: >=3.12
@@ -0,0 +1,696 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "android_system_properties"
7
+ version = "0.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
10
+ dependencies = [
11
+ "libc",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "autocfg"
16
+ version = "1.5.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
19
+
20
+ [[package]]
21
+ name = "bitflags"
22
+ version = "2.13.1"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
25
+
26
+ [[package]]
27
+ name = "bumpalo"
28
+ version = "3.20.3"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
31
+
32
+ [[package]]
33
+ name = "cc"
34
+ version = "1.2.67"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
37
+ dependencies = [
38
+ "find-msvc-tools",
39
+ "shlex",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "cfg-if"
44
+ version = "1.0.4"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
47
+
48
+ [[package]]
49
+ name = "chrono"
50
+ version = "0.4.45"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
53
+ dependencies = [
54
+ "iana-time-zone",
55
+ "num-traits",
56
+ "windows-link",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "chrono-tz"
61
+ version = "0.10.4"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
64
+ dependencies = [
65
+ "chrono",
66
+ "phf",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "core-foundation-sys"
71
+ version = "0.8.7"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
74
+
75
+ [[package]]
76
+ name = "equivalent"
77
+ version = "1.0.2"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
80
+
81
+ [[package]]
82
+ name = "fallible-iterator"
83
+ version = "0.3.0"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
86
+
87
+ [[package]]
88
+ name = "fallible-streaming-iterator"
89
+ version = "0.1.9"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
92
+
93
+ [[package]]
94
+ name = "find-msvc-tools"
95
+ version = "0.1.9"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
98
+
99
+ [[package]]
100
+ name = "foldhash"
101
+ version = "0.2.0"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
104
+
105
+ [[package]]
106
+ name = "futures-core"
107
+ version = "0.3.32"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
110
+
111
+ [[package]]
112
+ name = "futures-task"
113
+ version = "0.3.32"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
116
+
117
+ [[package]]
118
+ name = "futures-util"
119
+ version = "0.3.32"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
122
+ dependencies = [
123
+ "futures-core",
124
+ "futures-task",
125
+ "pin-project-lite",
126
+ "slab",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "glob"
131
+ version = "0.3.3"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
134
+
135
+ [[package]]
136
+ name = "hashbrown"
137
+ version = "0.16.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
140
+ dependencies = [
141
+ "foldhash",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "hashbrown"
146
+ version = "0.17.1"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
149
+ dependencies = [
150
+ "foldhash",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "hashlink"
155
+ version = "0.12.1"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "32069d97bb81e38fa67eab65e3393bf804bb85969f2bc06bf13f64aef5aba248"
158
+ dependencies = [
159
+ "hashbrown 0.17.1",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "iana-time-zone"
164
+ version = "0.1.65"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
167
+ dependencies = [
168
+ "android_system_properties",
169
+ "core-foundation-sys",
170
+ "iana-time-zone-haiku",
171
+ "js-sys",
172
+ "log",
173
+ "wasm-bindgen",
174
+ "windows-core",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "iana-time-zone-haiku"
179
+ version = "0.1.2"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
182
+ dependencies = [
183
+ "cc",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "indexmap"
188
+ version = "2.14.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
191
+ dependencies = [
192
+ "equivalent",
193
+ "hashbrown 0.17.1",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "itoa"
198
+ version = "1.0.18"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
201
+
202
+ [[package]]
203
+ name = "js-sys"
204
+ version = "0.3.103"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
207
+ dependencies = [
208
+ "cfg-if",
209
+ "futures-util",
210
+ "wasm-bindgen",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "libc"
215
+ version = "0.2.186"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
218
+
219
+ [[package]]
220
+ name = "libsqlite3-sys"
221
+ version = "0.38.1"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "f6c19a05435c21ac299d71b6a9c13db3e3f47c520517d58990a462a1397a61db"
224
+ dependencies = [
225
+ "cc",
226
+ "pkg-config",
227
+ "vcpkg",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "log"
232
+ version = "0.4.33"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
235
+
236
+ [[package]]
237
+ name = "md5"
238
+ version = "0.8.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "7ebb8d8732c6a6df3d8f032a82911cfc747e00efb95cc46e8d0acd5b5b88570c"
241
+
242
+ [[package]]
243
+ name = "memchr"
244
+ version = "2.8.3"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
247
+
248
+ [[package]]
249
+ name = "num-traits"
250
+ version = "0.2.19"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
253
+ dependencies = [
254
+ "autocfg",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "once_cell"
259
+ version = "1.21.4"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
262
+
263
+ [[package]]
264
+ name = "phf"
265
+ version = "0.12.1"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
268
+ dependencies = [
269
+ "phf_shared",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "phf_shared"
274
+ version = "0.12.1"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
277
+ dependencies = [
278
+ "siphasher",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "pin-project-lite"
283
+ version = "0.2.17"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
286
+
287
+ [[package]]
288
+ name = "pkg-config"
289
+ version = "0.3.33"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
292
+
293
+ [[package]]
294
+ name = "proc-macro2"
295
+ version = "1.0.106"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
298
+ dependencies = [
299
+ "unicode-ident",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "pulldown-cmark"
304
+ version = "0.13.4"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "e9f068eba8e7071c5f9511831b44f32c740d5adf574e990f946ddb53db2f314e"
307
+ dependencies = [
308
+ "bitflags",
309
+ "memchr",
310
+ "unicase",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "quote"
315
+ version = "1.0.46"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
318
+ dependencies = [
319
+ "proc-macro2",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "rapidfuzz"
324
+ version = "0.5.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "270e04e5ea61d40841942bb15e451c29ee1618637bcf97fc7ede5dd4a9b1601b"
327
+
328
+ [[package]]
329
+ name = "rsqlite-vfs"
330
+ version = "0.1.1"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "c51c9ae4df8a7fba42103df5c621fa3c37eccf3a3c650879e90fc48b11cc192c"
333
+ dependencies = [
334
+ "hashbrown 0.16.1",
335
+ "thiserror",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "rusqlite"
340
+ version = "0.40.1"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "11438310b19e3109b6446c33d1ed5e889428cf2e278407bc7896bc4aaea43323"
343
+ dependencies = [
344
+ "bitflags",
345
+ "fallible-iterator",
346
+ "fallible-streaming-iterator",
347
+ "hashlink",
348
+ "libsqlite3-sys",
349
+ "smallvec",
350
+ "sqlite-wasm-rs",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "rustversion"
355
+ version = "1.0.23"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
358
+
359
+ [[package]]
360
+ name = "serde"
361
+ version = "1.0.228"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
364
+ dependencies = [
365
+ "serde_core",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "serde_core"
370
+ version = "1.0.228"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
373
+ dependencies = [
374
+ "serde_derive",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "serde_derive"
379
+ version = "1.0.228"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
382
+ dependencies = [
383
+ "proc-macro2",
384
+ "quote",
385
+ "syn",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "serde_json"
390
+ version = "1.0.150"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
393
+ dependencies = [
394
+ "itoa",
395
+ "memchr",
396
+ "serde",
397
+ "serde_core",
398
+ "zmij",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "shlex"
403
+ version = "2.0.1"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
406
+
407
+ [[package]]
408
+ name = "siphasher"
409
+ version = "1.0.3"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
412
+
413
+ [[package]]
414
+ name = "slab"
415
+ version = "0.4.12"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
418
+
419
+ [[package]]
420
+ name = "smallvec"
421
+ version = "1.15.2"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
424
+
425
+ [[package]]
426
+ name = "solstone-core"
427
+ version = "0.9.0"
428
+ dependencies = [
429
+ "chrono",
430
+ "solstone-core-cli",
431
+ "solstone-core-indexer-store",
432
+ "solstone-core-journal",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "solstone-core-cli"
437
+ version = "0.9.0"
438
+
439
+ [[package]]
440
+ name = "solstone-core-indexer"
441
+ version = "0.9.0"
442
+ dependencies = [
443
+ "chrono",
444
+ "chrono-tz",
445
+ "glob",
446
+ "md5",
447
+ "pulldown-cmark",
448
+ "rapidfuzz",
449
+ "serde_json",
450
+ "unicode-normalization",
451
+ "unidecode",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "solstone-core-indexer-store"
456
+ version = "0.9.0"
457
+ dependencies = [
458
+ "rusqlite",
459
+ "serde_json",
460
+ "solstone-core-indexer",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "solstone-core-journal"
465
+ version = "0.9.0"
466
+ dependencies = [
467
+ "serde_json",
468
+ "toml_edit",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "sqlite-wasm-rs"
473
+ version = "0.5.5"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "dc3efc0da82635d7e1ced0053bbbfa8c7ab9645d0bf36ceb4f7127bb85315d75"
476
+ dependencies = [
477
+ "cc",
478
+ "js-sys",
479
+ "rsqlite-vfs",
480
+ "wasm-bindgen",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "syn"
485
+ version = "2.0.119"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
488
+ dependencies = [
489
+ "proc-macro2",
490
+ "quote",
491
+ "unicode-ident",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "thiserror"
496
+ version = "2.0.18"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
499
+ dependencies = [
500
+ "thiserror-impl",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "thiserror-impl"
505
+ version = "2.0.18"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
508
+ dependencies = [
509
+ "proc-macro2",
510
+ "quote",
511
+ "syn",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "tinyvec"
516
+ version = "1.12.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
519
+ dependencies = [
520
+ "tinyvec_macros",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "tinyvec_macros"
525
+ version = "0.1.1"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
528
+
529
+ [[package]]
530
+ name = "toml_datetime"
531
+ version = "0.6.11"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
534
+
535
+ [[package]]
536
+ name = "toml_edit"
537
+ version = "0.22.27"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
540
+ dependencies = [
541
+ "indexmap",
542
+ "toml_datetime",
543
+ "winnow",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "unicase"
548
+ version = "2.9.0"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
551
+
552
+ [[package]]
553
+ name = "unicode-ident"
554
+ version = "1.0.24"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
557
+
558
+ [[package]]
559
+ name = "unicode-normalization"
560
+ version = "0.1.25"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
563
+ dependencies = [
564
+ "tinyvec",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "unidecode"
569
+ version = "0.3.0"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "402bb19d8e03f1d1a7450e2bd613980869438e0666331be3e073089124aa1adc"
572
+
573
+ [[package]]
574
+ name = "vcpkg"
575
+ version = "0.2.15"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
578
+
579
+ [[package]]
580
+ name = "wasm-bindgen"
581
+ version = "0.2.126"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
584
+ dependencies = [
585
+ "cfg-if",
586
+ "once_cell",
587
+ "rustversion",
588
+ "wasm-bindgen-macro",
589
+ "wasm-bindgen-shared",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "wasm-bindgen-macro"
594
+ version = "0.2.126"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
597
+ dependencies = [
598
+ "quote",
599
+ "wasm-bindgen-macro-support",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "wasm-bindgen-macro-support"
604
+ version = "0.2.126"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
607
+ dependencies = [
608
+ "bumpalo",
609
+ "proc-macro2",
610
+ "quote",
611
+ "syn",
612
+ "wasm-bindgen-shared",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "wasm-bindgen-shared"
617
+ version = "0.2.126"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
620
+ dependencies = [
621
+ "unicode-ident",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "windows-core"
626
+ version = "0.62.2"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
629
+ dependencies = [
630
+ "windows-implement",
631
+ "windows-interface",
632
+ "windows-link",
633
+ "windows-result",
634
+ "windows-strings",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "windows-implement"
639
+ version = "0.60.2"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
642
+ dependencies = [
643
+ "proc-macro2",
644
+ "quote",
645
+ "syn",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "windows-interface"
650
+ version = "0.59.3"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
653
+ dependencies = [
654
+ "proc-macro2",
655
+ "quote",
656
+ "syn",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "windows-link"
661
+ version = "0.2.1"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
664
+
665
+ [[package]]
666
+ name = "windows-result"
667
+ version = "0.4.1"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
670
+ dependencies = [
671
+ "windows-link",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "windows-strings"
676
+ version = "0.5.1"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
679
+ dependencies = [
680
+ "windows-link",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "winnow"
685
+ version = "0.7.15"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
688
+ dependencies = [
689
+ "memchr",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "zmij"
694
+ version = "1.0.23"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"