roboto-mcap-codec 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.
- roboto_mcap_codec-0.1.0/Cargo.lock +1021 -0
- roboto_mcap_codec-0.1.0/Cargo.toml +25 -0
- roboto_mcap_codec-0.1.0/LICENSE +201 -0
- roboto_mcap_codec-0.1.0/NOTICE +24 -0
- roboto_mcap_codec-0.1.0/PKG-INFO +7 -0
- roboto_mcap_codec-0.1.0/crates/mcap_codec_py/Cargo.toml +21 -0
- roboto_mcap_codec-0.1.0/crates/mcap_codec_py/src/lib.rs +104 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/Cargo.toml +31 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/json.rs +72 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/mod.rs +129 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/protobuf.rs +155 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/schema/idl.rs +1621 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/schema/mod.rs +314 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/schema/ros_meta.rs +642 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/schema/ros_msg.rs +420 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/transcode.rs +242 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/wire/cdr.rs +1321 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/wire/materialize.rs +255 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/wire/mod.rs +176 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/decode/wire/ros1.rs +370 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/error.rs +27 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/lib.rs +5 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/ros_types.rs +17 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/schema_types.rs +18 -0
- roboto_mcap_codec-0.1.0/crates/mcap_decode/src/sys_memory.rs +159 -0
- roboto_mcap_codec-0.1.0/pyproject.toml +18 -0
|
@@ -0,0 +1,1021 @@
|
|
|
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 = "anyhow"
|
|
16
|
+
version = "1.0.102"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "arc-swap"
|
|
22
|
+
version = "1.9.1"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"rustversion",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "array-init"
|
|
31
|
+
version = "2.1.0"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "arrayvec"
|
|
37
|
+
version = "0.5.2"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "autocfg"
|
|
43
|
+
version = "1.5.1"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "base16ct"
|
|
49
|
+
version = "0.2.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "base64"
|
|
55
|
+
version = "0.22.1"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "bimap"
|
|
61
|
+
version = "0.6.3"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "binrw"
|
|
67
|
+
version = "0.12.1"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "0c1faf7031c34c71da53eec4e070cf90c3b825729e21ca3aab51b20da4a1d1d9"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"array-init",
|
|
72
|
+
"binrw_derive",
|
|
73
|
+
"bytemuck",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "binrw_derive"
|
|
78
|
+
version = "0.12.1"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "1c5eb3446e2f5ea7fa9a6f2cb594648c73bf2dbc60eccf3b2fa41834e5449150"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"either",
|
|
83
|
+
"owo-colors",
|
|
84
|
+
"proc-macro2",
|
|
85
|
+
"quote",
|
|
86
|
+
"syn 1.0.109",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "bitflags"
|
|
91
|
+
version = "1.3.2"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "bytecount"
|
|
97
|
+
version = "0.3.2"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "f861d9ce359f56dbcb6e0c2a1cb84e52ad732cadb57b806adeb3c7668caccbd8"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "bytecount"
|
|
103
|
+
version = "0.6.9"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "bytemuck"
|
|
109
|
+
version = "1.25.0"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "byteorder"
|
|
115
|
+
version = "1.5.0"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "bytes"
|
|
121
|
+
version = "1.11.1"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "bzip2"
|
|
127
|
+
version = "0.4.4"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
|
130
|
+
dependencies = [
|
|
131
|
+
"bzip2-sys",
|
|
132
|
+
"libc",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "bzip2-sys"
|
|
137
|
+
version = "0.1.13+1.0.8"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"cc",
|
|
142
|
+
"pkg-config",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "cc"
|
|
147
|
+
version = "1.2.63"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"find-msvc-tools",
|
|
152
|
+
"jobserver",
|
|
153
|
+
"libc",
|
|
154
|
+
"shlex",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "cfg-if"
|
|
159
|
+
version = "1.0.4"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "crc32fast"
|
|
165
|
+
version = "1.5.0"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"cfg-if",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "darling"
|
|
174
|
+
version = "0.21.3"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"darling_core",
|
|
179
|
+
"darling_macro",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "darling_core"
|
|
184
|
+
version = "0.21.3"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
187
|
+
dependencies = [
|
|
188
|
+
"fnv",
|
|
189
|
+
"ident_case",
|
|
190
|
+
"proc-macro2",
|
|
191
|
+
"quote",
|
|
192
|
+
"syn 2.0.117",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "darling_macro"
|
|
197
|
+
version = "0.21.3"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"darling_core",
|
|
202
|
+
"quote",
|
|
203
|
+
"syn 2.0.117",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "either"
|
|
208
|
+
version = "1.16.0"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "enumset"
|
|
214
|
+
version = "1.1.13"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "839c4174b41e75c8f7306110b2c51996a293b8d1d850edd529011841d9fede7d"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"enumset_derive",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "enumset_derive"
|
|
223
|
+
version = "0.15.0"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "4bd536557b58c682b217b8fb199afdff47cd3eff260623f19e77074eb073d63a"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"darling",
|
|
228
|
+
"proc-macro2",
|
|
229
|
+
"quote",
|
|
230
|
+
"syn 2.0.117",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "find-msvc-tools"
|
|
235
|
+
version = "0.1.9"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "fnv"
|
|
241
|
+
version = "1.0.7"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "getrandom"
|
|
247
|
+
version = "0.3.4"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"cfg-if",
|
|
252
|
+
"libc",
|
|
253
|
+
"r-efi",
|
|
254
|
+
"wasip2",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "heck"
|
|
259
|
+
version = "0.5.0"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "hermit-abi"
|
|
265
|
+
version = "0.5.2"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "ident_case"
|
|
271
|
+
version = "1.0.1"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "indoc"
|
|
277
|
+
version = "2.0.7"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"rustversion",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "itertools"
|
|
286
|
+
version = "0.14.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"either",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "itoa"
|
|
295
|
+
version = "1.0.18"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "jobserver"
|
|
301
|
+
version = "0.1.34"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"getrandom",
|
|
306
|
+
"libc",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "lexical-core"
|
|
311
|
+
version = "0.7.6"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"arrayvec",
|
|
316
|
+
"bitflags",
|
|
317
|
+
"cfg-if",
|
|
318
|
+
"ryu",
|
|
319
|
+
"static_assertions",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "libc"
|
|
324
|
+
version = "0.2.186"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "log"
|
|
330
|
+
version = "0.4.31"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "113b30b4cd05f7c06868fdb2854f66a7b9fece9a48425351cd532e810d74024f"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "logos"
|
|
336
|
+
version = "0.16.1"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "eb2c55a318a87600ea870ff8c2012148b44bf18b74fad48d0f835c38c7d07c5f"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"logos-derive",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "logos-codegen"
|
|
345
|
+
version = "0.16.1"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "58b3ffaa284e1350d017a57d04ada118c4583cf260c8fb01e0fe28a2e9cf8970"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"fnv",
|
|
350
|
+
"proc-macro2",
|
|
351
|
+
"quote",
|
|
352
|
+
"regex-automata",
|
|
353
|
+
"regex-syntax",
|
|
354
|
+
"syn 2.0.117",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "logos-derive"
|
|
359
|
+
version = "0.16.1"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "52d3a9855747c17eaf4383823f135220716ab49bea5fbea7dd42cc9a92f8aa31"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"logos-codegen",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "lz4"
|
|
368
|
+
version = "1.28.1"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"lz4-sys",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "lz4-sys"
|
|
377
|
+
version = "1.11.1+lz4-1.10.0"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"cc",
|
|
382
|
+
"libc",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "mcap"
|
|
387
|
+
version = "0.24.0"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "43908ab970f3a880b02834055a1e04221a3056f442a65ae9111f63e550e7daa5"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"bimap",
|
|
392
|
+
"binrw",
|
|
393
|
+
"byteorder",
|
|
394
|
+
"crc32fast",
|
|
395
|
+
"enumset",
|
|
396
|
+
"log",
|
|
397
|
+
"lz4",
|
|
398
|
+
"num_cpus",
|
|
399
|
+
"paste",
|
|
400
|
+
"static_assertions",
|
|
401
|
+
"thiserror 1.0.69",
|
|
402
|
+
"zstd",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "mcap_codec_py"
|
|
407
|
+
version = "0.1.0"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"log",
|
|
410
|
+
"mcap_decode",
|
|
411
|
+
"pyo3",
|
|
412
|
+
"pyo3-log",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "mcap_decode"
|
|
417
|
+
version = "0.1.0"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"base64",
|
|
420
|
+
"libc",
|
|
421
|
+
"log",
|
|
422
|
+
"mcap",
|
|
423
|
+
"prost",
|
|
424
|
+
"prost-reflect",
|
|
425
|
+
"prost-types",
|
|
426
|
+
"rosbag",
|
|
427
|
+
"serde",
|
|
428
|
+
"serde_json",
|
|
429
|
+
"t4_idl_parser",
|
|
430
|
+
"thiserror 2.0.18",
|
|
431
|
+
"zerodds-cdr",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "memchr"
|
|
436
|
+
version = "2.8.1"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "memmap2"
|
|
442
|
+
version = "0.9.10"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"libc",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "memoffset"
|
|
451
|
+
version = "0.9.1"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"autocfg",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "minimal-lexical"
|
|
460
|
+
version = "0.2.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "nom"
|
|
466
|
+
version = "5.1.3"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"lexical-core",
|
|
471
|
+
"memchr",
|
|
472
|
+
"version_check",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "nom"
|
|
477
|
+
version = "7.1.3"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"memchr",
|
|
482
|
+
"minimal-lexical",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "nom-greedyerror"
|
|
487
|
+
version = "0.4.0"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "fcd01dcb46ac4b8133a093685c5133b044d45c35f10ac9b6606e4db780d94ac7"
|
|
490
|
+
dependencies = [
|
|
491
|
+
"nom 5.1.3",
|
|
492
|
+
"nom 7.1.3",
|
|
493
|
+
"nom_locate 1.0.0",
|
|
494
|
+
"nom_locate 2.1.0",
|
|
495
|
+
"nom_locate 4.2.0",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "nom_locate"
|
|
500
|
+
version = "1.0.0"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "f932834fd8e391fc7710e2ba17e8f9f8645d846b55aa63207e17e110a1e1ce35"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"bytecount 0.3.2",
|
|
505
|
+
"memchr",
|
|
506
|
+
"nom 5.1.3",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "nom_locate"
|
|
511
|
+
version = "2.1.0"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "a67484adf5711f94f2f28b653bf231bff8e438be33bf5b0f35935a0db4f618a2"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"bytecount 0.6.9",
|
|
516
|
+
"memchr",
|
|
517
|
+
"nom 5.1.3",
|
|
518
|
+
]
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "nom_locate"
|
|
522
|
+
version = "4.2.0"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"bytecount 0.6.9",
|
|
527
|
+
"memchr",
|
|
528
|
+
"nom 7.1.3",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "num-bigint"
|
|
533
|
+
version = "0.4.6"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"num-integer",
|
|
538
|
+
"num-traits",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "num-integer"
|
|
543
|
+
version = "0.1.46"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"num-traits",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "num-traits"
|
|
552
|
+
version = "0.2.19"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"autocfg",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "num_cpus"
|
|
561
|
+
version = "1.17.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"hermit-abi",
|
|
566
|
+
"libc",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "once_cell"
|
|
571
|
+
version = "1.21.4"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "ordered-float"
|
|
577
|
+
version = "2.10.1"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"num-traits",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "owo-colors"
|
|
586
|
+
version = "3.5.0"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "paste"
|
|
592
|
+
version = "1.0.15"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "pkg-config"
|
|
598
|
+
version = "0.3.33"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "portable-atomic"
|
|
604
|
+
version = "1.13.1"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "proc-macro2"
|
|
610
|
+
version = "1.0.106"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"unicode-ident",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "prost"
|
|
619
|
+
version = "0.14.3"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"bytes",
|
|
624
|
+
"prost-derive",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "prost-derive"
|
|
629
|
+
version = "0.14.3"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"anyhow",
|
|
634
|
+
"itertools",
|
|
635
|
+
"proc-macro2",
|
|
636
|
+
"quote",
|
|
637
|
+
"syn 2.0.117",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "prost-reflect"
|
|
642
|
+
version = "0.16.4"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "590aa145fee8f7a26b5a6055365e7c5e89a5c1caae9869de76ec0ee73181a2f9"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"base64",
|
|
647
|
+
"logos",
|
|
648
|
+
"prost",
|
|
649
|
+
"prost-types",
|
|
650
|
+
"serde",
|
|
651
|
+
"serde-value",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "prost-types"
|
|
656
|
+
version = "0.14.3"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"prost",
|
|
661
|
+
]
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "pyo3"
|
|
665
|
+
version = "0.23.5"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"cfg-if",
|
|
670
|
+
"indoc",
|
|
671
|
+
"libc",
|
|
672
|
+
"memoffset",
|
|
673
|
+
"once_cell",
|
|
674
|
+
"portable-atomic",
|
|
675
|
+
"pyo3-build-config",
|
|
676
|
+
"pyo3-ffi",
|
|
677
|
+
"pyo3-macros",
|
|
678
|
+
"unindent",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "pyo3-build-config"
|
|
683
|
+
version = "0.23.5"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"once_cell",
|
|
688
|
+
"target-lexicon",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "pyo3-ffi"
|
|
693
|
+
version = "0.23.5"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"libc",
|
|
698
|
+
"pyo3-build-config",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "pyo3-log"
|
|
703
|
+
version = "0.12.4"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "45192e5e4a4d2505587e27806c7b710c231c40c56f3bfc19535d0bb25df52264"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"arc-swap",
|
|
708
|
+
"log",
|
|
709
|
+
"pyo3",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "pyo3-macros"
|
|
714
|
+
version = "0.23.5"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"proc-macro2",
|
|
719
|
+
"pyo3-macros-backend",
|
|
720
|
+
"quote",
|
|
721
|
+
"syn 2.0.117",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "pyo3-macros-backend"
|
|
726
|
+
version = "0.23.5"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"heck",
|
|
731
|
+
"proc-macro2",
|
|
732
|
+
"pyo3-build-config",
|
|
733
|
+
"quote",
|
|
734
|
+
"syn 2.0.117",
|
|
735
|
+
]
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "quote"
|
|
739
|
+
version = "1.0.45"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"proc-macro2",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "r-efi"
|
|
748
|
+
version = "5.3.0"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "regex-automata"
|
|
754
|
+
version = "0.4.14"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"aho-corasick",
|
|
759
|
+
"memchr",
|
|
760
|
+
"regex-syntax",
|
|
761
|
+
]
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "regex-syntax"
|
|
765
|
+
version = "0.8.10"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "rosbag"
|
|
771
|
+
version = "0.6.3"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "ef77688c2fe3d1a94991e3d7256face190d6b6ea1a1ac60a6e2bad8e2aeabde7"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"base16ct",
|
|
776
|
+
"byteorder",
|
|
777
|
+
"bzip2",
|
|
778
|
+
"log",
|
|
779
|
+
"lz4",
|
|
780
|
+
"memmap2",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "rustversion"
|
|
785
|
+
version = "1.0.22"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "ryu"
|
|
791
|
+
version = "1.0.23"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "serde"
|
|
797
|
+
version = "1.0.228"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"serde_core",
|
|
802
|
+
"serde_derive",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "serde-value"
|
|
807
|
+
version = "0.7.0"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"ordered-float",
|
|
812
|
+
"serde",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "serde_core"
|
|
817
|
+
version = "1.0.228"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
820
|
+
dependencies = [
|
|
821
|
+
"serde_derive",
|
|
822
|
+
]
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "serde_derive"
|
|
826
|
+
version = "1.0.228"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
829
|
+
dependencies = [
|
|
830
|
+
"proc-macro2",
|
|
831
|
+
"quote",
|
|
832
|
+
"syn 2.0.117",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "serde_json"
|
|
837
|
+
version = "1.0.150"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"itoa",
|
|
842
|
+
"memchr",
|
|
843
|
+
"serde",
|
|
844
|
+
"serde_core",
|
|
845
|
+
"zmij",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "shlex"
|
|
850
|
+
version = "2.0.1"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "static_assertions"
|
|
856
|
+
version = "1.1.0"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "syn"
|
|
862
|
+
version = "1.0.109"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"proc-macro2",
|
|
867
|
+
"quote",
|
|
868
|
+
"unicode-ident",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "syn"
|
|
873
|
+
version = "2.0.117"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"proc-macro2",
|
|
878
|
+
"quote",
|
|
879
|
+
"unicode-ident",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "t4_idl_parser"
|
|
884
|
+
version = "0.1.1"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "ce719119d9844440d884601ca53a7b75c75cfc590278546533ccfda3bc137dc9"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"nom 7.1.3",
|
|
889
|
+
"nom-greedyerror",
|
|
890
|
+
"nom_locate 4.2.0",
|
|
891
|
+
"num-bigint",
|
|
892
|
+
"num-traits",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "target-lexicon"
|
|
897
|
+
version = "0.12.16"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "thiserror"
|
|
903
|
+
version = "1.0.69"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"thiserror-impl 1.0.69",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "thiserror"
|
|
912
|
+
version = "2.0.18"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"thiserror-impl 2.0.18",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "thiserror-impl"
|
|
921
|
+
version = "1.0.69"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"proc-macro2",
|
|
926
|
+
"quote",
|
|
927
|
+
"syn 2.0.117",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "thiserror-impl"
|
|
932
|
+
version = "2.0.18"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"proc-macro2",
|
|
937
|
+
"quote",
|
|
938
|
+
"syn 2.0.117",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "unicode-ident"
|
|
943
|
+
version = "1.0.24"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "unindent"
|
|
949
|
+
version = "0.2.4"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "version_check"
|
|
955
|
+
version = "0.9.5"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "wasip2"
|
|
961
|
+
version = "1.0.3+wasi-0.2.9"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"wit-bindgen",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "wit-bindgen"
|
|
970
|
+
version = "0.57.1"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "zerodds-cdr"
|
|
976
|
+
version = "1.0.0-rc.1"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "a4aa3af0a7cbea6f11108d249d95f7f465a50fc2cce282d3c86ae1cbafda822f"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"zerodds-foundation",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "zerodds-foundation"
|
|
985
|
+
version = "1.0.0-rc.1"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "6209ae9b24fa393acfff5845754b2e0871829bde0d351a6cd5fdfca9680787c3"
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "zmij"
|
|
991
|
+
version = "1.0.21"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "zstd"
|
|
997
|
+
version = "0.13.3"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"zstd-safe",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "zstd-safe"
|
|
1006
|
+
version = "7.2.4"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"zstd-sys",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "zstd-sys"
|
|
1015
|
+
version = "2.0.16+zstd.1.5.7"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"cc",
|
|
1020
|
+
"pkg-config",
|
|
1021
|
+
]
|