xdmf 0.2.1__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.
- xdmf-0.2.1/Cargo.lock +911 -0
- xdmf-0.2.1/Cargo.toml +136 -0
- xdmf-0.2.1/LICENSE +21 -0
- xdmf-0.2.1/PKG-INFO +122 -0
- xdmf-0.2.1/README.md +252 -0
- xdmf-0.2.1/pyproject.toml +37 -0
- xdmf-0.2.1/python/Cargo.toml +31 -0
- xdmf-0.2.1/python/README.md +96 -0
- xdmf-0.2.1/python/py.typed +0 -0
- xdmf-0.2.1/python/src/arrays.rs +156 -0
- xdmf-0.2.1/python/src/enums.rs +364 -0
- xdmf-0.2.1/python/src/error.rs +37 -0
- xdmf-0.2.1/python/src/lib.rs +52 -0
- xdmf-0.2.1/python/src/writer.rs +322 -0
- xdmf-0.2.1/python/xdmf.pyi +186 -0
- xdmf-0.2.1/src/ascii_writer.rs +823 -0
- xdmf-0.2.1/src/binary_writer.rs +538 -0
- xdmf-0.2.1/src/error.rs +352 -0
- xdmf-0.2.1/src/hdf5_writer.rs +1160 -0
- xdmf-0.2.1/src/lib.rs +555 -0
- xdmf-0.2.1/src/paraview.rs +203 -0
- xdmf-0.2.1/src/reader/hdf5_reader.rs +156 -0
- xdmf-0.2.1/src/reader/light_data.rs +329 -0
- xdmf-0.2.1/src/reader/selection.rs +303 -0
- xdmf-0.2.1/src/reader/topology.rs +287 -0
- xdmf-0.2.1/src/reader.rs +1365 -0
- xdmf-0.2.1/src/time_series_writer.rs +4527 -0
- xdmf-0.2.1/src/values.rs +741 -0
- xdmf-0.2.1/src/xdmf_elements/attribute.rs +102 -0
- xdmf-0.2.1/src/xdmf_elements/data_item.rs +599 -0
- xdmf-0.2.1/src/xdmf_elements/dimensions.rs +118 -0
- xdmf-0.2.1/src/xdmf_elements/geometry.rs +60 -0
- xdmf-0.2.1/src/xdmf_elements/grid.rs +277 -0
- xdmf-0.2.1/src/xdmf_elements/topology.rs +199 -0
- xdmf-0.2.1/src/xdmf_elements.rs +318 -0
xdmf-0.2.1/Cargo.lock
ADDED
|
@@ -0,0 +1,911 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.5"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr 2.8.3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "ascii"
|
|
22
|
+
version = "1.1.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "autocfg"
|
|
28
|
+
version = "1.5.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "base64"
|
|
34
|
+
version = "0.13.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bitflags"
|
|
40
|
+
version = "2.13.1"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "bytemuck"
|
|
46
|
+
version = "1.25.2"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "byteorder"
|
|
52
|
+
version = "1.5.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "cc"
|
|
58
|
+
version = "1.4.4"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"find-msvc-tools",
|
|
63
|
+
"shlex",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "cfg-if"
|
|
68
|
+
version = "1.0.4"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "cmake"
|
|
74
|
+
version = "0.1.58"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
77
|
+
dependencies = [
|
|
78
|
+
"cc",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "crc32fast"
|
|
83
|
+
version = "1.5.1"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"cfg-if",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "diff"
|
|
92
|
+
version = "0.1.13"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "equivalent"
|
|
98
|
+
version = "1.0.2"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "find-msvc-tools"
|
|
104
|
+
version = "0.1.11"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "flate2"
|
|
110
|
+
version = "1.1.10"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"crc32fast",
|
|
115
|
+
"miniz_oxide",
|
|
116
|
+
"zlib-rs",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "float-cmp"
|
|
121
|
+
version = "0.10.0"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"num-traits",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "fs_extra"
|
|
130
|
+
version = "1.3.0"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "hashbrown"
|
|
136
|
+
version = "0.17.1"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "hdf5-metno"
|
|
142
|
+
version = "0.14.1"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "f72d6ab4f6d6d79bd350c23f6fe17c99d86d8dd05c0e86f6291a366d47e1fece"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"bitflags",
|
|
147
|
+
"cfg-if",
|
|
148
|
+
"hdf5-metno-derive",
|
|
149
|
+
"hdf5-metno-sys",
|
|
150
|
+
"hdf5-metno-types",
|
|
151
|
+
"libc",
|
|
152
|
+
"ndarray",
|
|
153
|
+
"pastey",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "hdf5-metno-derive"
|
|
158
|
+
version = "0.10.2"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "2368b6d71ab96708b91912af3a93f7b8be9b1ecfca082f2c0868ce327a1fe926"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"proc-macro-crate",
|
|
163
|
+
"proc-macro2",
|
|
164
|
+
"quote",
|
|
165
|
+
"syn 3.0.4",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "hdf5-metno-src"
|
|
170
|
+
version = "0.10.4"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "69c883c565498492954e344c482f8622525e58c7a71100dd9498c4940da82885"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"cmake",
|
|
175
|
+
"libz-sys",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "hdf5-metno-sys"
|
|
180
|
+
version = "0.12.2"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "4960600abde637480bd1c21430baece56bcbafe5303cede311f67c27f50a9f4a"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"hdf5-metno-src",
|
|
185
|
+
"libc",
|
|
186
|
+
"libloading",
|
|
187
|
+
"libz-sys",
|
|
188
|
+
"parking_lot",
|
|
189
|
+
"pkg-config",
|
|
190
|
+
"regex",
|
|
191
|
+
"serde",
|
|
192
|
+
"serde_derive",
|
|
193
|
+
"winreg",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "hdf5-metno-types"
|
|
198
|
+
version = "0.11.1"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "b29041af7e5a0b5698d6607c5c8b67b5dfcab40eb89c2fcfec54bbf0c031b425"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"ascii",
|
|
203
|
+
"cfg-if",
|
|
204
|
+
"hdf5-metno-sys",
|
|
205
|
+
"libc",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "heck"
|
|
210
|
+
version = "0.5.0"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "humansize"
|
|
216
|
+
version = "2.1.3"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"libm",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "indexmap"
|
|
225
|
+
version = "2.14.0"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"equivalent",
|
|
230
|
+
"hashbrown",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "itoa"
|
|
235
|
+
version = "1.0.18"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "libc"
|
|
241
|
+
version = "0.2.189"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "libloading"
|
|
247
|
+
version = "0.8.9"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"cfg-if",
|
|
252
|
+
"windows-link",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "libm"
|
|
257
|
+
version = "0.2.16"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "libz-sys"
|
|
263
|
+
version = "1.1.29"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"cc",
|
|
268
|
+
"libc",
|
|
269
|
+
"pkg-config",
|
|
270
|
+
"vcpkg",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "lock_api"
|
|
275
|
+
version = "0.4.14"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"scopeguard",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "lz4_flex"
|
|
284
|
+
version = "0.7.5"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "05304f8e67dfc93d1b4b990137fd1a7a4c6ad44b60a9c486c8c4486f9d2027ae"
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "lzma-sys"
|
|
290
|
+
version = "0.1.20"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"cc",
|
|
295
|
+
"libc",
|
|
296
|
+
"pkg-config",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "matrixmultiply"
|
|
301
|
+
version = "0.3.11"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"autocfg",
|
|
306
|
+
"rawpointer",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "memchr"
|
|
311
|
+
version = "1.0.2"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "148fab2e51b4f1cfc66da2a7c32981d1d3c083a803978268bb11fe4b86925e7a"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"libc",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "memchr"
|
|
320
|
+
version = "2.8.3"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "miniz_oxide"
|
|
326
|
+
version = "0.9.1"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"adler2",
|
|
331
|
+
"simd-adler32",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "ndarray"
|
|
336
|
+
version = "0.17.2"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"matrixmultiply",
|
|
341
|
+
"num-complex",
|
|
342
|
+
"num-integer",
|
|
343
|
+
"num-traits",
|
|
344
|
+
"portable-atomic",
|
|
345
|
+
"portable-atomic-util",
|
|
346
|
+
"rawpointer",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "nom"
|
|
351
|
+
version = "3.2.1"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "05aec50c70fd288702bcd93284a8444607f3292dbdf2a30de5ea5dcdbe72287b"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"memchr 1.0.2",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "num-complex"
|
|
360
|
+
version = "0.4.6"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"num-traits",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "num-derive"
|
|
369
|
+
version = "0.3.3"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"proc-macro2",
|
|
374
|
+
"quote",
|
|
375
|
+
"syn 1.0.109",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "num-integer"
|
|
380
|
+
version = "0.1.47"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"num-traits",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "num-traits"
|
|
389
|
+
version = "0.2.19"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"autocfg",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "numpy"
|
|
398
|
+
version = "0.29.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"libc",
|
|
403
|
+
"ndarray",
|
|
404
|
+
"num-complex",
|
|
405
|
+
"num-integer",
|
|
406
|
+
"num-traits",
|
|
407
|
+
"pyo3",
|
|
408
|
+
"pyo3-build-config",
|
|
409
|
+
"rustc-hash",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "once_cell"
|
|
414
|
+
version = "1.21.4"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "parking_lot"
|
|
420
|
+
version = "0.12.5"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"lock_api",
|
|
425
|
+
"parking_lot_core",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "parking_lot_core"
|
|
430
|
+
version = "0.9.12"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"cfg-if",
|
|
435
|
+
"libc",
|
|
436
|
+
"redox_syscall",
|
|
437
|
+
"smallvec",
|
|
438
|
+
"windows-link",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "pastey"
|
|
443
|
+
version = "0.2.3"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "pkg-config"
|
|
449
|
+
version = "0.3.34"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "portable-atomic"
|
|
455
|
+
version = "1.15.0"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "portable-atomic-util"
|
|
461
|
+
version = "0.2.7"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"portable-atomic",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "pretty_assertions"
|
|
470
|
+
version = "1.4.1"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"diff",
|
|
475
|
+
"yansi",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "proc-macro-crate"
|
|
480
|
+
version = "3.5.0"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"toml_edit",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "proc-macro2"
|
|
489
|
+
version = "1.0.107"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"unicode-ident",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "pyo3"
|
|
498
|
+
version = "0.29.2"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"libc",
|
|
503
|
+
"once_cell",
|
|
504
|
+
"portable-atomic",
|
|
505
|
+
"pyo3-build-config",
|
|
506
|
+
"pyo3-ffi",
|
|
507
|
+
"pyo3-macros",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "pyo3-build-config"
|
|
512
|
+
version = "0.29.2"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"target-lexicon",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "pyo3-ffi"
|
|
521
|
+
version = "0.29.2"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"libc",
|
|
526
|
+
"pyo3-build-config",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "pyo3-macros"
|
|
531
|
+
version = "0.29.2"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"proc-macro2",
|
|
536
|
+
"pyo3-macros-backend",
|
|
537
|
+
"quote",
|
|
538
|
+
"syn 2.0.119",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "pyo3-macros-backend"
|
|
543
|
+
version = "0.29.2"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"heck",
|
|
548
|
+
"proc-macro2",
|
|
549
|
+
"quote",
|
|
550
|
+
"syn 2.0.119",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "quick-xml"
|
|
555
|
+
version = "0.22.0"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"memchr 2.8.3",
|
|
560
|
+
"serde",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "quick-xml"
|
|
565
|
+
version = "0.41.0"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"memchr 2.8.3",
|
|
570
|
+
"serde",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "quote"
|
|
575
|
+
version = "1.0.47"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
578
|
+
dependencies = [
|
|
579
|
+
"proc-macro2",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "rawpointer"
|
|
584
|
+
version = "0.2.1"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "redox_syscall"
|
|
590
|
+
version = "0.5.18"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"bitflags",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "regex"
|
|
599
|
+
version = "1.13.1"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"aho-corasick",
|
|
604
|
+
"memchr 2.8.3",
|
|
605
|
+
"regex-automata",
|
|
606
|
+
"regex-syntax",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "regex-automata"
|
|
611
|
+
version = "0.4.18"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"aho-corasick",
|
|
616
|
+
"memchr 2.8.3",
|
|
617
|
+
"regex-syntax",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "regex-syntax"
|
|
622
|
+
version = "0.8.11"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "rustc-hash"
|
|
628
|
+
version = "2.1.3"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "scopeguard"
|
|
634
|
+
version = "1.2.0"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "serde"
|
|
640
|
+
version = "1.0.229"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"serde_core",
|
|
645
|
+
"serde_derive",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "serde_core"
|
|
650
|
+
version = "1.0.229"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"serde_derive",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "serde_derive"
|
|
659
|
+
version = "1.0.229"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"proc-macro2",
|
|
664
|
+
"quote",
|
|
665
|
+
"syn 3.0.4",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "serde_json"
|
|
670
|
+
version = "1.0.151"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"itoa",
|
|
675
|
+
"memchr 2.8.3",
|
|
676
|
+
"serde",
|
|
677
|
+
"serde_core",
|
|
678
|
+
"zmij",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "shlex"
|
|
683
|
+
version = "2.0.1"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "simd-adler32"
|
|
689
|
+
version = "0.3.10"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "smallvec"
|
|
695
|
+
version = "1.15.2"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "syn"
|
|
701
|
+
version = "1.0.109"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"proc-macro2",
|
|
706
|
+
"quote",
|
|
707
|
+
"unicode-ident",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "syn"
|
|
712
|
+
version = "2.0.119"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"proc-macro2",
|
|
717
|
+
"quote",
|
|
718
|
+
"unicode-ident",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "syn"
|
|
723
|
+
version = "3.0.4"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"proc-macro2",
|
|
728
|
+
"quote",
|
|
729
|
+
"unicode-ident",
|
|
730
|
+
]
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "target-lexicon"
|
|
734
|
+
version = "0.13.5"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "temp-dir"
|
|
740
|
+
version = "0.2.0"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "016ef9739649996fcc983b9c588fe3d557cf216d4d98503ce1b057ab5a66d689"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "thiserror"
|
|
746
|
+
version = "2.0.20"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"thiserror-impl",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "thiserror-impl"
|
|
755
|
+
version = "2.0.20"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"proc-macro2",
|
|
760
|
+
"quote",
|
|
761
|
+
"syn 3.0.4",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "toml_datetime"
|
|
766
|
+
version = "1.1.1+spec-1.1.0"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"serde_core",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "toml_edit"
|
|
775
|
+
version = "0.25.13+spec-1.1.0"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"indexmap",
|
|
780
|
+
"toml_datetime",
|
|
781
|
+
"toml_parser",
|
|
782
|
+
"winnow",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "toml_parser"
|
|
787
|
+
version = "1.1.3+spec-1.1.0"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
790
|
+
dependencies = [
|
|
791
|
+
"winnow",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "unicode-ident"
|
|
796
|
+
version = "1.0.24"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "vcpkg"
|
|
802
|
+
version = "0.2.15"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "vtkio"
|
|
808
|
+
version = "0.6.3"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "abbe89e5b97b472d57abeb02755a06d75b28d2df7d1fe3df5baf032281a65c16"
|
|
811
|
+
dependencies = [
|
|
812
|
+
"base64",
|
|
813
|
+
"bytemuck",
|
|
814
|
+
"byteorder",
|
|
815
|
+
"flate2",
|
|
816
|
+
"lz4_flex",
|
|
817
|
+
"nom",
|
|
818
|
+
"num-derive",
|
|
819
|
+
"num-traits",
|
|
820
|
+
"quick-xml 0.22.0",
|
|
821
|
+
"serde",
|
|
822
|
+
"xz2",
|
|
823
|
+
]
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "windows-link"
|
|
827
|
+
version = "0.2.1"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "windows-sys"
|
|
833
|
+
version = "0.61.2"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"windows-link",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "winnow"
|
|
842
|
+
version = "1.0.4"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"memchr 2.8.3",
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "winreg"
|
|
851
|
+
version = "0.56.0"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "7d6f32a0ff4a9f6f01231eb2059cc85479330739333e0e58cadf03b6af2cca10"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"cfg-if",
|
|
856
|
+
"serde",
|
|
857
|
+
"windows-sys",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "xdmf"
|
|
862
|
+
version = "0.2.1"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"float-cmp",
|
|
865
|
+
"fs_extra",
|
|
866
|
+
"hdf5-metno",
|
|
867
|
+
"humansize",
|
|
868
|
+
"pretty_assertions",
|
|
869
|
+
"quick-xml 0.41.0",
|
|
870
|
+
"serde",
|
|
871
|
+
"serde_json",
|
|
872
|
+
"temp-dir",
|
|
873
|
+
"thiserror",
|
|
874
|
+
"vtkio",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "xdmf-python"
|
|
879
|
+
version = "0.2.1"
|
|
880
|
+
dependencies = [
|
|
881
|
+
"numpy",
|
|
882
|
+
"pyo3",
|
|
883
|
+
"xdmf",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "xz2"
|
|
888
|
+
version = "0.1.7"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"lzma-sys",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "yansi"
|
|
897
|
+
version = "1.0.1"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "zlib-rs"
|
|
903
|
+
version = "0.6.7"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "zmij"
|
|
909
|
+
version = "1.0.23"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|