cc-transcript 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.
- cc_transcript-0.1.0/Cargo.lock +707 -0
- cc_transcript-0.1.0/Cargo.toml +8 -0
- cc_transcript-0.1.0/LICENSE +133 -0
- cc_transcript-0.1.0/PKG-INFO +82 -0
- cc_transcript-0.1.0/README.md +53 -0
- cc_transcript-0.1.0/cc_transcript/__init__.py +60 -0
- cc_transcript-0.1.0/cc_transcript/_parser_rs.pyi +15 -0
- cc_transcript-0.1.0/cc_transcript/backend.py +55 -0
- cc_transcript-0.1.0/cc_transcript/discovery.py +63 -0
- cc_transcript-0.1.0/cc_transcript/filters.py +109 -0
- cc_transcript-0.1.0/cc_transcript/models.py +212 -0
- cc_transcript-0.1.0/cc_transcript/parser.py +265 -0
- cc_transcript-0.1.0/cc_transcript/py.typed +0 -0
- cc_transcript-0.1.0/cc_transcript/rust.py +43 -0
- cc_transcript-0.1.0/cc_transcript/store.py +121 -0
- cc_transcript-0.1.0/pyproject.toml +74 -0
- cc_transcript-0.1.0/rust/Cargo.toml +22 -0
- cc_transcript-0.1.0/rust/src/event.rs +276 -0
- cc_transcript-0.1.0/rust/src/lib.rs +145 -0
- cc_transcript-0.1.0/rust/src/model.rs +29 -0
|
@@ -0,0 +1,707 @@
|
|
|
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
|
+
"getrandom",
|
|
13
|
+
"once_cell",
|
|
14
|
+
"version_check",
|
|
15
|
+
"zerocopy",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[[package]]
|
|
19
|
+
name = "autocfg"
|
|
20
|
+
version = "1.5.1"
|
|
21
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
22
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
23
|
+
|
|
24
|
+
[[package]]
|
|
25
|
+
name = "bumpalo"
|
|
26
|
+
version = "3.20.3"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
29
|
+
|
|
30
|
+
[[package]]
|
|
31
|
+
name = "bytes"
|
|
32
|
+
version = "1.11.1"
|
|
33
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
34
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
35
|
+
|
|
36
|
+
[[package]]
|
|
37
|
+
name = "cc_transcript_parser"
|
|
38
|
+
version = "0.1.0"
|
|
39
|
+
dependencies = [
|
|
40
|
+
"chrono",
|
|
41
|
+
"crossbeam-channel",
|
|
42
|
+
"memchr",
|
|
43
|
+
"num_cpus",
|
|
44
|
+
"once_cell",
|
|
45
|
+
"pyo3",
|
|
46
|
+
"rayon",
|
|
47
|
+
"serde",
|
|
48
|
+
"sonic-rs",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[[package]]
|
|
52
|
+
name = "cfg-if"
|
|
53
|
+
version = "1.0.4"
|
|
54
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "chrono"
|
|
59
|
+
version = "0.4.45"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
62
|
+
dependencies = [
|
|
63
|
+
"num-traits",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "crossbeam-channel"
|
|
68
|
+
version = "0.5.15"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
71
|
+
dependencies = [
|
|
72
|
+
"crossbeam-utils",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "crossbeam-deque"
|
|
77
|
+
version = "0.8.6"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"crossbeam-epoch",
|
|
82
|
+
"crossbeam-utils",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "crossbeam-epoch"
|
|
87
|
+
version = "0.9.18"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"crossbeam-utils",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "crossbeam-utils"
|
|
96
|
+
version = "0.8.21"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "either"
|
|
102
|
+
version = "1.16.0"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "equivalent"
|
|
108
|
+
version = "1.0.2"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "faststr"
|
|
114
|
+
version = "0.2.34"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "1ca7d44d22004409a61c393afb3369c8f7bb74abcae49fe249ee01dcc3002113"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"bytes",
|
|
119
|
+
"rkyv",
|
|
120
|
+
"serde",
|
|
121
|
+
"simdutf8",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "futures-core"
|
|
126
|
+
version = "0.3.32"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "futures-task"
|
|
132
|
+
version = "0.3.32"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "futures-util"
|
|
138
|
+
version = "0.3.32"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"futures-core",
|
|
143
|
+
"futures-task",
|
|
144
|
+
"pin-project-lite",
|
|
145
|
+
"slab",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "getrandom"
|
|
150
|
+
version = "0.3.4"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"cfg-if",
|
|
155
|
+
"libc",
|
|
156
|
+
"r-efi",
|
|
157
|
+
"wasip2",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "hashbrown"
|
|
162
|
+
version = "0.17.1"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "heck"
|
|
168
|
+
version = "0.5.0"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "hermit-abi"
|
|
174
|
+
version = "0.5.2"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "indexmap"
|
|
180
|
+
version = "2.14.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"equivalent",
|
|
185
|
+
"hashbrown",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "itoa"
|
|
190
|
+
version = "1.0.18"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "js-sys"
|
|
196
|
+
version = "0.3.99"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"cfg-if",
|
|
201
|
+
"futures-util",
|
|
202
|
+
"once_cell",
|
|
203
|
+
"wasm-bindgen",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "libc"
|
|
208
|
+
version = "0.2.186"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "memchr"
|
|
214
|
+
version = "2.8.1"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "munge"
|
|
220
|
+
version = "0.4.7"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"munge_macro",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "munge_macro"
|
|
229
|
+
version = "0.4.7"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"proc-macro2",
|
|
234
|
+
"quote",
|
|
235
|
+
"syn",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "num-traits"
|
|
240
|
+
version = "0.2.19"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"autocfg",
|
|
245
|
+
]
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "num_cpus"
|
|
249
|
+
version = "1.17.0"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"hermit-abi",
|
|
254
|
+
"libc",
|
|
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 = "pin-project-lite"
|
|
265
|
+
version = "0.2.17"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "portable-atomic"
|
|
271
|
+
version = "1.13.1"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "proc-macro2"
|
|
277
|
+
version = "1.0.106"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"unicode-ident",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "ptr_meta"
|
|
286
|
+
version = "0.3.1"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"ptr_meta_derive",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "ptr_meta_derive"
|
|
295
|
+
version = "0.3.1"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"proc-macro2",
|
|
300
|
+
"quote",
|
|
301
|
+
"syn",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "pyo3"
|
|
306
|
+
version = "0.28.3"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"chrono",
|
|
311
|
+
"libc",
|
|
312
|
+
"once_cell",
|
|
313
|
+
"portable-atomic",
|
|
314
|
+
"pyo3-build-config",
|
|
315
|
+
"pyo3-ffi",
|
|
316
|
+
"pyo3-macros",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "pyo3-build-config"
|
|
321
|
+
version = "0.28.3"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"target-lexicon",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "pyo3-ffi"
|
|
330
|
+
version = "0.28.3"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"libc",
|
|
335
|
+
"pyo3-build-config",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "pyo3-macros"
|
|
340
|
+
version = "0.28.3"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"proc-macro2",
|
|
345
|
+
"pyo3-macros-backend",
|
|
346
|
+
"quote",
|
|
347
|
+
"syn",
|
|
348
|
+
]
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "pyo3-macros-backend"
|
|
352
|
+
version = "0.28.3"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
355
|
+
dependencies = [
|
|
356
|
+
"heck",
|
|
357
|
+
"proc-macro2",
|
|
358
|
+
"pyo3-build-config",
|
|
359
|
+
"quote",
|
|
360
|
+
"syn",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "quote"
|
|
365
|
+
version = "1.0.45"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"proc-macro2",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "r-efi"
|
|
374
|
+
version = "5.3.0"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "rancor"
|
|
380
|
+
version = "0.1.1"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "a063ea72381527c2a0561da9c80000ef822bdd7c3241b1cc1b12100e3df081ee"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"ptr_meta",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "rayon"
|
|
389
|
+
version = "1.12.0"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"either",
|
|
394
|
+
"rayon-core",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "rayon-core"
|
|
399
|
+
version = "1.13.0"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"crossbeam-deque",
|
|
404
|
+
"crossbeam-utils",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "ref-cast"
|
|
409
|
+
version = "1.0.25"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"ref-cast-impl",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "ref-cast-impl"
|
|
418
|
+
version = "1.0.25"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"proc-macro2",
|
|
423
|
+
"quote",
|
|
424
|
+
"syn",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "rend"
|
|
429
|
+
version = "0.5.3"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "cadadef317c2f20755a64d7fdc48f9e7178ee6b0e1f7fce33fa60f1d68a276e6"
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "rkyv"
|
|
435
|
+
version = "0.8.16"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "73389e0c99e664f919275ab5b5b0471391fe9a8de61e1dff9b1eaf56a90f16e3"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"bytes",
|
|
440
|
+
"hashbrown",
|
|
441
|
+
"indexmap",
|
|
442
|
+
"munge",
|
|
443
|
+
"ptr_meta",
|
|
444
|
+
"rancor",
|
|
445
|
+
"rend",
|
|
446
|
+
"rkyv_derive",
|
|
447
|
+
"tinyvec",
|
|
448
|
+
"uuid",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "rkyv_derive"
|
|
453
|
+
version = "0.8.16"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "5d2ed0b54125315fb36bd021e82d314d1c126548f871634b483f46b31d13cac6"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"proc-macro2",
|
|
458
|
+
"quote",
|
|
459
|
+
"syn",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "rustversion"
|
|
464
|
+
version = "1.0.22"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "serde"
|
|
470
|
+
version = "1.0.228"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"serde_core",
|
|
475
|
+
"serde_derive",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "serde_core"
|
|
480
|
+
version = "1.0.228"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"serde_derive",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "serde_derive"
|
|
489
|
+
version = "1.0.228"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"proc-macro2",
|
|
494
|
+
"quote",
|
|
495
|
+
"syn",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "simdutf8"
|
|
500
|
+
version = "0.1.5"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "slab"
|
|
506
|
+
version = "0.4.12"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "sonic-number"
|
|
512
|
+
version = "0.1.2"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "3775c3390edf958191f1ab1e8c5c188907feebd0f3ce1604cb621f72961dbf32"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"cfg-if",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "sonic-rs"
|
|
521
|
+
version = "0.5.8"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "d971cc77a245ccf1756dbd1a87c3e7f709c0191464096510d43eec056d0f2c4f"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"ahash",
|
|
526
|
+
"bumpalo",
|
|
527
|
+
"bytes",
|
|
528
|
+
"cfg-if",
|
|
529
|
+
"faststr",
|
|
530
|
+
"itoa",
|
|
531
|
+
"ref-cast",
|
|
532
|
+
"serde",
|
|
533
|
+
"simdutf8",
|
|
534
|
+
"sonic-number",
|
|
535
|
+
"sonic-simd",
|
|
536
|
+
"thiserror",
|
|
537
|
+
"zmij",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "sonic-simd"
|
|
542
|
+
version = "0.1.4"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "f99e664ecd2d85a68c87e3c7a3cfe691f647ea9e835de984aba4d54a41f817d4"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"cfg-if",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "syn"
|
|
551
|
+
version = "2.0.117"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"proc-macro2",
|
|
556
|
+
"quote",
|
|
557
|
+
"unicode-ident",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "target-lexicon"
|
|
562
|
+
version = "0.13.5"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "thiserror"
|
|
568
|
+
version = "2.0.18"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"thiserror-impl",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "thiserror-impl"
|
|
577
|
+
version = "2.0.18"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"proc-macro2",
|
|
582
|
+
"quote",
|
|
583
|
+
"syn",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "tinyvec"
|
|
588
|
+
version = "1.11.0"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"tinyvec_macros",
|
|
593
|
+
]
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "tinyvec_macros"
|
|
597
|
+
version = "0.1.1"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "unicode-ident"
|
|
603
|
+
version = "1.0.24"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "uuid"
|
|
609
|
+
version = "1.23.2"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"js-sys",
|
|
614
|
+
"wasm-bindgen",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "version_check"
|
|
619
|
+
version = "0.9.5"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "wasip2"
|
|
625
|
+
version = "1.0.3+wasi-0.2.9"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"wit-bindgen",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "wasm-bindgen"
|
|
634
|
+
version = "0.2.122"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"cfg-if",
|
|
639
|
+
"once_cell",
|
|
640
|
+
"rustversion",
|
|
641
|
+
"wasm-bindgen-macro",
|
|
642
|
+
"wasm-bindgen-shared",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "wasm-bindgen-macro"
|
|
647
|
+
version = "0.2.122"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"quote",
|
|
652
|
+
"wasm-bindgen-macro-support",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "wasm-bindgen-macro-support"
|
|
657
|
+
version = "0.2.122"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"bumpalo",
|
|
662
|
+
"proc-macro2",
|
|
663
|
+
"quote",
|
|
664
|
+
"syn",
|
|
665
|
+
"wasm-bindgen-shared",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "wasm-bindgen-shared"
|
|
670
|
+
version = "0.2.122"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"unicode-ident",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "wit-bindgen"
|
|
679
|
+
version = "0.57.1"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "zerocopy"
|
|
685
|
+
version = "0.8.50"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"zerocopy-derive",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "zerocopy-derive"
|
|
694
|
+
version = "0.8.50"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"proc-macro2",
|
|
699
|
+
"quote",
|
|
700
|
+
"syn",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "zmij"
|
|
705
|
+
version = "1.0.21"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|