doppy 0.0.0__tar.gz → 0.0.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.
Potentially problematic release.
This version of doppy might be problematic. Click here for more details.
- doppy-0.0.1/Cargo.lock +672 -0
- doppy-0.0.1/Cargo.toml +10 -0
- {doppy-0.0.0 → doppy-0.0.1}/LICENSE +1 -1
- doppy-0.0.1/PKG-INFO +42 -0
- doppy-0.0.1/crates/doppy_rs/Cargo.toml +19 -0
- doppy-0.0.1/crates/doppy_rs/src/lib.rs +12 -0
- doppy-0.0.1/crates/doppy_rs/src/raw/halo_hpl.rs +120 -0
- doppy-0.0.1/crates/doppy_rs/src/raw.rs +10 -0
- doppy-0.0.1/crates/doprs/.gitignore +4 -0
- doppy-0.0.1/crates/doprs/Cargo.toml +13 -0
- doppy-0.0.1/crates/doprs/src/lib.rs +1 -0
- doppy-0.0.1/crates/doprs/src/raw/error.rs +84 -0
- doppy-0.0.1/crates/doprs/src/raw/halo_hpl.rs +277 -0
- doppy-0.0.1/crates/doprs/src/raw.rs +2 -0
- doppy-0.0.1/pyproject.toml +102 -0
- doppy-0.0.1/src/doppy/__init__.py +6 -0
- doppy-0.0.1/src/doppy/__main__.py +25 -0
- doppy-0.0.1/src/doppy/bench.py +12 -0
- doppy-0.0.1/src/doppy/data/api.py +44 -0
- doppy-0.0.1/src/doppy/data/cache.py +34 -0
- doppy-0.0.1/src/doppy/data/exceptions.py +6 -0
- doppy-0.0.1/src/doppy/defaults.py +3 -0
- doppy-0.0.1/src/doppy/exceptions.py +10 -0
- doppy-0.0.1/src/doppy/netcdf.py +113 -0
- doppy-0.0.1/src/doppy/options.py +13 -0
- doppy-0.0.1/src/doppy/product/__init__.py +3 -0
- doppy-0.0.1/src/doppy/product/stare.py +579 -0
- doppy-0.0.1/src/doppy/raw/__init__.py +5 -0
- doppy-0.0.1/src/doppy/raw/halo_bg.py +142 -0
- doppy-0.0.1/src/doppy/raw/halo_hpl.py +507 -0
- doppy-0.0.1/src/doppy/raw/halo_sys_params.py +104 -0
- doppy-0.0.0/PKG-INFO +0 -46
- doppy-0.0.0/pyproject.toml +0 -37
- doppy-0.0.0/setup.cfg +0 -4
- doppy-0.0.0/src/doppy/main.py +0 -16
- doppy-0.0.0/src/doppy/version.py +0 -1
- doppy-0.0.0/src/doppy.egg-info/PKG-INFO +0 -46
- doppy-0.0.0/src/doppy.egg-info/SOURCES.txt +0 -11
- doppy-0.0.0/src/doppy.egg-info/dependency_links.txt +0 -1
- doppy-0.0.0/src/doppy.egg-info/entry_points.txt +0 -2
- doppy-0.0.0/src/doppy.egg-info/top_level.txt +0 -1
- {doppy-0.0.0 → doppy-0.0.1}/README.md +0 -0
- {doppy-0.0.0/src/doppy → doppy-0.0.1/src/doppy/data}/__init__.py +0 -0
doppy-0.0.1/Cargo.lock
ADDED
|
@@ -0,0 +1,672 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "android-tzdata"
|
|
16
|
+
version = "0.1.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "android_system_properties"
|
|
22
|
+
version = "0.1.5"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"libc",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "autocfg"
|
|
31
|
+
version = "1.1.0"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "bitflags"
|
|
37
|
+
version = "1.3.2"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "bumpalo"
|
|
43
|
+
version = "3.14.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "cc"
|
|
49
|
+
version = "1.0.83"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"libc",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "cfg-if"
|
|
58
|
+
version = "1.0.0"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "chrono"
|
|
64
|
+
version = "0.4.33"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "9f13690e35a5e4ace198e7beea2895d29f3a9cc55015fcebe6336bd2010af9eb"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"android-tzdata",
|
|
69
|
+
"iana-time-zone",
|
|
70
|
+
"js-sys",
|
|
71
|
+
"num-traits",
|
|
72
|
+
"wasm-bindgen",
|
|
73
|
+
"windows-targets 0.52.0",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "core-foundation-sys"
|
|
78
|
+
version = "0.8.6"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "crossbeam-deque"
|
|
84
|
+
version = "0.8.5"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"crossbeam-epoch",
|
|
89
|
+
"crossbeam-utils",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "crossbeam-epoch"
|
|
94
|
+
version = "0.9.18"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"crossbeam-utils",
|
|
99
|
+
]
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "crossbeam-utils"
|
|
103
|
+
version = "0.8.19"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "doppy_rs"
|
|
109
|
+
version = "0.0.1"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"doprs",
|
|
112
|
+
"numpy",
|
|
113
|
+
"pyo3",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "doprs"
|
|
118
|
+
version = "0.0.1"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"chrono",
|
|
121
|
+
"rayon",
|
|
122
|
+
"regex",
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "either"
|
|
127
|
+
version = "1.9.0"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "heck"
|
|
133
|
+
version = "0.4.1"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "iana-time-zone"
|
|
139
|
+
version = "0.1.59"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
|
|
142
|
+
dependencies = [
|
|
143
|
+
"android_system_properties",
|
|
144
|
+
"core-foundation-sys",
|
|
145
|
+
"iana-time-zone-haiku",
|
|
146
|
+
"js-sys",
|
|
147
|
+
"wasm-bindgen",
|
|
148
|
+
"windows-core",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "iana-time-zone-haiku"
|
|
153
|
+
version = "0.1.2"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"cc",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "indoc"
|
|
162
|
+
version = "2.0.4"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "js-sys"
|
|
168
|
+
version = "0.3.67"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"wasm-bindgen",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "libc"
|
|
177
|
+
version = "0.2.152"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "lock_api"
|
|
183
|
+
version = "0.4.11"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"autocfg",
|
|
188
|
+
"scopeguard",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "log"
|
|
193
|
+
version = "0.4.20"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "matrixmultiply"
|
|
199
|
+
version = "0.3.8"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"autocfg",
|
|
204
|
+
"rawpointer",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "memchr"
|
|
209
|
+
version = "2.7.1"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "memoffset"
|
|
215
|
+
version = "0.9.0"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"autocfg",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "ndarray"
|
|
224
|
+
version = "0.15.6"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"matrixmultiply",
|
|
229
|
+
"num-complex",
|
|
230
|
+
"num-integer",
|
|
231
|
+
"num-traits",
|
|
232
|
+
"rawpointer",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "num-complex"
|
|
237
|
+
version = "0.4.4"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"num-traits",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "num-integer"
|
|
246
|
+
version = "0.1.45"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"autocfg",
|
|
251
|
+
"num-traits",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "num-traits"
|
|
256
|
+
version = "0.2.17"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"autocfg",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "numpy"
|
|
265
|
+
version = "0.20.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "bef41cbb417ea83b30525259e30ccef6af39b31c240bda578889494c5392d331"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"libc",
|
|
270
|
+
"ndarray",
|
|
271
|
+
"num-complex",
|
|
272
|
+
"num-integer",
|
|
273
|
+
"num-traits",
|
|
274
|
+
"pyo3",
|
|
275
|
+
"rustc-hash",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "once_cell"
|
|
280
|
+
version = "1.19.0"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "parking_lot"
|
|
286
|
+
version = "0.12.1"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"lock_api",
|
|
291
|
+
"parking_lot_core",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "parking_lot_core"
|
|
296
|
+
version = "0.9.9"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"cfg-if",
|
|
301
|
+
"libc",
|
|
302
|
+
"redox_syscall",
|
|
303
|
+
"smallvec",
|
|
304
|
+
"windows-targets 0.48.5",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "proc-macro2"
|
|
309
|
+
version = "1.0.78"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"unicode-ident",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "pyo3"
|
|
318
|
+
version = "0.20.2"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "9a89dc7a5850d0e983be1ec2a463a171d20990487c3cfcd68b5363f1ee3d6fe0"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"cfg-if",
|
|
323
|
+
"indoc",
|
|
324
|
+
"libc",
|
|
325
|
+
"memoffset",
|
|
326
|
+
"parking_lot",
|
|
327
|
+
"pyo3-build-config",
|
|
328
|
+
"pyo3-ffi",
|
|
329
|
+
"pyo3-macros",
|
|
330
|
+
"unindent",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "pyo3-build-config"
|
|
335
|
+
version = "0.20.2"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "07426f0d8fe5a601f26293f300afd1a7b1ed5e78b2a705870c5f30893c5163be"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"once_cell",
|
|
340
|
+
"target-lexicon",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "pyo3-ffi"
|
|
345
|
+
version = "0.20.2"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "dbb7dec17e17766b46bca4f1a4215a85006b4c2ecde122076c562dd058da6cf1"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"libc",
|
|
350
|
+
"pyo3-build-config",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "pyo3-macros"
|
|
355
|
+
version = "0.20.2"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "05f738b4e40d50b5711957f142878cfa0f28e054aa0ebdfc3fd137a843f74ed3"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"proc-macro2",
|
|
360
|
+
"pyo3-macros-backend",
|
|
361
|
+
"quote",
|
|
362
|
+
"syn",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "pyo3-macros-backend"
|
|
367
|
+
version = "0.20.2"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "0fc910d4851847827daf9d6cdd4a823fbdaab5b8818325c5e97a86da79e8881f"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"heck",
|
|
372
|
+
"proc-macro2",
|
|
373
|
+
"quote",
|
|
374
|
+
"syn",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "quote"
|
|
379
|
+
version = "1.0.35"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"proc-macro2",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "rawpointer"
|
|
388
|
+
version = "0.2.1"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "rayon"
|
|
394
|
+
version = "1.8.1"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"either",
|
|
399
|
+
"rayon-core",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "rayon-core"
|
|
404
|
+
version = "1.12.1"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"crossbeam-deque",
|
|
409
|
+
"crossbeam-utils",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "redox_syscall"
|
|
414
|
+
version = "0.4.1"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"bitflags",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "regex"
|
|
423
|
+
version = "1.10.3"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"aho-corasick",
|
|
428
|
+
"memchr",
|
|
429
|
+
"regex-automata",
|
|
430
|
+
"regex-syntax",
|
|
431
|
+
]
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "regex-automata"
|
|
435
|
+
version = "0.4.4"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "3b7fa1134405e2ec9353fd416b17f8dacd46c473d7d3fd1cf202706a14eb792a"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"aho-corasick",
|
|
440
|
+
"memchr",
|
|
441
|
+
"regex-syntax",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "regex-syntax"
|
|
446
|
+
version = "0.8.2"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "rustc-hash"
|
|
452
|
+
version = "1.1.0"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "scopeguard"
|
|
458
|
+
version = "1.2.0"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "smallvec"
|
|
464
|
+
version = "1.13.1"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "syn"
|
|
470
|
+
version = "2.0.48"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"proc-macro2",
|
|
475
|
+
"quote",
|
|
476
|
+
"unicode-ident",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "target-lexicon"
|
|
481
|
+
version = "0.12.13"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "unicode-ident"
|
|
487
|
+
version = "1.0.12"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "unindent"
|
|
493
|
+
version = "0.2.3"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "wasm-bindgen"
|
|
499
|
+
version = "0.2.90"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"cfg-if",
|
|
504
|
+
"wasm-bindgen-macro",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "wasm-bindgen-backend"
|
|
509
|
+
version = "0.2.90"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"bumpalo",
|
|
514
|
+
"log",
|
|
515
|
+
"once_cell",
|
|
516
|
+
"proc-macro2",
|
|
517
|
+
"quote",
|
|
518
|
+
"syn",
|
|
519
|
+
"wasm-bindgen-shared",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "wasm-bindgen-macro"
|
|
524
|
+
version = "0.2.90"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"quote",
|
|
529
|
+
"wasm-bindgen-macro-support",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "wasm-bindgen-macro-support"
|
|
534
|
+
version = "0.2.90"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"proc-macro2",
|
|
539
|
+
"quote",
|
|
540
|
+
"syn",
|
|
541
|
+
"wasm-bindgen-backend",
|
|
542
|
+
"wasm-bindgen-shared",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "wasm-bindgen-shared"
|
|
547
|
+
version = "0.2.90"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b"
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "windows-core"
|
|
553
|
+
version = "0.52.0"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"windows-targets 0.52.0",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "windows-targets"
|
|
562
|
+
version = "0.48.5"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
567
|
+
"windows_aarch64_msvc 0.48.5",
|
|
568
|
+
"windows_i686_gnu 0.48.5",
|
|
569
|
+
"windows_i686_msvc 0.48.5",
|
|
570
|
+
"windows_x86_64_gnu 0.48.5",
|
|
571
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
572
|
+
"windows_x86_64_msvc 0.48.5",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "windows-targets"
|
|
577
|
+
version = "0.52.0"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"windows_aarch64_gnullvm 0.52.0",
|
|
582
|
+
"windows_aarch64_msvc 0.52.0",
|
|
583
|
+
"windows_i686_gnu 0.52.0",
|
|
584
|
+
"windows_i686_msvc 0.52.0",
|
|
585
|
+
"windows_x86_64_gnu 0.52.0",
|
|
586
|
+
"windows_x86_64_gnullvm 0.52.0",
|
|
587
|
+
"windows_x86_64_msvc 0.52.0",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "windows_aarch64_gnullvm"
|
|
592
|
+
version = "0.48.5"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "windows_aarch64_gnullvm"
|
|
598
|
+
version = "0.52.0"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "windows_aarch64_msvc"
|
|
604
|
+
version = "0.48.5"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "windows_aarch64_msvc"
|
|
610
|
+
version = "0.52.0"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "windows_i686_gnu"
|
|
616
|
+
version = "0.48.5"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "windows_i686_gnu"
|
|
622
|
+
version = "0.52.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "windows_i686_msvc"
|
|
628
|
+
version = "0.48.5"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "windows_i686_msvc"
|
|
634
|
+
version = "0.52.0"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "windows_x86_64_gnu"
|
|
640
|
+
version = "0.48.5"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "windows_x86_64_gnu"
|
|
646
|
+
version = "0.52.0"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "windows_x86_64_gnullvm"
|
|
652
|
+
version = "0.48.5"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "windows_x86_64_gnullvm"
|
|
658
|
+
version = "0.52.0"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "windows_x86_64_msvc"
|
|
664
|
+
version = "0.48.5"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "windows_x86_64_msvc"
|
|
670
|
+
version = "0.52.0"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
doppy-0.0.1/Cargo.toml
ADDED