@stratadb/core 0.6.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.
- package/.github/workflows/release.yml +125 -0
- package/Cargo.lock +1169 -0
- package/Cargo.toml +25 -0
- package/LICENSE +21 -0
- package/README.md +255 -0
- package/__tests__/strata.test.js +217 -0
- package/build.rs +5 -0
- package/index.d.ts +536 -0
- package/index.js +236 -0
- package/jest.config.js +5 -0
- package/npm/darwin-arm64/README.md +3 -0
- package/npm/darwin-arm64/package.json +41 -0
- package/npm/darwin-x64/README.md +3 -0
- package/npm/darwin-x64/package.json +41 -0
- package/npm/linux-arm64-gnu/README.md +3 -0
- package/npm/linux-arm64-gnu/package.json +44 -0
- package/npm/linux-arm64-musl/README.md +3 -0
- package/npm/linux-arm64-musl/package.json +44 -0
- package/npm/linux-x64-gnu/README.md +3 -0
- package/npm/linux-x64-gnu/package.json +44 -0
- package/npm/linux-x64-musl/README.md +3 -0
- package/npm/linux-x64-musl/package.json +44 -0
- package/npm/win32-x64-msvc/README.md +3 -0
- package/npm/win32-x64-msvc/package.json +41 -0
- package/package.json +67 -0
- package/src/lib.rs +775 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,1169 @@
|
|
|
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.0"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "base64"
|
|
31
|
+
version = "0.21.7"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "bincode"
|
|
37
|
+
version = "1.3.3"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"serde",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "bitflags"
|
|
46
|
+
version = "2.10.0"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "block-buffer"
|
|
52
|
+
version = "0.10.4"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"generic-array",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "bumpalo"
|
|
61
|
+
version = "3.19.1"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "byteorder"
|
|
67
|
+
version = "1.5.0"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "cc"
|
|
73
|
+
version = "1.2.55"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"find-msvc-tools",
|
|
78
|
+
"jobserver",
|
|
79
|
+
"libc",
|
|
80
|
+
"shlex",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "cfg-if"
|
|
85
|
+
version = "1.0.4"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "chrono"
|
|
91
|
+
version = "0.4.43"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"iana-time-zone",
|
|
96
|
+
"js-sys",
|
|
97
|
+
"num-traits",
|
|
98
|
+
"serde",
|
|
99
|
+
"wasm-bindgen",
|
|
100
|
+
"windows-link",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "convert_case"
|
|
105
|
+
version = "0.6.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"unicode-segmentation",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "core-foundation-sys"
|
|
114
|
+
version = "0.8.7"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "cpufeatures"
|
|
120
|
+
version = "0.2.17"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"libc",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "crc32fast"
|
|
129
|
+
version = "1.5.0"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"cfg-if",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "crypto-common"
|
|
138
|
+
version = "0.1.7"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"generic-array",
|
|
143
|
+
"typenum",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "ctor"
|
|
148
|
+
version = "0.2.9"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"quote",
|
|
153
|
+
"syn",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "dashmap"
|
|
158
|
+
version = "5.5.3"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"cfg-if",
|
|
163
|
+
"hashbrown 0.14.5",
|
|
164
|
+
"lock_api",
|
|
165
|
+
"once_cell",
|
|
166
|
+
"parking_lot_core",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "digest"
|
|
171
|
+
version = "0.10.7"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"block-buffer",
|
|
176
|
+
"crypto-common",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "equivalent"
|
|
181
|
+
version = "1.0.2"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "errno"
|
|
187
|
+
version = "0.3.14"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"libc",
|
|
192
|
+
"windows-sys",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "filetime"
|
|
197
|
+
version = "0.2.27"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"cfg-if",
|
|
202
|
+
"libc",
|
|
203
|
+
"libredox",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "find-msvc-tools"
|
|
208
|
+
version = "0.1.9"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "generic-array"
|
|
214
|
+
version = "0.14.7"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"typenum",
|
|
219
|
+
"version_check",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "getrandom"
|
|
224
|
+
version = "0.3.4"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"cfg-if",
|
|
229
|
+
"libc",
|
|
230
|
+
"r-efi",
|
|
231
|
+
"wasip2",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "hashbrown"
|
|
236
|
+
version = "0.14.5"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "hashbrown"
|
|
242
|
+
version = "0.16.1"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "iana-time-zone"
|
|
248
|
+
version = "0.1.65"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"android_system_properties",
|
|
253
|
+
"core-foundation-sys",
|
|
254
|
+
"iana-time-zone-haiku",
|
|
255
|
+
"js-sys",
|
|
256
|
+
"log",
|
|
257
|
+
"wasm-bindgen",
|
|
258
|
+
"windows-core",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "iana-time-zone-haiku"
|
|
263
|
+
version = "0.1.2"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"cc",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "indexmap"
|
|
272
|
+
version = "2.13.0"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"equivalent",
|
|
277
|
+
"hashbrown 0.16.1",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "itoa"
|
|
282
|
+
version = "1.0.17"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "jobserver"
|
|
288
|
+
version = "0.1.34"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"getrandom",
|
|
293
|
+
"libc",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "js-sys"
|
|
298
|
+
version = "0.3.85"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"once_cell",
|
|
303
|
+
"wasm-bindgen",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "libc"
|
|
308
|
+
version = "0.2.180"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "libloading"
|
|
314
|
+
version = "0.8.9"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"cfg-if",
|
|
319
|
+
"windows-link",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "libredox"
|
|
324
|
+
version = "0.1.12"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"bitflags",
|
|
329
|
+
"libc",
|
|
330
|
+
"redox_syscall 0.7.0",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "linux-raw-sys"
|
|
335
|
+
version = "0.11.0"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "lock_api"
|
|
341
|
+
version = "0.4.14"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"scopeguard",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "log"
|
|
350
|
+
version = "0.4.29"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "memchr"
|
|
356
|
+
version = "2.7.6"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "napi"
|
|
362
|
+
version = "2.16.17"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
365
|
+
dependencies = [
|
|
366
|
+
"bitflags",
|
|
367
|
+
"ctor",
|
|
368
|
+
"napi-derive",
|
|
369
|
+
"napi-sys",
|
|
370
|
+
"once_cell",
|
|
371
|
+
"serde",
|
|
372
|
+
"serde_json",
|
|
373
|
+
"tokio",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "napi-build"
|
|
378
|
+
version = "2.3.1"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "napi-derive"
|
|
384
|
+
version = "2.16.13"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"cfg-if",
|
|
389
|
+
"convert_case",
|
|
390
|
+
"napi-derive-backend",
|
|
391
|
+
"proc-macro2",
|
|
392
|
+
"quote",
|
|
393
|
+
"syn",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "napi-derive-backend"
|
|
398
|
+
version = "1.0.75"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"convert_case",
|
|
403
|
+
"once_cell",
|
|
404
|
+
"proc-macro2",
|
|
405
|
+
"quote",
|
|
406
|
+
"regex",
|
|
407
|
+
"semver",
|
|
408
|
+
"syn",
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "napi-sys"
|
|
413
|
+
version = "2.4.0"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"libloading",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "num-traits"
|
|
422
|
+
version = "0.2.19"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"autocfg",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "once_cell"
|
|
431
|
+
version = "1.21.3"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "parking_lot"
|
|
437
|
+
version = "0.12.5"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"lock_api",
|
|
442
|
+
"parking_lot_core",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "parking_lot_core"
|
|
447
|
+
version = "0.9.12"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"cfg-if",
|
|
452
|
+
"libc",
|
|
453
|
+
"redox_syscall 0.5.18",
|
|
454
|
+
"smallvec",
|
|
455
|
+
"windows-link",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "pin-project-lite"
|
|
460
|
+
version = "0.2.16"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "pkg-config"
|
|
466
|
+
version = "0.3.32"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "proc-macro2"
|
|
472
|
+
version = "1.0.106"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"unicode-ident",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "quote"
|
|
481
|
+
version = "1.0.44"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"proc-macro2",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "r-efi"
|
|
490
|
+
version = "5.3.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "redox_syscall"
|
|
496
|
+
version = "0.5.18"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"bitflags",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "redox_syscall"
|
|
505
|
+
version = "0.7.0"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"bitflags",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "regex"
|
|
514
|
+
version = "1.12.3"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"aho-corasick",
|
|
519
|
+
"memchr",
|
|
520
|
+
"regex-automata",
|
|
521
|
+
"regex-syntax",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "regex-automata"
|
|
526
|
+
version = "0.4.14"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"aho-corasick",
|
|
531
|
+
"memchr",
|
|
532
|
+
"regex-syntax",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "regex-syntax"
|
|
537
|
+
version = "0.8.9"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "rmp"
|
|
543
|
+
version = "0.8.15"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"num-traits",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "rmp-serde"
|
|
552
|
+
version = "1.3.1"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"rmp",
|
|
557
|
+
"serde",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "rustc-hash"
|
|
562
|
+
version = "1.1.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "rustix"
|
|
568
|
+
version = "1.1.3"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"bitflags",
|
|
573
|
+
"errno",
|
|
574
|
+
"libc",
|
|
575
|
+
"linux-raw-sys",
|
|
576
|
+
"windows-sys",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "rustversion"
|
|
581
|
+
version = "1.0.22"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "scopeguard"
|
|
587
|
+
version = "1.2.0"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "semver"
|
|
593
|
+
version = "1.0.27"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "serde"
|
|
599
|
+
version = "1.0.228"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"serde_core",
|
|
604
|
+
"serde_derive",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "serde_core"
|
|
609
|
+
version = "1.0.228"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"serde_derive",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "serde_derive"
|
|
618
|
+
version = "1.0.228"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"proc-macro2",
|
|
623
|
+
"quote",
|
|
624
|
+
"syn",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "serde_json"
|
|
629
|
+
version = "1.0.149"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"itoa",
|
|
634
|
+
"memchr",
|
|
635
|
+
"serde",
|
|
636
|
+
"serde_core",
|
|
637
|
+
"zmij",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "serde_spanned"
|
|
642
|
+
version = "0.6.9"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"serde",
|
|
647
|
+
]
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "sha1_smol"
|
|
651
|
+
version = "1.0.1"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "sha2"
|
|
657
|
+
version = "0.10.9"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"cfg-if",
|
|
662
|
+
"cpufeatures",
|
|
663
|
+
"digest",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "shlex"
|
|
668
|
+
version = "1.3.0"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "smallvec"
|
|
674
|
+
version = "1.15.1"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "strata-concurrency"
|
|
680
|
+
version = "0.5.1"
|
|
681
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"chrono",
|
|
684
|
+
"dashmap",
|
|
685
|
+
"parking_lot",
|
|
686
|
+
"rmp-serde",
|
|
687
|
+
"serde",
|
|
688
|
+
"strata-core",
|
|
689
|
+
"strata-durability",
|
|
690
|
+
"strata-storage",
|
|
691
|
+
"thiserror",
|
|
692
|
+
"tracing",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "strata-core"
|
|
697
|
+
version = "0.5.1"
|
|
698
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"bincode",
|
|
701
|
+
"chrono",
|
|
702
|
+
"serde",
|
|
703
|
+
"serde_json",
|
|
704
|
+
"thiserror",
|
|
705
|
+
"uuid",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "strata-durability"
|
|
710
|
+
version = "0.5.1"
|
|
711
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"crc32fast",
|
|
714
|
+
"parking_lot",
|
|
715
|
+
"rmp-serde",
|
|
716
|
+
"serde",
|
|
717
|
+
"serde_json",
|
|
718
|
+
"strata-core",
|
|
719
|
+
"tar",
|
|
720
|
+
"thiserror",
|
|
721
|
+
"tracing",
|
|
722
|
+
"uuid",
|
|
723
|
+
"xxhash-rust",
|
|
724
|
+
"zstd",
|
|
725
|
+
]
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "strata-engine"
|
|
729
|
+
version = "0.5.1"
|
|
730
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"base64",
|
|
733
|
+
"byteorder",
|
|
734
|
+
"dashmap",
|
|
735
|
+
"once_cell",
|
|
736
|
+
"parking_lot",
|
|
737
|
+
"rmp-serde",
|
|
738
|
+
"serde",
|
|
739
|
+
"serde_json",
|
|
740
|
+
"sha2",
|
|
741
|
+
"strata-concurrency",
|
|
742
|
+
"strata-core",
|
|
743
|
+
"strata-durability",
|
|
744
|
+
"strata-storage",
|
|
745
|
+
"thiserror",
|
|
746
|
+
"toml",
|
|
747
|
+
"tracing",
|
|
748
|
+
"uuid",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "strata-executor"
|
|
753
|
+
version = "0.5.1"
|
|
754
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"base64",
|
|
757
|
+
"rmp-serde",
|
|
758
|
+
"serde",
|
|
759
|
+
"serde_json",
|
|
760
|
+
"strata-core",
|
|
761
|
+
"strata-engine",
|
|
762
|
+
"strata-intelligence",
|
|
763
|
+
"strata-security",
|
|
764
|
+
"thiserror",
|
|
765
|
+
"tracing",
|
|
766
|
+
"uuid",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "strata-intelligence"
|
|
771
|
+
version = "0.5.1"
|
|
772
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"dashmap",
|
|
775
|
+
"serde",
|
|
776
|
+
"serde_json",
|
|
777
|
+
"strata-core",
|
|
778
|
+
"strata-engine",
|
|
779
|
+
"tracing",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "strata-security"
|
|
784
|
+
version = "0.5.1"
|
|
785
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"serde",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "strata-storage"
|
|
792
|
+
version = "0.5.1"
|
|
793
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"dashmap",
|
|
796
|
+
"rustc-hash",
|
|
797
|
+
"strata-core",
|
|
798
|
+
"thiserror",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "stratadb"
|
|
803
|
+
version = "0.5.1"
|
|
804
|
+
source = "git+https://github.com/strata-systems/strata-core?branch=main#688bff43c8efac00d76f29029372d60872fe6f1f"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"serde_json",
|
|
807
|
+
"strata-executor",
|
|
808
|
+
"thiserror",
|
|
809
|
+
"uuid",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "stratadb-node"
|
|
814
|
+
version = "0.6.0"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"napi",
|
|
817
|
+
"napi-build",
|
|
818
|
+
"napi-derive",
|
|
819
|
+
"serde",
|
|
820
|
+
"serde_json",
|
|
821
|
+
"stratadb",
|
|
822
|
+
]
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "syn"
|
|
826
|
+
version = "2.0.114"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
829
|
+
dependencies = [
|
|
830
|
+
"proc-macro2",
|
|
831
|
+
"quote",
|
|
832
|
+
"unicode-ident",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "tar"
|
|
837
|
+
version = "0.4.44"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"filetime",
|
|
842
|
+
"libc",
|
|
843
|
+
"xattr",
|
|
844
|
+
]
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "thiserror"
|
|
848
|
+
version = "1.0.69"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"thiserror-impl",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "thiserror-impl"
|
|
857
|
+
version = "1.0.69"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"proc-macro2",
|
|
862
|
+
"quote",
|
|
863
|
+
"syn",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "tokio"
|
|
868
|
+
version = "1.49.0"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"pin-project-lite",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "toml"
|
|
877
|
+
version = "0.8.23"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
880
|
+
dependencies = [
|
|
881
|
+
"serde",
|
|
882
|
+
"serde_spanned",
|
|
883
|
+
"toml_datetime",
|
|
884
|
+
"toml_edit",
|
|
885
|
+
]
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "toml_datetime"
|
|
889
|
+
version = "0.6.11"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
892
|
+
dependencies = [
|
|
893
|
+
"serde",
|
|
894
|
+
]
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "toml_edit"
|
|
898
|
+
version = "0.22.27"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"indexmap",
|
|
903
|
+
"serde",
|
|
904
|
+
"serde_spanned",
|
|
905
|
+
"toml_datetime",
|
|
906
|
+
"toml_write",
|
|
907
|
+
"winnow",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "toml_write"
|
|
912
|
+
version = "0.1.2"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "tracing"
|
|
918
|
+
version = "0.1.44"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"pin-project-lite",
|
|
923
|
+
"tracing-attributes",
|
|
924
|
+
"tracing-core",
|
|
925
|
+
]
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "tracing-attributes"
|
|
929
|
+
version = "0.1.31"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"proc-macro2",
|
|
934
|
+
"quote",
|
|
935
|
+
"syn",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "tracing-core"
|
|
940
|
+
version = "0.1.36"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"once_cell",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "typenum"
|
|
949
|
+
version = "1.19.0"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "unicode-ident"
|
|
955
|
+
version = "1.0.22"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "unicode-segmentation"
|
|
961
|
+
version = "1.12.0"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "uuid"
|
|
967
|
+
version = "1.20.0"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"getrandom",
|
|
972
|
+
"js-sys",
|
|
973
|
+
"serde_core",
|
|
974
|
+
"sha1_smol",
|
|
975
|
+
"wasm-bindgen",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "version_check"
|
|
980
|
+
version = "0.9.5"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "wasip2"
|
|
986
|
+
version = "1.0.2+wasi-0.2.9"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"wit-bindgen",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "wasm-bindgen"
|
|
995
|
+
version = "0.2.108"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"cfg-if",
|
|
1000
|
+
"once_cell",
|
|
1001
|
+
"rustversion",
|
|
1002
|
+
"wasm-bindgen-macro",
|
|
1003
|
+
"wasm-bindgen-shared",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "wasm-bindgen-macro"
|
|
1008
|
+
version = "0.2.108"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"quote",
|
|
1013
|
+
"wasm-bindgen-macro-support",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "wasm-bindgen-macro-support"
|
|
1018
|
+
version = "0.2.108"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"bumpalo",
|
|
1023
|
+
"proc-macro2",
|
|
1024
|
+
"quote",
|
|
1025
|
+
"syn",
|
|
1026
|
+
"wasm-bindgen-shared",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "wasm-bindgen-shared"
|
|
1031
|
+
version = "0.2.108"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
1034
|
+
dependencies = [
|
|
1035
|
+
"unicode-ident",
|
|
1036
|
+
]
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "windows-core"
|
|
1040
|
+
version = "0.62.2"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"windows-implement",
|
|
1045
|
+
"windows-interface",
|
|
1046
|
+
"windows-link",
|
|
1047
|
+
"windows-result",
|
|
1048
|
+
"windows-strings",
|
|
1049
|
+
]
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "windows-implement"
|
|
1053
|
+
version = "0.60.2"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"proc-macro2",
|
|
1058
|
+
"quote",
|
|
1059
|
+
"syn",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "windows-interface"
|
|
1064
|
+
version = "0.59.3"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"proc-macro2",
|
|
1069
|
+
"quote",
|
|
1070
|
+
"syn",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "windows-link"
|
|
1075
|
+
version = "0.2.1"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "windows-result"
|
|
1081
|
+
version = "0.4.1"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"windows-link",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "windows-strings"
|
|
1090
|
+
version = "0.5.1"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"windows-link",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "windows-sys"
|
|
1099
|
+
version = "0.61.2"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"windows-link",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "winnow"
|
|
1108
|
+
version = "0.7.14"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"memchr",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "wit-bindgen"
|
|
1117
|
+
version = "0.51.0"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "xattr"
|
|
1123
|
+
version = "1.6.1"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"libc",
|
|
1128
|
+
"rustix",
|
|
1129
|
+
]
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "xxhash-rust"
|
|
1133
|
+
version = "0.8.15"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "zmij"
|
|
1139
|
+
version = "1.0.19"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "zstd"
|
|
1145
|
+
version = "0.13.3"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"zstd-safe",
|
|
1150
|
+
]
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "zstd-safe"
|
|
1154
|
+
version = "7.2.4"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"zstd-sys",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "zstd-sys"
|
|
1163
|
+
version = "2.0.16+zstd.1.5.7"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"cc",
|
|
1168
|
+
"pkg-config",
|
|
1169
|
+
]
|