DirDB-Rust 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.
- dirdb_rust-0.1.0/Cargo.lock +717 -0
- dirdb_rust-0.1.0/Cargo.toml +3 -0
- dirdb_rust-0.1.0/PKG-INFO +126 -0
- dirdb_rust-0.1.0/README.md +115 -0
- dirdb_rust-0.1.0/crates/dirdb-core/Cargo.toml +18 -0
- dirdb_rust-0.1.0/crates/dirdb-core/src/lib.rs +310 -0
- dirdb_rust-0.1.0/crates/dirdb-python/Cargo.toml +13 -0
- dirdb_rust-0.1.0/crates/dirdb-python/src/lib.rs +160 -0
- dirdb_rust-0.1.0/pyproject.toml +19 -0
- dirdb_rust-0.1.0/python/dirdb/__init__.py +88 -0
|
@@ -0,0 +1,717 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "autocfg"
|
|
19
|
+
version = "1.5.1"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "bitflags"
|
|
25
|
+
version = "2.13.0"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "block-buffer"
|
|
31
|
+
version = "0.10.4"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"generic-array",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bumpalo"
|
|
40
|
+
version = "3.20.3"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "cc"
|
|
46
|
+
version = "1.2.67"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"find-msvc-tools",
|
|
51
|
+
"shlex",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "cfg-if"
|
|
56
|
+
version = "1.0.4"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "cpufeatures"
|
|
62
|
+
version = "0.2.17"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"libc",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "crypto-common"
|
|
71
|
+
version = "0.1.7"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"generic-array",
|
|
76
|
+
"typenum",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "digest"
|
|
81
|
+
version = "0.10.7"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"block-buffer",
|
|
86
|
+
"crypto-common",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "dirdb-core"
|
|
91
|
+
version = "0.1.0"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"parking_lot",
|
|
94
|
+
"rusqlite",
|
|
95
|
+
"serde",
|
|
96
|
+
"serde_json",
|
|
97
|
+
"sha2",
|
|
98
|
+
"tempfile",
|
|
99
|
+
"thiserror",
|
|
100
|
+
"uuid",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "dirdb-python"
|
|
105
|
+
version = "0.1.0"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"dirdb-core",
|
|
108
|
+
"pyo3",
|
|
109
|
+
"serde_json",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "errno"
|
|
114
|
+
version = "0.3.14"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"libc",
|
|
119
|
+
"windows-sys",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "fallible-iterator"
|
|
124
|
+
version = "0.3.0"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "fallible-streaming-iterator"
|
|
130
|
+
version = "0.1.9"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "fastrand"
|
|
136
|
+
version = "2.4.1"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
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 = "generic-array"
|
|
172
|
+
version = "0.14.7"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"typenum",
|
|
177
|
+
"version_check",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "getrandom"
|
|
182
|
+
version = "0.4.3"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"cfg-if",
|
|
187
|
+
"libc",
|
|
188
|
+
"r-efi",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "hashbrown"
|
|
193
|
+
version = "0.14.5"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"ahash",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "hashlink"
|
|
202
|
+
version = "0.9.1"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"hashbrown",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "heck"
|
|
211
|
+
version = "0.5.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "indoc"
|
|
217
|
+
version = "2.0.7"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"rustversion",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "itoa"
|
|
226
|
+
version = "1.0.18"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "js-sys"
|
|
232
|
+
version = "0.3.103"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"cfg-if",
|
|
237
|
+
"futures-util",
|
|
238
|
+
"wasm-bindgen",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "libc"
|
|
243
|
+
version = "0.2.186"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "libsqlite3-sys"
|
|
249
|
+
version = "0.30.1"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"cc",
|
|
254
|
+
"pkg-config",
|
|
255
|
+
"vcpkg",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "linux-raw-sys"
|
|
260
|
+
version = "0.12.1"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "lock_api"
|
|
266
|
+
version = "0.4.14"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"scopeguard",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "memchr"
|
|
275
|
+
version = "2.8.3"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "memoffset"
|
|
281
|
+
version = "0.9.1"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"autocfg",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "once_cell"
|
|
290
|
+
version = "1.21.4"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "parking_lot"
|
|
296
|
+
version = "0.12.5"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"lock_api",
|
|
301
|
+
"parking_lot_core",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "parking_lot_core"
|
|
306
|
+
version = "0.9.12"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"cfg-if",
|
|
311
|
+
"libc",
|
|
312
|
+
"redox_syscall",
|
|
313
|
+
"smallvec",
|
|
314
|
+
"windows-link",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "pin-project-lite"
|
|
319
|
+
version = "0.2.17"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "pkg-config"
|
|
325
|
+
version = "0.3.33"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "portable-atomic"
|
|
331
|
+
version = "1.13.1"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "proc-macro2"
|
|
337
|
+
version = "1.0.106"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"unicode-ident",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "pyo3"
|
|
346
|
+
version = "0.23.5"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"cfg-if",
|
|
351
|
+
"indoc",
|
|
352
|
+
"libc",
|
|
353
|
+
"memoffset",
|
|
354
|
+
"once_cell",
|
|
355
|
+
"portable-atomic",
|
|
356
|
+
"pyo3-build-config",
|
|
357
|
+
"pyo3-ffi",
|
|
358
|
+
"pyo3-macros",
|
|
359
|
+
"unindent",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "pyo3-build-config"
|
|
364
|
+
version = "0.23.5"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"once_cell",
|
|
369
|
+
"target-lexicon",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "pyo3-ffi"
|
|
374
|
+
version = "0.23.5"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"libc",
|
|
379
|
+
"pyo3-build-config",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "pyo3-macros"
|
|
384
|
+
version = "0.23.5"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"proc-macro2",
|
|
389
|
+
"pyo3-macros-backend",
|
|
390
|
+
"quote",
|
|
391
|
+
"syn",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "pyo3-macros-backend"
|
|
396
|
+
version = "0.23.5"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"heck",
|
|
401
|
+
"proc-macro2",
|
|
402
|
+
"pyo3-build-config",
|
|
403
|
+
"quote",
|
|
404
|
+
"syn",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "quote"
|
|
409
|
+
version = "1.0.46"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"proc-macro2",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "r-efi"
|
|
418
|
+
version = "6.0.0"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "redox_syscall"
|
|
424
|
+
version = "0.5.18"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"bitflags",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "rusqlite"
|
|
433
|
+
version = "0.32.1"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"bitflags",
|
|
438
|
+
"fallible-iterator",
|
|
439
|
+
"fallible-streaming-iterator",
|
|
440
|
+
"hashlink",
|
|
441
|
+
"libsqlite3-sys",
|
|
442
|
+
"smallvec",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "rustix"
|
|
447
|
+
version = "1.1.4"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"bitflags",
|
|
452
|
+
"errno",
|
|
453
|
+
"libc",
|
|
454
|
+
"linux-raw-sys",
|
|
455
|
+
"windows-sys",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "rustversion"
|
|
460
|
+
version = "1.0.23"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "scopeguard"
|
|
466
|
+
version = "1.2.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "serde"
|
|
472
|
+
version = "1.0.228"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"serde_core",
|
|
477
|
+
"serde_derive",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "serde_core"
|
|
482
|
+
version = "1.0.228"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"serde_derive",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "serde_derive"
|
|
491
|
+
version = "1.0.228"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"proc-macro2",
|
|
496
|
+
"quote",
|
|
497
|
+
"syn",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "serde_json"
|
|
502
|
+
version = "1.0.150"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"itoa",
|
|
507
|
+
"memchr",
|
|
508
|
+
"serde",
|
|
509
|
+
"serde_core",
|
|
510
|
+
"zmij",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "sha2"
|
|
515
|
+
version = "0.10.9"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"cfg-if",
|
|
520
|
+
"cpufeatures",
|
|
521
|
+
"digest",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "shlex"
|
|
526
|
+
version = "2.0.1"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "slab"
|
|
532
|
+
version = "0.4.12"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "smallvec"
|
|
538
|
+
version = "1.15.2"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "syn"
|
|
544
|
+
version = "2.0.118"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"proc-macro2",
|
|
549
|
+
"quote",
|
|
550
|
+
"unicode-ident",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "target-lexicon"
|
|
555
|
+
version = "0.12.16"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "tempfile"
|
|
561
|
+
version = "3.27.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"fastrand",
|
|
566
|
+
"getrandom",
|
|
567
|
+
"once_cell",
|
|
568
|
+
"rustix",
|
|
569
|
+
"windows-sys",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "thiserror"
|
|
574
|
+
version = "2.0.18"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"thiserror-impl",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "thiserror-impl"
|
|
583
|
+
version = "2.0.18"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"proc-macro2",
|
|
588
|
+
"quote",
|
|
589
|
+
"syn",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "typenum"
|
|
594
|
+
version = "1.20.1"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "unicode-ident"
|
|
600
|
+
version = "1.0.24"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "unindent"
|
|
606
|
+
version = "0.2.4"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "uuid"
|
|
612
|
+
version = "1.23.4"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"getrandom",
|
|
617
|
+
"js-sys",
|
|
618
|
+
"wasm-bindgen",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "vcpkg"
|
|
623
|
+
version = "0.2.15"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "version_check"
|
|
629
|
+
version = "0.9.5"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "wasm-bindgen"
|
|
635
|
+
version = "0.2.126"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"cfg-if",
|
|
640
|
+
"once_cell",
|
|
641
|
+
"rustversion",
|
|
642
|
+
"wasm-bindgen-macro",
|
|
643
|
+
"wasm-bindgen-shared",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "wasm-bindgen-macro"
|
|
648
|
+
version = "0.2.126"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"quote",
|
|
653
|
+
"wasm-bindgen-macro-support",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "wasm-bindgen-macro-support"
|
|
658
|
+
version = "0.2.126"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"bumpalo",
|
|
663
|
+
"proc-macro2",
|
|
664
|
+
"quote",
|
|
665
|
+
"syn",
|
|
666
|
+
"wasm-bindgen-shared",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "wasm-bindgen-shared"
|
|
671
|
+
version = "0.2.126"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"unicode-ident",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "windows-link"
|
|
680
|
+
version = "0.2.1"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "windows-sys"
|
|
686
|
+
version = "0.61.2"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"windows-link",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "zerocopy"
|
|
695
|
+
version = "0.8.54"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"zerocopy-derive",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "zerocopy-derive"
|
|
704
|
+
version = "0.8.54"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"proc-macro2",
|
|
709
|
+
"quote",
|
|
710
|
+
"syn",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "zmij"
|
|
715
|
+
version = "1.0.21"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|