doppy 0.4.1__tar.gz → 0.5.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.
Potentially problematic release.
This version of doppy might be problematic. Click here for more details.
- {doppy-0.4.1 → doppy-0.5.0}/Cargo.lock +154 -174
- {doppy-0.4.1 → doppy-0.5.0}/Cargo.toml +1 -1
- {doppy-0.4.1 → doppy-0.5.0}/PKG-INFO +3 -2
- {doppy-0.4.1 → doppy-0.5.0}/crates/doprs/src/raw/wls70.rs +1 -1
- {doppy-0.4.1 → doppy-0.5.0}/pyproject.toml +9 -1
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/bench.py +3 -2
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/data/api.py +1 -1
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/netcdf.py +8 -4
- doppy-0.5.0/src/doppy/product/noise_utils.py +106 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/product/stare.py +60 -10
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/product/stare_depol.py +31 -8
- doppy-0.5.0/src/doppy/product/turbulence.py +265 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/product/wind.py +9 -2
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/raw/halo_hpl.py +6 -55
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/raw/halo_sys_params.py +6 -6
- doppy-0.5.0/src/doppy/raw/utils.py +14 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/raw/windcube.py +4 -3
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/raw/wls70.py +4 -36
- {doppy-0.4.1 → doppy-0.5.0}/LICENSE +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/README.md +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doppy_rs/Cargo.toml +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doppy_rs/src/lib.rs +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doppy_rs/src/raw/halo_hpl.rs +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doppy_rs/src/raw/wls70.rs +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doppy_rs/src/raw.rs +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doprs/.gitignore +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doprs/Cargo.toml +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doprs/src/lib.rs +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doprs/src/raw/error.rs +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doprs/src/raw/halo_hpl.rs +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/crates/doprs/src/raw.rs +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/__init__.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/__main__.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/data/__init__.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/data/cache.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/data/exceptions.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/defaults.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/exceptions.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/options.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/product/__init__.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/py.typed +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/raw/__init__.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/raw/halo_bg.py +0 -0
- {doppy-0.4.1 → doppy-0.5.0}/src/doppy/utils.py +0 -0
|
@@ -4,9 +4,9 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "aho-corasick"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.3"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
@@ -28,29 +28,29 @@ dependencies = [
|
|
|
28
28
|
|
|
29
29
|
[[package]]
|
|
30
30
|
name = "autocfg"
|
|
31
|
-
version = "1.
|
|
31
|
+
version = "1.4.0"
|
|
32
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "
|
|
33
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
34
34
|
|
|
35
35
|
[[package]]
|
|
36
36
|
name = "bitflags"
|
|
37
|
-
version = "
|
|
37
|
+
version = "2.8.0"
|
|
38
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "
|
|
39
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
|
40
40
|
|
|
41
41
|
[[package]]
|
|
42
42
|
name = "bumpalo"
|
|
43
|
-
version = "3.
|
|
43
|
+
version = "3.17.0"
|
|
44
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "
|
|
45
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
46
46
|
|
|
47
47
|
[[package]]
|
|
48
48
|
name = "cc"
|
|
49
|
-
version = "1.
|
|
49
|
+
version = "1.2.15"
|
|
50
50
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
-
checksum = "
|
|
51
|
+
checksum = "c736e259eea577f443d5c86c304f9f4ae0295c43f3ba05c21f1d66b5f06001af"
|
|
52
52
|
dependencies = [
|
|
53
|
-
"
|
|
53
|
+
"shlex",
|
|
54
54
|
]
|
|
55
55
|
|
|
56
56
|
[[package]]
|
|
@@ -61,29 +61,29 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
61
61
|
|
|
62
62
|
[[package]]
|
|
63
63
|
name = "chrono"
|
|
64
|
-
version = "0.4.
|
|
64
|
+
version = "0.4.40"
|
|
65
65
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
-
checksum = "
|
|
66
|
+
checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
|
|
67
67
|
dependencies = [
|
|
68
68
|
"android-tzdata",
|
|
69
69
|
"iana-time-zone",
|
|
70
70
|
"js-sys",
|
|
71
71
|
"num-traits",
|
|
72
72
|
"wasm-bindgen",
|
|
73
|
-
"windows-
|
|
73
|
+
"windows-link",
|
|
74
74
|
]
|
|
75
75
|
|
|
76
76
|
[[package]]
|
|
77
77
|
name = "core-foundation-sys"
|
|
78
|
-
version = "0.8.
|
|
78
|
+
version = "0.8.7"
|
|
79
79
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
80
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
81
81
|
|
|
82
82
|
[[package]]
|
|
83
83
|
name = "crossbeam-deque"
|
|
84
|
-
version = "0.8.
|
|
84
|
+
version = "0.8.6"
|
|
85
85
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
-
checksum = "
|
|
86
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
87
87
|
dependencies = [
|
|
88
88
|
"crossbeam-epoch",
|
|
89
89
|
"crossbeam-utils",
|
|
@@ -100,13 +100,13 @@ dependencies = [
|
|
|
100
100
|
|
|
101
101
|
[[package]]
|
|
102
102
|
name = "crossbeam-utils"
|
|
103
|
-
version = "0.8.
|
|
103
|
+
version = "0.8.21"
|
|
104
104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
-
checksum = "
|
|
105
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
106
106
|
|
|
107
107
|
[[package]]
|
|
108
108
|
name = "doppy_rs"
|
|
109
|
-
version = "0.
|
|
109
|
+
version = "0.5.0"
|
|
110
110
|
dependencies = [
|
|
111
111
|
"doprs",
|
|
112
112
|
"numpy",
|
|
@@ -115,7 +115,7 @@ dependencies = [
|
|
|
115
115
|
|
|
116
116
|
[[package]]
|
|
117
117
|
name = "doprs"
|
|
118
|
-
version = "0.
|
|
118
|
+
version = "0.5.0"
|
|
119
119
|
dependencies = [
|
|
120
120
|
"chrono",
|
|
121
121
|
"rayon",
|
|
@@ -124,9 +124,9 @@ dependencies = [
|
|
|
124
124
|
|
|
125
125
|
[[package]]
|
|
126
126
|
name = "either"
|
|
127
|
-
version = "1.
|
|
127
|
+
version = "1.14.0"
|
|
128
128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
-
checksum = "
|
|
129
|
+
checksum = "b7914353092ddf589ad78f25c5c1c21b7f80b0ff8621e7c814c3485b5306da9d"
|
|
130
130
|
|
|
131
131
|
[[package]]
|
|
132
132
|
name = "heck"
|
|
@@ -136,9 +136,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
|
136
136
|
|
|
137
137
|
[[package]]
|
|
138
138
|
name = "iana-time-zone"
|
|
139
|
-
version = "0.1.
|
|
139
|
+
version = "0.1.61"
|
|
140
140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
-
checksum = "
|
|
141
|
+
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
|
|
142
142
|
dependencies = [
|
|
143
143
|
"android_system_properties",
|
|
144
144
|
"core-foundation-sys",
|
|
@@ -159,30 +159,31 @@ dependencies = [
|
|
|
159
159
|
|
|
160
160
|
[[package]]
|
|
161
161
|
name = "indoc"
|
|
162
|
-
version = "2.0.
|
|
162
|
+
version = "2.0.5"
|
|
163
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
-
checksum = "
|
|
164
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
165
165
|
|
|
166
166
|
[[package]]
|
|
167
167
|
name = "js-sys"
|
|
168
|
-
version = "0.3.
|
|
168
|
+
version = "0.3.77"
|
|
169
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "
|
|
170
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
171
171
|
dependencies = [
|
|
172
|
+
"once_cell",
|
|
172
173
|
"wasm-bindgen",
|
|
173
174
|
]
|
|
174
175
|
|
|
175
176
|
[[package]]
|
|
176
177
|
name = "libc"
|
|
177
|
-
version = "0.2.
|
|
178
|
+
version = "0.2.170"
|
|
178
179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
-
checksum = "
|
|
180
|
+
checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
|
|
180
181
|
|
|
181
182
|
[[package]]
|
|
182
183
|
name = "lock_api"
|
|
183
|
-
version = "0.4.
|
|
184
|
+
version = "0.4.12"
|
|
184
185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
-
checksum = "
|
|
186
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
186
187
|
dependencies = [
|
|
187
188
|
"autocfg",
|
|
188
189
|
"scopeguard",
|
|
@@ -190,15 +191,15 @@ dependencies = [
|
|
|
190
191
|
|
|
191
192
|
[[package]]
|
|
192
193
|
name = "log"
|
|
193
|
-
version = "0.4.
|
|
194
|
+
version = "0.4.26"
|
|
194
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
-
checksum = "
|
|
196
|
+
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
|
196
197
|
|
|
197
198
|
[[package]]
|
|
198
199
|
name = "matrixmultiply"
|
|
199
|
-
version = "0.3.
|
|
200
|
+
version = "0.3.9"
|
|
200
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
-
checksum = "
|
|
202
|
+
checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
|
|
202
203
|
dependencies = [
|
|
203
204
|
"autocfg",
|
|
204
205
|
"rawpointer",
|
|
@@ -206,15 +207,15 @@ dependencies = [
|
|
|
206
207
|
|
|
207
208
|
[[package]]
|
|
208
209
|
name = "memchr"
|
|
209
|
-
version = "2.7.
|
|
210
|
+
version = "2.7.4"
|
|
210
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
-
checksum = "
|
|
212
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
212
213
|
|
|
213
214
|
[[package]]
|
|
214
215
|
name = "memoffset"
|
|
215
|
-
version = "0.9.
|
|
216
|
+
version = "0.9.1"
|
|
216
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
-
checksum = "
|
|
218
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
218
219
|
dependencies = [
|
|
219
220
|
"autocfg",
|
|
220
221
|
]
|
|
@@ -234,28 +235,27 @@ dependencies = [
|
|
|
234
235
|
|
|
235
236
|
[[package]]
|
|
236
237
|
name = "num-complex"
|
|
237
|
-
version = "0.4.
|
|
238
|
+
version = "0.4.6"
|
|
238
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
240
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
240
241
|
dependencies = [
|
|
241
242
|
"num-traits",
|
|
242
243
|
]
|
|
243
244
|
|
|
244
245
|
[[package]]
|
|
245
246
|
name = "num-integer"
|
|
246
|
-
version = "0.1.
|
|
247
|
+
version = "0.1.46"
|
|
247
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
-
checksum = "
|
|
249
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
249
250
|
dependencies = [
|
|
250
|
-
"autocfg",
|
|
251
251
|
"num-traits",
|
|
252
252
|
]
|
|
253
253
|
|
|
254
254
|
[[package]]
|
|
255
255
|
name = "num-traits"
|
|
256
|
-
version = "0.2.
|
|
256
|
+
version = "0.2.19"
|
|
257
257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
-
checksum = "
|
|
258
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
259
259
|
dependencies = [
|
|
260
260
|
"autocfg",
|
|
261
261
|
]
|
|
@@ -277,15 +277,15 @@ dependencies = [
|
|
|
277
277
|
|
|
278
278
|
[[package]]
|
|
279
279
|
name = "once_cell"
|
|
280
|
-
version = "1.
|
|
280
|
+
version = "1.20.3"
|
|
281
281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
-
checksum = "
|
|
282
|
+
checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
|
|
283
283
|
|
|
284
284
|
[[package]]
|
|
285
285
|
name = "parking_lot"
|
|
286
|
-
version = "0.12.
|
|
286
|
+
version = "0.12.3"
|
|
287
287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
-
checksum = "
|
|
288
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
289
289
|
dependencies = [
|
|
290
290
|
"lock_api",
|
|
291
291
|
"parking_lot_core",
|
|
@@ -293,37 +293,44 @@ dependencies = [
|
|
|
293
293
|
|
|
294
294
|
[[package]]
|
|
295
295
|
name = "parking_lot_core"
|
|
296
|
-
version = "0.9.
|
|
296
|
+
version = "0.9.10"
|
|
297
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
-
checksum = "
|
|
298
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
299
299
|
dependencies = [
|
|
300
300
|
"cfg-if",
|
|
301
301
|
"libc",
|
|
302
302
|
"redox_syscall",
|
|
303
303
|
"smallvec",
|
|
304
|
-
"windows-targets
|
|
304
|
+
"windows-targets",
|
|
305
305
|
]
|
|
306
306
|
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "portable-atomic"
|
|
309
|
+
version = "1.11.0"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
312
|
+
|
|
307
313
|
[[package]]
|
|
308
314
|
name = "proc-macro2"
|
|
309
|
-
version = "1.0.
|
|
315
|
+
version = "1.0.93"
|
|
310
316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
-
checksum = "
|
|
317
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
|
312
318
|
dependencies = [
|
|
313
319
|
"unicode-ident",
|
|
314
320
|
]
|
|
315
321
|
|
|
316
322
|
[[package]]
|
|
317
323
|
name = "pyo3"
|
|
318
|
-
version = "0.20.
|
|
324
|
+
version = "0.20.3"
|
|
319
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "
|
|
326
|
+
checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
|
|
321
327
|
dependencies = [
|
|
322
328
|
"cfg-if",
|
|
323
329
|
"indoc",
|
|
324
330
|
"libc",
|
|
325
331
|
"memoffset",
|
|
326
332
|
"parking_lot",
|
|
333
|
+
"portable-atomic",
|
|
327
334
|
"pyo3-build-config",
|
|
328
335
|
"pyo3-ffi",
|
|
329
336
|
"pyo3-macros",
|
|
@@ -332,9 +339,9 @@ dependencies = [
|
|
|
332
339
|
|
|
333
340
|
[[package]]
|
|
334
341
|
name = "pyo3-build-config"
|
|
335
|
-
version = "0.20.
|
|
342
|
+
version = "0.20.3"
|
|
336
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
-
checksum = "
|
|
344
|
+
checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
|
|
338
345
|
dependencies = [
|
|
339
346
|
"once_cell",
|
|
340
347
|
"target-lexicon",
|
|
@@ -342,9 +349,9 @@ dependencies = [
|
|
|
342
349
|
|
|
343
350
|
[[package]]
|
|
344
351
|
name = "pyo3-ffi"
|
|
345
|
-
version = "0.20.
|
|
352
|
+
version = "0.20.3"
|
|
346
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
-
checksum = "
|
|
354
|
+
checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
|
|
348
355
|
dependencies = [
|
|
349
356
|
"libc",
|
|
350
357
|
"pyo3-build-config",
|
|
@@ -352,9 +359,9 @@ dependencies = [
|
|
|
352
359
|
|
|
353
360
|
[[package]]
|
|
354
361
|
name = "pyo3-macros"
|
|
355
|
-
version = "0.20.
|
|
362
|
+
version = "0.20.3"
|
|
356
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
364
|
+
checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
|
|
358
365
|
dependencies = [
|
|
359
366
|
"proc-macro2",
|
|
360
367
|
"pyo3-macros-backend",
|
|
@@ -364,21 +371,22 @@ dependencies = [
|
|
|
364
371
|
|
|
365
372
|
[[package]]
|
|
366
373
|
name = "pyo3-macros-backend"
|
|
367
|
-
version = "0.20.
|
|
374
|
+
version = "0.20.3"
|
|
368
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
-
checksum = "
|
|
376
|
+
checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
|
|
370
377
|
dependencies = [
|
|
371
378
|
"heck",
|
|
372
379
|
"proc-macro2",
|
|
380
|
+
"pyo3-build-config",
|
|
373
381
|
"quote",
|
|
374
382
|
"syn",
|
|
375
383
|
]
|
|
376
384
|
|
|
377
385
|
[[package]]
|
|
378
386
|
name = "quote"
|
|
379
|
-
version = "1.0.
|
|
387
|
+
version = "1.0.38"
|
|
380
388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
-
checksum = "
|
|
389
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
|
382
390
|
dependencies = [
|
|
383
391
|
"proc-macro2",
|
|
384
392
|
]
|
|
@@ -391,9 +399,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
|
391
399
|
|
|
392
400
|
[[package]]
|
|
393
401
|
name = "rayon"
|
|
394
|
-
version = "1.
|
|
402
|
+
version = "1.10.0"
|
|
395
403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
-
checksum = "
|
|
404
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
397
405
|
dependencies = [
|
|
398
406
|
"either",
|
|
399
407
|
"rayon-core",
|
|
@@ -411,18 +419,18 @@ dependencies = [
|
|
|
411
419
|
|
|
412
420
|
[[package]]
|
|
413
421
|
name = "redox_syscall"
|
|
414
|
-
version = "0.
|
|
422
|
+
version = "0.5.9"
|
|
415
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "
|
|
424
|
+
checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f"
|
|
417
425
|
dependencies = [
|
|
418
426
|
"bitflags",
|
|
419
427
|
]
|
|
420
428
|
|
|
421
429
|
[[package]]
|
|
422
430
|
name = "regex"
|
|
423
|
-
version = "1.
|
|
431
|
+
version = "1.11.1"
|
|
424
432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
-
checksum = "
|
|
433
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
426
434
|
dependencies = [
|
|
427
435
|
"aho-corasick",
|
|
428
436
|
"memchr",
|
|
@@ -432,9 +440,9 @@ dependencies = [
|
|
|
432
440
|
|
|
433
441
|
[[package]]
|
|
434
442
|
name = "regex-automata"
|
|
435
|
-
version = "0.4.
|
|
443
|
+
version = "0.4.9"
|
|
436
444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
-
checksum = "
|
|
445
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
438
446
|
dependencies = [
|
|
439
447
|
"aho-corasick",
|
|
440
448
|
"memchr",
|
|
@@ -443,9 +451,9 @@ dependencies = [
|
|
|
443
451
|
|
|
444
452
|
[[package]]
|
|
445
453
|
name = "regex-syntax"
|
|
446
|
-
version = "0.8.
|
|
454
|
+
version = "0.8.5"
|
|
447
455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
-
checksum = "
|
|
456
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
449
457
|
|
|
450
458
|
[[package]]
|
|
451
459
|
name = "rustc-hash"
|
|
@@ -453,23 +461,35 @@ version = "1.1.0"
|
|
|
453
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
462
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
455
463
|
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "rustversion"
|
|
466
|
+
version = "1.0.19"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
|
469
|
+
|
|
456
470
|
[[package]]
|
|
457
471
|
name = "scopeguard"
|
|
458
472
|
version = "1.2.0"
|
|
459
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
474
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
461
475
|
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "shlex"
|
|
478
|
+
version = "1.3.0"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
481
|
+
|
|
462
482
|
[[package]]
|
|
463
483
|
name = "smallvec"
|
|
464
|
-
version = "1.
|
|
484
|
+
version = "1.14.0"
|
|
465
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
-
checksum = "
|
|
486
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
|
467
487
|
|
|
468
488
|
[[package]]
|
|
469
489
|
name = "syn"
|
|
470
|
-
version = "2.0.
|
|
490
|
+
version = "2.0.98"
|
|
471
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
-
checksum = "
|
|
492
|
+
checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
|
|
473
493
|
dependencies = [
|
|
474
494
|
"proc-macro2",
|
|
475
495
|
"quote",
|
|
@@ -478,15 +498,15 @@ dependencies = [
|
|
|
478
498
|
|
|
479
499
|
[[package]]
|
|
480
500
|
name = "target-lexicon"
|
|
481
|
-
version = "0.12.
|
|
501
|
+
version = "0.12.16"
|
|
482
502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
-
checksum = "
|
|
503
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
484
504
|
|
|
485
505
|
[[package]]
|
|
486
506
|
name = "unicode-ident"
|
|
487
|
-
version = "1.0.
|
|
507
|
+
version = "1.0.17"
|
|
488
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
-
checksum = "
|
|
509
|
+
checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
|
|
490
510
|
|
|
491
511
|
[[package]]
|
|
492
512
|
name = "unindent"
|
|
@@ -496,23 +516,24 @@ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
|
496
516
|
|
|
497
517
|
[[package]]
|
|
498
518
|
name = "wasm-bindgen"
|
|
499
|
-
version = "0.2.
|
|
519
|
+
version = "0.2.100"
|
|
500
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
521
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
502
522
|
dependencies = [
|
|
503
523
|
"cfg-if",
|
|
524
|
+
"once_cell",
|
|
525
|
+
"rustversion",
|
|
504
526
|
"wasm-bindgen-macro",
|
|
505
527
|
]
|
|
506
528
|
|
|
507
529
|
[[package]]
|
|
508
530
|
name = "wasm-bindgen-backend"
|
|
509
|
-
version = "0.2.
|
|
531
|
+
version = "0.2.100"
|
|
510
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
-
checksum = "
|
|
533
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
512
534
|
dependencies = [
|
|
513
535
|
"bumpalo",
|
|
514
536
|
"log",
|
|
515
|
-
"once_cell",
|
|
516
537
|
"proc-macro2",
|
|
517
538
|
"quote",
|
|
518
539
|
"syn",
|
|
@@ -521,9 +542,9 @@ dependencies = [
|
|
|
521
542
|
|
|
522
543
|
[[package]]
|
|
523
544
|
name = "wasm-bindgen-macro"
|
|
524
|
-
version = "0.2.
|
|
545
|
+
version = "0.2.100"
|
|
525
546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
-
checksum = "
|
|
547
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
527
548
|
dependencies = [
|
|
528
549
|
"quote",
|
|
529
550
|
"wasm-bindgen-macro-support",
|
|
@@ -531,9 +552,9 @@ dependencies = [
|
|
|
531
552
|
|
|
532
553
|
[[package]]
|
|
533
554
|
name = "wasm-bindgen-macro-support"
|
|
534
|
-
version = "0.2.
|
|
555
|
+
version = "0.2.100"
|
|
535
556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "
|
|
557
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
537
558
|
dependencies = [
|
|
538
559
|
"proc-macro2",
|
|
539
560
|
"quote",
|
|
@@ -544,9 +565,12 @@ dependencies = [
|
|
|
544
565
|
|
|
545
566
|
[[package]]
|
|
546
567
|
name = "wasm-bindgen-shared"
|
|
547
|
-
version = "0.2.
|
|
568
|
+
version = "0.2.100"
|
|
548
569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
-
checksum = "
|
|
570
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"unicode-ident",
|
|
573
|
+
]
|
|
550
574
|
|
|
551
575
|
[[package]]
|
|
552
576
|
name = "windows-core"
|
|
@@ -554,119 +578,75 @@ version = "0.52.0"
|
|
|
554
578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
579
|
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
556
580
|
dependencies = [
|
|
557
|
-
"windows-targets
|
|
581
|
+
"windows-targets",
|
|
558
582
|
]
|
|
559
583
|
|
|
560
584
|
[[package]]
|
|
561
|
-
name = "windows-
|
|
562
|
-
version = "0.
|
|
585
|
+
name = "windows-link"
|
|
586
|
+
version = "0.1.0"
|
|
563
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
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
|
-
]
|
|
588
|
+
checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3"
|
|
574
589
|
|
|
575
590
|
[[package]]
|
|
576
591
|
name = "windows-targets"
|
|
577
|
-
version = "0.52.
|
|
592
|
+
version = "0.52.6"
|
|
578
593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
594
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
580
595
|
dependencies = [
|
|
581
|
-
"windows_aarch64_gnullvm
|
|
582
|
-
"windows_aarch64_msvc
|
|
583
|
-
"windows_i686_gnu
|
|
584
|
-
"
|
|
585
|
-
"
|
|
586
|
-
"
|
|
587
|
-
"
|
|
596
|
+
"windows_aarch64_gnullvm",
|
|
597
|
+
"windows_aarch64_msvc",
|
|
598
|
+
"windows_i686_gnu",
|
|
599
|
+
"windows_i686_gnullvm",
|
|
600
|
+
"windows_i686_msvc",
|
|
601
|
+
"windows_x86_64_gnu",
|
|
602
|
+
"windows_x86_64_gnullvm",
|
|
603
|
+
"windows_x86_64_msvc",
|
|
588
604
|
]
|
|
589
605
|
|
|
590
606
|
[[package]]
|
|
591
607
|
name = "windows_aarch64_gnullvm"
|
|
592
|
-
version = "0.
|
|
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"
|
|
608
|
+
version = "0.52.6"
|
|
605
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "
|
|
610
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
607
611
|
|
|
608
612
|
[[package]]
|
|
609
613
|
name = "windows_aarch64_msvc"
|
|
610
|
-
version = "0.52.
|
|
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"
|
|
614
|
+
version = "0.52.6"
|
|
617
615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
616
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
619
617
|
|
|
620
618
|
[[package]]
|
|
621
619
|
name = "windows_i686_gnu"
|
|
622
|
-
version = "0.52.
|
|
620
|
+
version = "0.52.6"
|
|
623
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
-
checksum = "
|
|
622
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
625
623
|
|
|
626
624
|
[[package]]
|
|
627
|
-
name = "
|
|
628
|
-
version = "0.
|
|
625
|
+
name = "windows_i686_gnullvm"
|
|
626
|
+
version = "0.52.6"
|
|
629
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "
|
|
628
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
631
629
|
|
|
632
630
|
[[package]]
|
|
633
631
|
name = "windows_i686_msvc"
|
|
634
|
-
version = "0.52.
|
|
632
|
+
version = "0.52.6"
|
|
635
633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
-
checksum = "
|
|
634
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
637
635
|
|
|
638
636
|
[[package]]
|
|
639
637
|
name = "windows_x86_64_gnu"
|
|
640
|
-
version = "0.
|
|
638
|
+
version = "0.52.6"
|
|
641
639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
-
checksum = "
|
|
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"
|
|
640
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
649
641
|
|
|
650
642
|
[[package]]
|
|
651
643
|
name = "windows_x86_64_gnullvm"
|
|
652
|
-
version = "0.
|
|
644
|
+
version = "0.52.6"
|
|
653
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
-
checksum = "
|
|
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"
|
|
646
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
661
647
|
|
|
662
648
|
[[package]]
|
|
663
649
|
name = "windows_x86_64_msvc"
|
|
664
|
-
version = "0.
|
|
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"
|
|
650
|
+
version = "0.52.6"
|
|
671
651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
-
checksum = "
|
|
652
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|