intensify 0.3.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.
- intensify-0.3.0/Cargo.lock +1313 -0
- intensify-0.3.0/Cargo.toml +147 -0
- intensify-0.3.0/LICENSE +21 -0
- intensify-0.3.0/PKG-INFO +242 -0
- intensify-0.3.0/README.md +191 -0
- intensify-0.3.0/crates/core/Cargo.toml +20 -0
- intensify-0.3.0/crates/core/src/lib.rs +29 -0
- intensify-0.3.0/crates/diagnostics/Cargo.toml +27 -0
- intensify-0.3.0/crates/diagnostics/src/lib.rs +5 -0
- intensify-0.3.0/crates/diagnostics/src/python.rs +8 -0
- intensify-0.3.0/crates/kernels/Cargo.toml +27 -0
- intensify-0.3.0/crates/kernels/src/exponential.rs +232 -0
- intensify-0.3.0/crates/kernels/src/lib.rs +16 -0
- intensify-0.3.0/crates/kernels/src/nonparametric.rs +219 -0
- intensify-0.3.0/crates/kernels/src/power_law.rs +123 -0
- intensify-0.3.0/crates/kernels/src/python.rs +305 -0
- intensify-0.3.0/crates/likelihood/Cargo.toml +27 -0
- intensify-0.3.0/crates/likelihood/src/lib.rs +29 -0
- intensify-0.3.0/crates/likelihood/src/marked_uni_exp.rs +231 -0
- intensify-0.3.0/crates/likelihood/src/mv_exp_dense.rs +433 -0
- intensify-0.3.0/crates/likelihood/src/mv_exp_recursive.rs +509 -0
- intensify-0.3.0/crates/likelihood/src/nonlinear_uni_exp.rs +350 -0
- intensify-0.3.0/crates/likelihood/src/python.rs +573 -0
- intensify-0.3.0/crates/likelihood/src/uni_approx_powerlaw.rs +222 -0
- intensify-0.3.0/crates/likelihood/src/uni_exp.rs +239 -0
- intensify-0.3.0/crates/likelihood/src/uni_nonparametric.rs +323 -0
- intensify-0.3.0/crates/likelihood/src/uni_powerlaw.rs +245 -0
- intensify-0.3.0/crates/likelihood/src/uni_sumexp.rs +332 -0
- intensify-0.3.0/crates/pyo3/Cargo.toml +29 -0
- intensify-0.3.0/crates/pyo3/src/bin/stub-gen.rs +170 -0
- intensify-0.3.0/crates/pyo3/src/lib.rs +43 -0
- intensify-0.3.0/crates/simulation/Cargo.toml +28 -0
- intensify-0.3.0/crates/simulation/src/cluster.rs +234 -0
- intensify-0.3.0/crates/simulation/src/lib.rs +10 -0
- intensify-0.3.0/crates/simulation/src/python.rs +95 -0
- intensify-0.3.0/crates/simulation/src/thinning.rs +312 -0
- intensify-0.3.0/pyproject.toml +119 -0
- intensify-0.3.0/python/intensify/__init__.py +90 -0
- intensify-0.3.0/python/intensify/__init__.pyi +46 -0
- intensify-0.3.0/python/intensify/_config.py +42 -0
- intensify-0.3.0/python/intensify/_libintensify.pyi +228 -0
- intensify-0.3.0/python/intensify/_rust.py +318 -0
- intensify-0.3.0/python/intensify/backends/__init__.py +43 -0
- intensify-0.3.0/python/intensify/core/__init__.py +57 -0
- intensify-0.3.0/python/intensify/core/base.py +121 -0
- intensify-0.3.0/python/intensify/core/diagnostics/__init__.py +34 -0
- intensify-0.3.0/python/intensify/core/diagnostics/goodness_of_fit.py +207 -0
- intensify-0.3.0/python/intensify/core/diagnostics/metrics.py +39 -0
- intensify-0.3.0/python/intensify/core/diagnostics/residuals.py +75 -0
- intensify-0.3.0/python/intensify/core/inference/__init__.py +334 -0
- intensify-0.3.0/python/intensify/core/inference/bayesian.py +160 -0
- intensify-0.3.0/python/intensify/core/inference/em.py +71 -0
- intensify-0.3.0/python/intensify/core/inference/mle.py +1942 -0
- intensify-0.3.0/python/intensify/core/inference/multivariate_hawkes_mle_params.py +80 -0
- intensify-0.3.0/python/intensify/core/inference/online.py +130 -0
- intensify-0.3.0/python/intensify/core/inference/univariate_hawkes_mle_params.py +156 -0
- intensify-0.3.0/python/intensify/core/kernels/__init__.py +34 -0
- intensify-0.3.0/python/intensify/core/kernels/approx_power_law.py +131 -0
- intensify-0.3.0/python/intensify/core/kernels/base.py +197 -0
- intensify-0.3.0/python/intensify/core/kernels/exponential.py +99 -0
- intensify-0.3.0/python/intensify/core/kernels/nonparametric.py +190 -0
- intensify-0.3.0/python/intensify/core/kernels/power_law.py +78 -0
- intensify-0.3.0/python/intensify/core/kernels/sum_exponential.py +121 -0
- intensify-0.3.0/python/intensify/core/processes/__init__.py +31 -0
- intensify-0.3.0/python/intensify/core/processes/cox.py +297 -0
- intensify-0.3.0/python/intensify/core/processes/hawkes.py +537 -0
- intensify-0.3.0/python/intensify/core/processes/marked_hawkes.py +250 -0
- intensify-0.3.0/python/intensify/core/processes/nonlinear_hawkes.py +298 -0
- intensify-0.3.0/python/intensify/core/processes/poisson.py +332 -0
- intensify-0.3.0/python/intensify/core/regularizers.py +100 -0
- intensify-0.3.0/python/intensify/core/simulation/__init__.py +17 -0
- intensify-0.3.0/python/intensify/core/simulation/cluster.py +195 -0
- intensify-0.3.0/python/intensify/core/simulation/thinning.py +91 -0
- intensify-0.3.0/python/intensify/py.typed +0 -0
- intensify-0.3.0/python/intensify/visualization/__init__.py +14 -0
- intensify-0.3.0/python/intensify/visualization/connectivity.py +92 -0
- intensify-0.3.0/python/intensify/visualization/event_histograms.py +108 -0
- intensify-0.3.0/python/intensify/visualization/intensity.py +106 -0
- intensify-0.3.0/python/intensify/visualization/kernels.py +67 -0
|
@@ -0,0 +1,1313 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "android_system_properties"
|
|
7
|
+
version = "0.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"libc",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anyhow"
|
|
16
|
+
version = "1.0.102"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "approx"
|
|
22
|
+
version = "0.5.1"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"num-traits",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "autocfg"
|
|
31
|
+
version = "1.5.0"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "bitflags"
|
|
37
|
+
version = "2.11.1"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "bumpalo"
|
|
43
|
+
version = "3.20.2"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "cc"
|
|
49
|
+
version = "1.2.61"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"find-msvc-tools",
|
|
54
|
+
"shlex",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "cfg-if"
|
|
59
|
+
version = "1.0.4"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "chrono"
|
|
65
|
+
version = "0.4.44"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
68
|
+
dependencies = [
|
|
69
|
+
"iana-time-zone",
|
|
70
|
+
"js-sys",
|
|
71
|
+
"num-traits",
|
|
72
|
+
"wasm-bindgen",
|
|
73
|
+
"windows-link",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "core-foundation-sys"
|
|
78
|
+
version = "0.8.7"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "crossbeam-deque"
|
|
84
|
+
version = "0.8.6"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
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.21"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "crunchy"
|
|
109
|
+
version = "0.2.4"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "either"
|
|
115
|
+
version = "1.15.0"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "equivalent"
|
|
121
|
+
version = "1.0.2"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "find-msvc-tools"
|
|
127
|
+
version = "0.1.9"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "futures-core"
|
|
133
|
+
version = "0.3.32"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "futures-task"
|
|
139
|
+
version = "0.3.32"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "futures-util"
|
|
145
|
+
version = "0.3.32"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"futures-core",
|
|
150
|
+
"futures-task",
|
|
151
|
+
"pin-project-lite",
|
|
152
|
+
"slab",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "getopts"
|
|
157
|
+
version = "0.2.24"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"unicode-width",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "getrandom"
|
|
166
|
+
version = "0.2.17"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"cfg-if",
|
|
171
|
+
"libc",
|
|
172
|
+
"wasi",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "getrandom"
|
|
177
|
+
version = "0.3.4"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
180
|
+
dependencies = [
|
|
181
|
+
"cfg-if",
|
|
182
|
+
"libc",
|
|
183
|
+
"r-efi",
|
|
184
|
+
"wasip2",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "hashbrown"
|
|
189
|
+
version = "0.17.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "heck"
|
|
195
|
+
version = "0.5.0"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "iana-time-zone"
|
|
201
|
+
version = "0.1.65"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"android_system_properties",
|
|
206
|
+
"core-foundation-sys",
|
|
207
|
+
"iana-time-zone-haiku",
|
|
208
|
+
"js-sys",
|
|
209
|
+
"log",
|
|
210
|
+
"wasm-bindgen",
|
|
211
|
+
"windows-core",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "iana-time-zone-haiku"
|
|
216
|
+
version = "0.1.2"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"cc",
|
|
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 = "indoc"
|
|
235
|
+
version = "2.0.7"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"rustversion",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "intensify-core"
|
|
244
|
+
version = "0.3.0"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"pyo3",
|
|
247
|
+
"thiserror",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "intensify-diagnostics"
|
|
252
|
+
version = "0.3.0"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"approx",
|
|
255
|
+
"intensify-core",
|
|
256
|
+
"intensify-kernels",
|
|
257
|
+
"ndarray 0.16.1",
|
|
258
|
+
"numpy",
|
|
259
|
+
"proptest",
|
|
260
|
+
"pyo3",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "intensify-kernels"
|
|
265
|
+
version = "0.3.0"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"approx",
|
|
268
|
+
"intensify-core",
|
|
269
|
+
"ndarray 0.16.1",
|
|
270
|
+
"numpy",
|
|
271
|
+
"proptest",
|
|
272
|
+
"pyo3",
|
|
273
|
+
"thiserror",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "intensify-likelihood"
|
|
278
|
+
version = "0.3.0"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"approx",
|
|
281
|
+
"intensify-core",
|
|
282
|
+
"intensify-kernels",
|
|
283
|
+
"ndarray 0.16.1",
|
|
284
|
+
"numpy",
|
|
285
|
+
"proptest",
|
|
286
|
+
"pyo3",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "intensify-pyo3"
|
|
291
|
+
version = "0.3.0"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"intensify-core",
|
|
294
|
+
"intensify-diagnostics",
|
|
295
|
+
"intensify-kernels",
|
|
296
|
+
"intensify-likelihood",
|
|
297
|
+
"intensify-simulation",
|
|
298
|
+
"pyo3",
|
|
299
|
+
"pyo3-stub-gen",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "intensify-simulation"
|
|
304
|
+
version = "0.3.0"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"approx",
|
|
307
|
+
"intensify-core",
|
|
308
|
+
"intensify-kernels",
|
|
309
|
+
"numpy",
|
|
310
|
+
"proptest",
|
|
311
|
+
"pyo3",
|
|
312
|
+
"rand 0.9.4",
|
|
313
|
+
"rand_distr",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "inventory"
|
|
318
|
+
version = "0.3.24"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"rustversion",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "is-macro"
|
|
327
|
+
version = "0.3.7"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"heck",
|
|
332
|
+
"proc-macro2",
|
|
333
|
+
"quote",
|
|
334
|
+
"syn",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "itertools"
|
|
339
|
+
version = "0.11.0"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"either",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "itertools"
|
|
348
|
+
version = "0.14.0"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"either",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "js-sys"
|
|
357
|
+
version = "0.3.97"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"cfg-if",
|
|
362
|
+
"futures-util",
|
|
363
|
+
"once_cell",
|
|
364
|
+
"wasm-bindgen",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "lalrpop-util"
|
|
369
|
+
version = "0.20.2"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "libc"
|
|
375
|
+
version = "0.2.186"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "libm"
|
|
381
|
+
version = "0.2.16"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "log"
|
|
387
|
+
version = "0.4.29"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "maplit"
|
|
393
|
+
version = "1.0.2"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "matrixmultiply"
|
|
399
|
+
version = "0.3.10"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"autocfg",
|
|
404
|
+
"rawpointer",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "memchr"
|
|
409
|
+
version = "2.8.0"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "memoffset"
|
|
415
|
+
version = "0.9.1"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"autocfg",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "ndarray"
|
|
424
|
+
version = "0.16.1"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"matrixmultiply",
|
|
429
|
+
"num-complex",
|
|
430
|
+
"num-integer",
|
|
431
|
+
"num-traits",
|
|
432
|
+
"portable-atomic",
|
|
433
|
+
"portable-atomic-util",
|
|
434
|
+
"rawpointer",
|
|
435
|
+
"rayon",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "ndarray"
|
|
440
|
+
version = "0.17.2"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"matrixmultiply",
|
|
445
|
+
"num-complex",
|
|
446
|
+
"num-integer",
|
|
447
|
+
"num-traits",
|
|
448
|
+
"portable-atomic",
|
|
449
|
+
"portable-atomic-util",
|
|
450
|
+
"rawpointer",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "num-bigint"
|
|
455
|
+
version = "0.4.6"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"num-integer",
|
|
460
|
+
"num-traits",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "num-complex"
|
|
465
|
+
version = "0.4.6"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"num-traits",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "num-integer"
|
|
474
|
+
version = "0.1.46"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"num-traits",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "num-traits"
|
|
483
|
+
version = "0.2.19"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"autocfg",
|
|
488
|
+
"libm",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "numpy"
|
|
493
|
+
version = "0.27.1"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "7aac2e6a6e4468ffa092ad43c39b81c79196c2bb773b8db4085f695efe3bba17"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"libc",
|
|
498
|
+
"ndarray 0.17.2",
|
|
499
|
+
"num-complex",
|
|
500
|
+
"num-integer",
|
|
501
|
+
"num-traits",
|
|
502
|
+
"pyo3",
|
|
503
|
+
"pyo3-build-config",
|
|
504
|
+
"rustc-hash 2.1.2",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "once_cell"
|
|
509
|
+
version = "1.21.4"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "ordered-float"
|
|
515
|
+
version = "5.3.0"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"num-traits",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "phf"
|
|
524
|
+
version = "0.11.3"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"phf_shared",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "phf_codegen"
|
|
533
|
+
version = "0.11.3"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"phf_generator",
|
|
538
|
+
"phf_shared",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "phf_generator"
|
|
543
|
+
version = "0.11.3"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"phf_shared",
|
|
548
|
+
"rand 0.8.6",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "phf_shared"
|
|
553
|
+
version = "0.11.3"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"siphasher",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "pin-project-lite"
|
|
562
|
+
version = "0.2.17"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "portable-atomic"
|
|
568
|
+
version = "1.13.1"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "portable-atomic-util"
|
|
574
|
+
version = "0.2.7"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"portable-atomic",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "ppv-lite86"
|
|
583
|
+
version = "0.2.21"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"zerocopy",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "proc-macro2"
|
|
592
|
+
version = "1.0.106"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"unicode-ident",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "proptest"
|
|
601
|
+
version = "1.11.0"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"bitflags",
|
|
606
|
+
"num-traits",
|
|
607
|
+
"rand 0.9.4",
|
|
608
|
+
"rand_chacha 0.9.0",
|
|
609
|
+
"rand_xorshift",
|
|
610
|
+
"regex-syntax",
|
|
611
|
+
"unarray",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "pyo3"
|
|
616
|
+
version = "0.27.2"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"indoc",
|
|
621
|
+
"libc",
|
|
622
|
+
"memoffset",
|
|
623
|
+
"once_cell",
|
|
624
|
+
"portable-atomic",
|
|
625
|
+
"pyo3-build-config",
|
|
626
|
+
"pyo3-ffi",
|
|
627
|
+
"pyo3-macros",
|
|
628
|
+
"unindent",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "pyo3-build-config"
|
|
633
|
+
version = "0.27.2"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"target-lexicon",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "pyo3-ffi"
|
|
642
|
+
version = "0.27.2"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"libc",
|
|
647
|
+
"pyo3-build-config",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "pyo3-macros"
|
|
652
|
+
version = "0.27.2"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"proc-macro2",
|
|
657
|
+
"pyo3-macros-backend",
|
|
658
|
+
"quote",
|
|
659
|
+
"syn",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "pyo3-macros-backend"
|
|
664
|
+
version = "0.27.2"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"heck",
|
|
669
|
+
"proc-macro2",
|
|
670
|
+
"pyo3-build-config",
|
|
671
|
+
"quote",
|
|
672
|
+
"syn",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "pyo3-stub-gen"
|
|
677
|
+
version = "0.16.2"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "50df8acb60b50a06188d55ae6c2736d38cc4d353588ccfb764caf50baad48429"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"anyhow",
|
|
682
|
+
"chrono",
|
|
683
|
+
"either",
|
|
684
|
+
"indexmap",
|
|
685
|
+
"inventory",
|
|
686
|
+
"itertools 0.14.0",
|
|
687
|
+
"log",
|
|
688
|
+
"maplit",
|
|
689
|
+
"num-complex",
|
|
690
|
+
"numpy",
|
|
691
|
+
"ordered-float",
|
|
692
|
+
"pyo3",
|
|
693
|
+
"pyo3-stub-gen-derive",
|
|
694
|
+
"serde",
|
|
695
|
+
"toml",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "pyo3-stub-gen-derive"
|
|
700
|
+
version = "0.16.2"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "9744c6258016e82d2042b67376c58169ea9f68609df01b2b42e00777481fc05f"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"heck",
|
|
705
|
+
"indexmap",
|
|
706
|
+
"proc-macro2",
|
|
707
|
+
"quote",
|
|
708
|
+
"rustpython-parser",
|
|
709
|
+
"syn",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "quote"
|
|
714
|
+
version = "1.0.45"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"proc-macro2",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "r-efi"
|
|
723
|
+
version = "5.3.0"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "rand"
|
|
729
|
+
version = "0.8.6"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"libc",
|
|
734
|
+
"rand_chacha 0.3.1",
|
|
735
|
+
"rand_core 0.6.4",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "rand"
|
|
740
|
+
version = "0.9.4"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"rand_chacha 0.9.0",
|
|
745
|
+
"rand_core 0.9.5",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "rand_chacha"
|
|
750
|
+
version = "0.3.1"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"ppv-lite86",
|
|
755
|
+
"rand_core 0.6.4",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "rand_chacha"
|
|
760
|
+
version = "0.9.0"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"ppv-lite86",
|
|
765
|
+
"rand_core 0.9.5",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "rand_core"
|
|
770
|
+
version = "0.6.4"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"getrandom 0.2.17",
|
|
775
|
+
]
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "rand_core"
|
|
779
|
+
version = "0.9.5"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"getrandom 0.3.4",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "rand_distr"
|
|
788
|
+
version = "0.5.1"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"num-traits",
|
|
793
|
+
"rand 0.9.4",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "rand_xorshift"
|
|
798
|
+
version = "0.4.0"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"rand_core 0.9.5",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "rawpointer"
|
|
807
|
+
version = "0.2.1"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "rayon"
|
|
813
|
+
version = "1.12.0"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"either",
|
|
818
|
+
"rayon-core",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "rayon-core"
|
|
823
|
+
version = "1.13.0"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"crossbeam-deque",
|
|
828
|
+
"crossbeam-utils",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "regex-syntax"
|
|
833
|
+
version = "0.8.10"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "rustc-hash"
|
|
839
|
+
version = "1.1.0"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "rustc-hash"
|
|
845
|
+
version = "2.1.2"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "rustpython-ast"
|
|
851
|
+
version = "0.4.0"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"is-macro",
|
|
856
|
+
"num-bigint",
|
|
857
|
+
"rustpython-parser-core",
|
|
858
|
+
"static_assertions",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "rustpython-parser"
|
|
863
|
+
version = "0.4.0"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"anyhow",
|
|
868
|
+
"is-macro",
|
|
869
|
+
"itertools 0.11.0",
|
|
870
|
+
"lalrpop-util",
|
|
871
|
+
"log",
|
|
872
|
+
"num-bigint",
|
|
873
|
+
"num-traits",
|
|
874
|
+
"phf",
|
|
875
|
+
"phf_codegen",
|
|
876
|
+
"rustc-hash 1.1.0",
|
|
877
|
+
"rustpython-ast",
|
|
878
|
+
"rustpython-parser-core",
|
|
879
|
+
"tiny-keccak",
|
|
880
|
+
"unic-emoji-char",
|
|
881
|
+
"unic-ucd-ident",
|
|
882
|
+
"unicode_names2",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "rustpython-parser-core"
|
|
887
|
+
version = "0.4.0"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
|
|
890
|
+
dependencies = [
|
|
891
|
+
"is-macro",
|
|
892
|
+
"memchr",
|
|
893
|
+
"rustpython-parser-vendored",
|
|
894
|
+
]
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "rustpython-parser-vendored"
|
|
898
|
+
version = "0.4.0"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"memchr",
|
|
903
|
+
"once_cell",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "rustversion"
|
|
908
|
+
version = "1.0.22"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "serde"
|
|
914
|
+
version = "1.0.228"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"serde_core",
|
|
919
|
+
"serde_derive",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "serde_core"
|
|
924
|
+
version = "1.0.228"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"serde_derive",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "serde_derive"
|
|
933
|
+
version = "1.0.228"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"proc-macro2",
|
|
938
|
+
"quote",
|
|
939
|
+
"syn",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "serde_spanned"
|
|
944
|
+
version = "1.1.1"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"serde_core",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "shlex"
|
|
953
|
+
version = "1.3.0"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "siphasher"
|
|
959
|
+
version = "1.0.3"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "slab"
|
|
965
|
+
version = "0.4.12"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "static_assertions"
|
|
971
|
+
version = "1.1.0"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "syn"
|
|
977
|
+
version = "2.0.117"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"proc-macro2",
|
|
982
|
+
"quote",
|
|
983
|
+
"unicode-ident",
|
|
984
|
+
]
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "target-lexicon"
|
|
988
|
+
version = "0.13.5"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "thiserror"
|
|
994
|
+
version = "2.0.18"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"thiserror-impl",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "thiserror-impl"
|
|
1003
|
+
version = "2.0.18"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"proc-macro2",
|
|
1008
|
+
"quote",
|
|
1009
|
+
"syn",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "tiny-keccak"
|
|
1014
|
+
version = "2.0.2"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"crunchy",
|
|
1019
|
+
]
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "toml"
|
|
1023
|
+
version = "0.9.12+spec-1.1.0"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
1026
|
+
dependencies = [
|
|
1027
|
+
"indexmap",
|
|
1028
|
+
"serde_core",
|
|
1029
|
+
"serde_spanned",
|
|
1030
|
+
"toml_datetime",
|
|
1031
|
+
"toml_parser",
|
|
1032
|
+
"toml_writer",
|
|
1033
|
+
"winnow 0.7.15",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "toml_datetime"
|
|
1038
|
+
version = "0.7.5+spec-1.1.0"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"serde_core",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "toml_parser"
|
|
1047
|
+
version = "1.1.2+spec-1.1.0"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"winnow 1.0.2",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "toml_writer"
|
|
1056
|
+
version = "1.1.1+spec-1.1.0"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "unarray"
|
|
1062
|
+
version = "0.1.4"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "unic-char-property"
|
|
1068
|
+
version = "0.9.0"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"unic-char-range",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "unic-char-range"
|
|
1077
|
+
version = "0.9.0"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "unic-common"
|
|
1083
|
+
version = "0.9.0"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "unic-emoji-char"
|
|
1089
|
+
version = "0.9.0"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"unic-char-property",
|
|
1094
|
+
"unic-char-range",
|
|
1095
|
+
"unic-ucd-version",
|
|
1096
|
+
]
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "unic-ucd-ident"
|
|
1100
|
+
version = "0.9.0"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
|
|
1103
|
+
dependencies = [
|
|
1104
|
+
"unic-char-property",
|
|
1105
|
+
"unic-char-range",
|
|
1106
|
+
"unic-ucd-version",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "unic-ucd-version"
|
|
1111
|
+
version = "0.9.0"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"unic-common",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "unicode-ident"
|
|
1120
|
+
version = "1.0.24"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "unicode-width"
|
|
1126
|
+
version = "0.2.2"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "unicode_names2"
|
|
1132
|
+
version = "1.3.0"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"phf",
|
|
1137
|
+
"unicode_names2_generator",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "unicode_names2_generator"
|
|
1142
|
+
version = "1.3.0"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"getopts",
|
|
1147
|
+
"log",
|
|
1148
|
+
"phf_codegen",
|
|
1149
|
+
"rand 0.8.6",
|
|
1150
|
+
]
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "unindent"
|
|
1154
|
+
version = "0.2.4"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "wasi"
|
|
1160
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "wasip2"
|
|
1166
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"wit-bindgen",
|
|
1171
|
+
]
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "wasm-bindgen"
|
|
1175
|
+
version = "0.2.120"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"cfg-if",
|
|
1180
|
+
"once_cell",
|
|
1181
|
+
"rustversion",
|
|
1182
|
+
"wasm-bindgen-macro",
|
|
1183
|
+
"wasm-bindgen-shared",
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "wasm-bindgen-macro"
|
|
1188
|
+
version = "0.2.120"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"quote",
|
|
1193
|
+
"wasm-bindgen-macro-support",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "wasm-bindgen-macro-support"
|
|
1198
|
+
version = "0.2.120"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"bumpalo",
|
|
1203
|
+
"proc-macro2",
|
|
1204
|
+
"quote",
|
|
1205
|
+
"syn",
|
|
1206
|
+
"wasm-bindgen-shared",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "wasm-bindgen-shared"
|
|
1211
|
+
version = "0.2.120"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"unicode-ident",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "windows-core"
|
|
1220
|
+
version = "0.62.2"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"windows-implement",
|
|
1225
|
+
"windows-interface",
|
|
1226
|
+
"windows-link",
|
|
1227
|
+
"windows-result",
|
|
1228
|
+
"windows-strings",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "windows-implement"
|
|
1233
|
+
version = "0.60.2"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1236
|
+
dependencies = [
|
|
1237
|
+
"proc-macro2",
|
|
1238
|
+
"quote",
|
|
1239
|
+
"syn",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "windows-interface"
|
|
1244
|
+
version = "0.59.3"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"proc-macro2",
|
|
1249
|
+
"quote",
|
|
1250
|
+
"syn",
|
|
1251
|
+
]
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "windows-link"
|
|
1255
|
+
version = "0.2.1"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "windows-result"
|
|
1261
|
+
version = "0.4.1"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"windows-link",
|
|
1266
|
+
]
|
|
1267
|
+
|
|
1268
|
+
[[package]]
|
|
1269
|
+
name = "windows-strings"
|
|
1270
|
+
version = "0.5.1"
|
|
1271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1273
|
+
dependencies = [
|
|
1274
|
+
"windows-link",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "winnow"
|
|
1279
|
+
version = "0.7.15"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "winnow"
|
|
1285
|
+
version = "1.0.2"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
|
|
1288
|
+
|
|
1289
|
+
[[package]]
|
|
1290
|
+
name = "wit-bindgen"
|
|
1291
|
+
version = "0.57.1"
|
|
1292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1293
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "zerocopy"
|
|
1297
|
+
version = "0.8.48"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1300
|
+
dependencies = [
|
|
1301
|
+
"zerocopy-derive",
|
|
1302
|
+
]
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "zerocopy-derive"
|
|
1306
|
+
version = "0.8.48"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"proc-macro2",
|
|
1311
|
+
"quote",
|
|
1312
|
+
"syn",
|
|
1313
|
+
]
|