traffic-thrust 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.
- traffic_thrust-0.0.1/Cargo.lock +2489 -0
- traffic_thrust-0.0.1/Cargo.toml +20 -0
- traffic_thrust-0.0.1/PKG-INFO +31 -0
- traffic_thrust-0.0.1/crates/trafficrs/Cargo.toml +11 -0
- traffic_thrust-0.0.1/crates/trafficrs/readme.md +0 -0
- traffic_thrust-0.0.1/crates/trafficrs/src/intervals.rs +445 -0
- traffic_thrust-0.0.1/crates/trafficrs/src/kalman.rs +154 -0
- traffic_thrust-0.0.1/crates/trafficrs/src/lib.rs +2 -0
- traffic_thrust-0.0.1/pyproject.toml +59 -0
- traffic_thrust-0.0.1/python/Cargo.toml +31 -0
- traffic_thrust-0.0.1/python/poetry.lock +342 -0
- traffic_thrust-0.0.1/python/readme.md +10 -0
- traffic_thrust-0.0.1/python/src/lib.rs +280 -0
- traffic_thrust-0.0.1/python/tests/test_intervals.py +185 -0
- traffic_thrust-0.0.1/python/thrust/__init__.py +0 -0
- traffic_thrust-0.0.1/python/thrust/core.pyi +58 -0
- traffic_thrust-0.0.1/python/thrust/intervals.py +407 -0
- traffic_thrust-0.0.1/python/thrust/kalman.py +15 -0
- traffic_thrust-0.0.1/python/thrust/py.typed +0 -0
- traffic_thrust-0.0.1/python/thrust/time.py +56 -0
- traffic_thrust-0.0.1/python/try_kalman.py +62 -0
- traffic_thrust-0.0.1/thrust/__init__.py +0 -0
- traffic_thrust-0.0.1/thrust/core.pyi +58 -0
- traffic_thrust-0.0.1/thrust/intervals.py +407 -0
- traffic_thrust-0.0.1/thrust/kalman.py +15 -0
- traffic_thrust-0.0.1/thrust/py.typed +0 -0
- traffic_thrust-0.0.1/thrust/time.py +56 -0
|
@@ -0,0 +1,2489 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler"
|
|
7
|
+
version = "1.0.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.11"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"getrandom",
|
|
19
|
+
"once_cell",
|
|
20
|
+
"version_check",
|
|
21
|
+
"zerocopy",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[[package]]
|
|
25
|
+
name = "aho-corasick"
|
|
26
|
+
version = "1.1.3"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
29
|
+
dependencies = [
|
|
30
|
+
"memchr",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "allocator-api2"
|
|
35
|
+
version = "0.2.18"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "android-tzdata"
|
|
41
|
+
version = "0.1.1"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "android_system_properties"
|
|
47
|
+
version = "0.1.5"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
50
|
+
dependencies = [
|
|
51
|
+
"libc",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "anyhow"
|
|
56
|
+
version = "1.0.86"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "approx"
|
|
62
|
+
version = "0.4.0"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "3f2a05fd1bd10b2527e20a2cd32d8873d115b8b39fe219ee25f42a8aca6ba278"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"num-traits",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "argminmax"
|
|
71
|
+
version = "0.6.2"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "52424b59d69d69d5056d508b260553afd91c57e21849579cd1f50ee8b8b88eaa"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"num-traits",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "array-init-cursor"
|
|
80
|
+
version = "0.2.0"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "atoi"
|
|
86
|
+
version = "2.0.0"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"num-traits",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "atoi_simd"
|
|
95
|
+
version = "0.15.6"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "autocfg"
|
|
101
|
+
version = "1.1.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "base64"
|
|
107
|
+
version = "0.21.7"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "base64"
|
|
113
|
+
version = "0.22.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "bitflags"
|
|
119
|
+
version = "1.3.2"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "bitflags"
|
|
125
|
+
version = "2.6.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "bumpalo"
|
|
131
|
+
version = "3.14.0"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "bytemuck"
|
|
137
|
+
version = "1.16.3"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"bytemuck_derive",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "bytemuck_derive"
|
|
146
|
+
version = "1.7.0"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b"
|
|
149
|
+
dependencies = [
|
|
150
|
+
"proc-macro2",
|
|
151
|
+
"quote",
|
|
152
|
+
"syn 2.0.72",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "byteorder"
|
|
157
|
+
version = "1.5.0"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "bytes"
|
|
163
|
+
version = "1.7.1"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "cauchy"
|
|
169
|
+
version = "0.4.0"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "9ff11ddd2af3b5e80dd0297fee6e56ac038d9bdc549573cdb51bd6d2efe7f05e"
|
|
172
|
+
dependencies = [
|
|
173
|
+
"num-complex",
|
|
174
|
+
"num-traits",
|
|
175
|
+
"rand",
|
|
176
|
+
"serde",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "cblas-sys"
|
|
181
|
+
version = "0.1.4"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "b6feecd82cce51b0204cf063f0041d69f24ce83f680d87514b004248e7b0fa65"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"libc",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "cc"
|
|
190
|
+
version = "1.0.83"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"jobserver",
|
|
195
|
+
"libc",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "cfg-if"
|
|
200
|
+
version = "1.0.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "chrono"
|
|
206
|
+
version = "0.4.38"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"android-tzdata",
|
|
211
|
+
"iana-time-zone",
|
|
212
|
+
"js-sys",
|
|
213
|
+
"num-traits",
|
|
214
|
+
"wasm-bindgen",
|
|
215
|
+
"windows-targets 0.52.0",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "chrono-tz"
|
|
220
|
+
version = "0.8.6"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "d59ae0466b83e838b81a54256c39d5d7c20b9d7daa10510a242d9b75abd5936e"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"chrono",
|
|
225
|
+
"chrono-tz-build",
|
|
226
|
+
"phf",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "chrono-tz-build"
|
|
231
|
+
version = "0.2.1"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"parse-zoneinfo",
|
|
236
|
+
"phf",
|
|
237
|
+
"phf_codegen",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "comfy-table"
|
|
242
|
+
version = "7.1.1"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"crossterm",
|
|
247
|
+
"strum",
|
|
248
|
+
"strum_macros",
|
|
249
|
+
"unicode-width",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "core-foundation"
|
|
254
|
+
version = "0.9.4"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"core-foundation-sys",
|
|
259
|
+
"libc",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "core-foundation-sys"
|
|
264
|
+
version = "0.8.6"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "crc32fast"
|
|
270
|
+
version = "1.4.2"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"cfg-if",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "crossbeam-channel"
|
|
279
|
+
version = "0.5.13"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"crossbeam-utils",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "crossbeam-deque"
|
|
288
|
+
version = "0.8.5"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"crossbeam-epoch",
|
|
293
|
+
"crossbeam-utils",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "crossbeam-epoch"
|
|
298
|
+
version = "0.9.18"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"crossbeam-utils",
|
|
303
|
+
]
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "crossbeam-queue"
|
|
307
|
+
version = "0.3.11"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
|
|
310
|
+
dependencies = [
|
|
311
|
+
"crossbeam-utils",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "crossbeam-utils"
|
|
316
|
+
version = "0.8.20"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "crossterm"
|
|
322
|
+
version = "0.27.0"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"bitflags 2.6.0",
|
|
327
|
+
"crossterm_winapi",
|
|
328
|
+
"libc",
|
|
329
|
+
"parking_lot",
|
|
330
|
+
"winapi",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "crossterm_winapi"
|
|
335
|
+
version = "0.9.1"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"winapi",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "dirs"
|
|
344
|
+
version = "3.0.2"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"dirs-sys",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "dirs-sys"
|
|
353
|
+
version = "0.3.7"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"libc",
|
|
358
|
+
"redox_users",
|
|
359
|
+
"winapi",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "dyn-clone"
|
|
364
|
+
version = "1.0.17"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "either"
|
|
370
|
+
version = "1.13.0"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "enum_dispatch"
|
|
376
|
+
version = "0.3.13"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"once_cell",
|
|
381
|
+
"proc-macro2",
|
|
382
|
+
"quote",
|
|
383
|
+
"syn 2.0.72",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "equivalent"
|
|
388
|
+
version = "1.0.1"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "errno"
|
|
394
|
+
version = "0.3.9"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"libc",
|
|
399
|
+
"windows-sys",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "ethnum"
|
|
404
|
+
version = "1.5.0"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "fallible-streaming-iterator"
|
|
410
|
+
version = "0.1.9"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "fast-float"
|
|
416
|
+
version = "0.2.0"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "fastrand"
|
|
422
|
+
version = "2.1.0"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "filetime"
|
|
428
|
+
version = "0.2.23"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"cfg-if",
|
|
433
|
+
"libc",
|
|
434
|
+
"redox_syscall",
|
|
435
|
+
"windows-sys",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "flate2"
|
|
440
|
+
version = "1.0.31"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"crc32fast",
|
|
445
|
+
"miniz_oxide",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "foreign-types"
|
|
450
|
+
version = "0.3.2"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"foreign-types-shared",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "foreign-types-shared"
|
|
459
|
+
version = "0.1.1"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "foreign_vec"
|
|
465
|
+
version = "0.1.0"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "form_urlencoded"
|
|
471
|
+
version = "1.2.1"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"percent-encoding",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "getrandom"
|
|
480
|
+
version = "0.2.15"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"cfg-if",
|
|
485
|
+
"js-sys",
|
|
486
|
+
"libc",
|
|
487
|
+
"wasi",
|
|
488
|
+
"wasm-bindgen",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "glob"
|
|
493
|
+
version = "0.3.1"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "hashbrown"
|
|
499
|
+
version = "0.14.5"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"ahash",
|
|
504
|
+
"allocator-api2",
|
|
505
|
+
"rayon",
|
|
506
|
+
"serde",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "heck"
|
|
511
|
+
version = "0.4.1"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "heck"
|
|
517
|
+
version = "0.5.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "hex"
|
|
523
|
+
version = "0.4.3"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "home"
|
|
529
|
+
version = "0.5.9"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"windows-sys",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "iana-time-zone"
|
|
538
|
+
version = "0.1.59"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
|
|
541
|
+
dependencies = [
|
|
542
|
+
"android_system_properties",
|
|
543
|
+
"core-foundation-sys",
|
|
544
|
+
"iana-time-zone-haiku",
|
|
545
|
+
"js-sys",
|
|
546
|
+
"wasm-bindgen",
|
|
547
|
+
"windows-core",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "iana-time-zone-haiku"
|
|
552
|
+
version = "0.1.2"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"cc",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "idna"
|
|
561
|
+
version = "0.5.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"unicode-bidi",
|
|
566
|
+
"unicode-normalization",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "indexmap"
|
|
571
|
+
version = "2.3.0"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"equivalent",
|
|
576
|
+
"hashbrown",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "indoc"
|
|
581
|
+
version = "2.0.5"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "itoa"
|
|
587
|
+
version = "1.0.11"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "itoap"
|
|
593
|
+
version = "1.0.1"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "jobserver"
|
|
599
|
+
version = "0.1.32"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"libc",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "js-sys"
|
|
608
|
+
version = "0.3.67"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"wasm-bindgen",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "katexit"
|
|
617
|
+
version = "0.1.4"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "eb1304c448ce2c207c2298a34bc476ce7ae47f63c23fa2b498583b26be9bc88c"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"proc-macro2",
|
|
622
|
+
"quote",
|
|
623
|
+
"syn 1.0.109",
|
|
624
|
+
]
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "lapack-sys"
|
|
628
|
+
version = "0.14.0"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "447f56c85fb410a7a3d36701b2153c1018b1d2b908c5fbaf01c1b04fac33bcbe"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"libc",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "lax"
|
|
637
|
+
version = "0.16.0"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "1f96a229d9557112e574164f8024ce703625ad9f88a90964c1780809358e53da"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"cauchy",
|
|
642
|
+
"katexit",
|
|
643
|
+
"lapack-sys",
|
|
644
|
+
"num-traits",
|
|
645
|
+
"openblas-src",
|
|
646
|
+
"thiserror",
|
|
647
|
+
]
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "libc"
|
|
651
|
+
version = "0.2.155"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "libm"
|
|
657
|
+
version = "0.2.8"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "libredox"
|
|
663
|
+
version = "0.1.3"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"bitflags 2.6.0",
|
|
668
|
+
"libc",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "linux-raw-sys"
|
|
673
|
+
version = "0.4.14"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "lock_api"
|
|
679
|
+
version = "0.4.11"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"autocfg",
|
|
684
|
+
"scopeguard",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "log"
|
|
689
|
+
version = "0.4.20"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "lz4"
|
|
695
|
+
version = "1.26.0"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "958b4caa893816eea05507c20cfe47574a43d9a697138a7872990bba8a0ece68"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"libc",
|
|
700
|
+
"lz4-sys",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "lz4-sys"
|
|
705
|
+
version = "1.10.0"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "109de74d5d2353660401699a4174a4ff23fcc649caf553df71933c7fb45ad868"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"cc",
|
|
710
|
+
"libc",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "matrixmultiply"
|
|
715
|
+
version = "0.3.8"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"autocfg",
|
|
720
|
+
"rawpointer",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "memchr"
|
|
725
|
+
version = "2.7.4"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "memmap2"
|
|
731
|
+
version = "0.7.1"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"libc",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "memoffset"
|
|
740
|
+
version = "0.9.0"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"autocfg",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "miniz_oxide"
|
|
749
|
+
version = "0.7.4"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"adler",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "multiversion"
|
|
758
|
+
version = "0.7.4"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"multiversion-macros",
|
|
763
|
+
"target-features",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "multiversion-macros"
|
|
768
|
+
version = "0.7.4"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"proc-macro2",
|
|
773
|
+
"quote",
|
|
774
|
+
"syn 1.0.109",
|
|
775
|
+
"target-features",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "native-tls"
|
|
780
|
+
version = "0.2.12"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"libc",
|
|
785
|
+
"log",
|
|
786
|
+
"openssl",
|
|
787
|
+
"openssl-probe",
|
|
788
|
+
"openssl-sys",
|
|
789
|
+
"schannel",
|
|
790
|
+
"security-framework",
|
|
791
|
+
"security-framework-sys",
|
|
792
|
+
"tempfile",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "ndarray"
|
|
797
|
+
version = "0.15.6"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"approx",
|
|
802
|
+
"cblas-sys",
|
|
803
|
+
"libc",
|
|
804
|
+
"matrixmultiply",
|
|
805
|
+
"num-complex",
|
|
806
|
+
"num-integer",
|
|
807
|
+
"num-traits",
|
|
808
|
+
"rawpointer",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "ndarray-linalg"
|
|
813
|
+
version = "0.16.0"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "0b0e8dda0c941b64a85c5deb2b3e0144aca87aced64678adfc23eacea6d2cc42"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"cauchy",
|
|
818
|
+
"katexit",
|
|
819
|
+
"lax",
|
|
820
|
+
"ndarray",
|
|
821
|
+
"num-complex",
|
|
822
|
+
"num-traits",
|
|
823
|
+
"rand",
|
|
824
|
+
"thiserror",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "now"
|
|
829
|
+
version = "0.1.3"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"chrono",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "ntapi"
|
|
838
|
+
version = "0.4.1"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"winapi",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "num-complex"
|
|
847
|
+
version = "0.4.4"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"num-traits",
|
|
852
|
+
"rand",
|
|
853
|
+
"serde",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "num-integer"
|
|
858
|
+
version = "0.1.45"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"autocfg",
|
|
863
|
+
"num-traits",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "num-traits"
|
|
868
|
+
version = "0.2.17"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"autocfg",
|
|
873
|
+
"libm",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "numpy"
|
|
878
|
+
version = "0.21.0"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"libc",
|
|
883
|
+
"ndarray",
|
|
884
|
+
"num-complex",
|
|
885
|
+
"num-integer",
|
|
886
|
+
"num-traits",
|
|
887
|
+
"pyo3",
|
|
888
|
+
"rustc-hash",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "once_cell"
|
|
893
|
+
version = "1.19.0"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "openblas-build"
|
|
899
|
+
version = "0.10.9"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "d4b6b44095098cafc71915cfac3427135b6dd2ea85820a7d94a5871cb0d1e169"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"anyhow",
|
|
904
|
+
"flate2",
|
|
905
|
+
"native-tls",
|
|
906
|
+
"tar",
|
|
907
|
+
"thiserror",
|
|
908
|
+
"ureq",
|
|
909
|
+
"walkdir",
|
|
910
|
+
]
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "openblas-src"
|
|
914
|
+
version = "0.10.9"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "aa4958649f766a1013db4254a852cdf2836764869b6654fa117316905f537363"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"dirs",
|
|
919
|
+
"openblas-build",
|
|
920
|
+
"vcpkg",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "openssl"
|
|
925
|
+
version = "0.10.66"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"bitflags 2.6.0",
|
|
930
|
+
"cfg-if",
|
|
931
|
+
"foreign-types",
|
|
932
|
+
"libc",
|
|
933
|
+
"once_cell",
|
|
934
|
+
"openssl-macros",
|
|
935
|
+
"openssl-sys",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "openssl-macros"
|
|
940
|
+
version = "0.1.1"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"proc-macro2",
|
|
945
|
+
"quote",
|
|
946
|
+
"syn 2.0.72",
|
|
947
|
+
]
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "openssl-probe"
|
|
951
|
+
version = "0.1.5"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "openssl-sys"
|
|
957
|
+
version = "0.9.103"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"cc",
|
|
962
|
+
"libc",
|
|
963
|
+
"pkg-config",
|
|
964
|
+
"vcpkg",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "parking_lot"
|
|
969
|
+
version = "0.12.1"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
972
|
+
dependencies = [
|
|
973
|
+
"lock_api",
|
|
974
|
+
"parking_lot_core",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "parking_lot_core"
|
|
979
|
+
version = "0.9.9"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"cfg-if",
|
|
984
|
+
"libc",
|
|
985
|
+
"redox_syscall",
|
|
986
|
+
"smallvec",
|
|
987
|
+
"windows-targets 0.48.5",
|
|
988
|
+
]
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "parquet-format-safe"
|
|
992
|
+
version = "0.2.4"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "parse-zoneinfo"
|
|
998
|
+
version = "0.3.1"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"regex",
|
|
1003
|
+
]
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "percent-encoding"
|
|
1007
|
+
version = "2.3.1"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "phf"
|
|
1013
|
+
version = "0.11.2"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
1016
|
+
dependencies = [
|
|
1017
|
+
"phf_shared",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "phf_codegen"
|
|
1022
|
+
version = "0.11.2"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"phf_generator",
|
|
1027
|
+
"phf_shared",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "phf_generator"
|
|
1032
|
+
version = "0.11.2"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"phf_shared",
|
|
1037
|
+
"rand",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "phf_shared"
|
|
1042
|
+
version = "0.11.2"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"siphasher",
|
|
1047
|
+
]
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "pkg-config"
|
|
1051
|
+
version = "0.3.30"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "planus"
|
|
1057
|
+
version = "0.3.1"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"array-init-cursor",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "polars"
|
|
1066
|
+
version = "0.41.3"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "8e3351ea4570e54cd556e6755b78fe7a2c85368d820c0307cca73c96e796a7ba"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"getrandom",
|
|
1071
|
+
"polars-arrow",
|
|
1072
|
+
"polars-core",
|
|
1073
|
+
"polars-error",
|
|
1074
|
+
"polars-io",
|
|
1075
|
+
"polars-lazy",
|
|
1076
|
+
"polars-ops",
|
|
1077
|
+
"polars-parquet",
|
|
1078
|
+
"polars-sql",
|
|
1079
|
+
"polars-time",
|
|
1080
|
+
"polars-utils",
|
|
1081
|
+
"version_check",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "polars-arrow"
|
|
1086
|
+
version = "0.41.3"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "ba65fc4bcabbd64fca01fd30e759f8b2043f0963c57619e331d4b534576c0b47"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"ahash",
|
|
1091
|
+
"atoi",
|
|
1092
|
+
"atoi_simd",
|
|
1093
|
+
"bytemuck",
|
|
1094
|
+
"chrono",
|
|
1095
|
+
"chrono-tz",
|
|
1096
|
+
"dyn-clone",
|
|
1097
|
+
"either",
|
|
1098
|
+
"ethnum",
|
|
1099
|
+
"fast-float",
|
|
1100
|
+
"foreign_vec",
|
|
1101
|
+
"getrandom",
|
|
1102
|
+
"hashbrown",
|
|
1103
|
+
"itoa",
|
|
1104
|
+
"itoap",
|
|
1105
|
+
"lz4",
|
|
1106
|
+
"multiversion",
|
|
1107
|
+
"num-traits",
|
|
1108
|
+
"polars-arrow-format",
|
|
1109
|
+
"polars-error",
|
|
1110
|
+
"polars-utils",
|
|
1111
|
+
"ryu",
|
|
1112
|
+
"simdutf8",
|
|
1113
|
+
"streaming-iterator",
|
|
1114
|
+
"strength_reduce",
|
|
1115
|
+
"version_check",
|
|
1116
|
+
"zstd",
|
|
1117
|
+
]
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "polars-arrow-format"
|
|
1121
|
+
version = "0.1.0"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"planus",
|
|
1126
|
+
"serde",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "polars-compute"
|
|
1131
|
+
version = "0.41.3"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "9f099516af30ac9ae4b4480f4ad02aa017d624f2f37b7a16ad4e9ba52f7e5269"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"bytemuck",
|
|
1136
|
+
"either",
|
|
1137
|
+
"num-traits",
|
|
1138
|
+
"polars-arrow",
|
|
1139
|
+
"polars-error",
|
|
1140
|
+
"polars-utils",
|
|
1141
|
+
"strength_reduce",
|
|
1142
|
+
"version_check",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "polars-core"
|
|
1147
|
+
version = "0.41.3"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "b2439484be228b8c302328e2f953e64cfd93930636e5c7ceed90339ece7fef6c"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"ahash",
|
|
1152
|
+
"bitflags 2.6.0",
|
|
1153
|
+
"bytemuck",
|
|
1154
|
+
"chrono",
|
|
1155
|
+
"chrono-tz",
|
|
1156
|
+
"comfy-table",
|
|
1157
|
+
"either",
|
|
1158
|
+
"hashbrown",
|
|
1159
|
+
"indexmap",
|
|
1160
|
+
"num-traits",
|
|
1161
|
+
"once_cell",
|
|
1162
|
+
"polars-arrow",
|
|
1163
|
+
"polars-compute",
|
|
1164
|
+
"polars-error",
|
|
1165
|
+
"polars-row",
|
|
1166
|
+
"polars-utils",
|
|
1167
|
+
"rand",
|
|
1168
|
+
"rand_distr",
|
|
1169
|
+
"rayon",
|
|
1170
|
+
"regex",
|
|
1171
|
+
"smartstring",
|
|
1172
|
+
"thiserror",
|
|
1173
|
+
"version_check",
|
|
1174
|
+
"xxhash-rust",
|
|
1175
|
+
]
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "polars-error"
|
|
1179
|
+
version = "0.41.3"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "0c9b06dfbe79cabe50a7f0a90396864b5ee2c0e0f8d6a9353b2343c29c56e937"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"polars-arrow-format",
|
|
1184
|
+
"regex",
|
|
1185
|
+
"simdutf8",
|
|
1186
|
+
"thiserror",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "polars-expr"
|
|
1191
|
+
version = "0.41.3"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "d9c630385a56a867c410a20f30772d088f90ec3d004864562b84250b35268f97"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"ahash",
|
|
1196
|
+
"bitflags 2.6.0",
|
|
1197
|
+
"once_cell",
|
|
1198
|
+
"polars-arrow",
|
|
1199
|
+
"polars-core",
|
|
1200
|
+
"polars-io",
|
|
1201
|
+
"polars-ops",
|
|
1202
|
+
"polars-plan",
|
|
1203
|
+
"polars-time",
|
|
1204
|
+
"polars-utils",
|
|
1205
|
+
"rayon",
|
|
1206
|
+
"smartstring",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "polars-io"
|
|
1211
|
+
version = "0.41.3"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "9d7363cd14e4696a28b334a56bd11013ff49cc96064818ab3f91a126e453462d"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"ahash",
|
|
1216
|
+
"atoi_simd",
|
|
1217
|
+
"bytes",
|
|
1218
|
+
"chrono",
|
|
1219
|
+
"fast-float",
|
|
1220
|
+
"home",
|
|
1221
|
+
"itoa",
|
|
1222
|
+
"memchr",
|
|
1223
|
+
"memmap2",
|
|
1224
|
+
"num-traits",
|
|
1225
|
+
"once_cell",
|
|
1226
|
+
"percent-encoding",
|
|
1227
|
+
"polars-arrow",
|
|
1228
|
+
"polars-core",
|
|
1229
|
+
"polars-error",
|
|
1230
|
+
"polars-time",
|
|
1231
|
+
"polars-utils",
|
|
1232
|
+
"rayon",
|
|
1233
|
+
"regex",
|
|
1234
|
+
"ryu",
|
|
1235
|
+
"simdutf8",
|
|
1236
|
+
"smartstring",
|
|
1237
|
+
]
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "polars-lazy"
|
|
1241
|
+
version = "0.41.3"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "03877e74e42b5340ae52ded705f6d5d14563d90554c9177b01b91ed2412a56ed"
|
|
1244
|
+
dependencies = [
|
|
1245
|
+
"ahash",
|
|
1246
|
+
"bitflags 2.6.0",
|
|
1247
|
+
"glob",
|
|
1248
|
+
"memchr",
|
|
1249
|
+
"once_cell",
|
|
1250
|
+
"polars-arrow",
|
|
1251
|
+
"polars-core",
|
|
1252
|
+
"polars-expr",
|
|
1253
|
+
"polars-io",
|
|
1254
|
+
"polars-mem-engine",
|
|
1255
|
+
"polars-ops",
|
|
1256
|
+
"polars-pipe",
|
|
1257
|
+
"polars-plan",
|
|
1258
|
+
"polars-time",
|
|
1259
|
+
"polars-utils",
|
|
1260
|
+
"rayon",
|
|
1261
|
+
"smartstring",
|
|
1262
|
+
"version_check",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "polars-mem-engine"
|
|
1267
|
+
version = "0.41.3"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "dea9e17771af750c94bf959885e4b3f5b14149576c62ef3ec1c9ef5827b2a30f"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"polars-arrow",
|
|
1272
|
+
"polars-core",
|
|
1273
|
+
"polars-error",
|
|
1274
|
+
"polars-expr",
|
|
1275
|
+
"polars-io",
|
|
1276
|
+
"polars-ops",
|
|
1277
|
+
"polars-plan",
|
|
1278
|
+
"polars-time",
|
|
1279
|
+
"polars-utils",
|
|
1280
|
+
"rayon",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "polars-ops"
|
|
1285
|
+
version = "0.41.3"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "6066552eb577d43b307027fb38096910b643ffb2c89a21628c7e41caf57848d0"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"ahash",
|
|
1290
|
+
"argminmax",
|
|
1291
|
+
"base64 0.22.1",
|
|
1292
|
+
"bytemuck",
|
|
1293
|
+
"chrono",
|
|
1294
|
+
"chrono-tz",
|
|
1295
|
+
"either",
|
|
1296
|
+
"hashbrown",
|
|
1297
|
+
"hex",
|
|
1298
|
+
"indexmap",
|
|
1299
|
+
"memchr",
|
|
1300
|
+
"num-traits",
|
|
1301
|
+
"polars-arrow",
|
|
1302
|
+
"polars-compute",
|
|
1303
|
+
"polars-core",
|
|
1304
|
+
"polars-error",
|
|
1305
|
+
"polars-utils",
|
|
1306
|
+
"rayon",
|
|
1307
|
+
"regex",
|
|
1308
|
+
"smartstring",
|
|
1309
|
+
"unicode-reverse",
|
|
1310
|
+
"version_check",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "polars-parquet"
|
|
1315
|
+
version = "0.41.3"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "2b35b2592a2e7ef7ce9942dc2120dc4576142626c0e661668e4c6b805042e461"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"ahash",
|
|
1320
|
+
"base64 0.22.1",
|
|
1321
|
+
"ethnum",
|
|
1322
|
+
"num-traits",
|
|
1323
|
+
"parquet-format-safe",
|
|
1324
|
+
"polars-arrow",
|
|
1325
|
+
"polars-compute",
|
|
1326
|
+
"polars-error",
|
|
1327
|
+
"polars-utils",
|
|
1328
|
+
"simdutf8",
|
|
1329
|
+
"streaming-decompression",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "polars-pipe"
|
|
1334
|
+
version = "0.41.3"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "021bce7768c330687d735340395a77453aa18dd70d57c184cbb302311e87c1b9"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"crossbeam-channel",
|
|
1339
|
+
"crossbeam-queue",
|
|
1340
|
+
"enum_dispatch",
|
|
1341
|
+
"hashbrown",
|
|
1342
|
+
"num-traits",
|
|
1343
|
+
"polars-arrow",
|
|
1344
|
+
"polars-compute",
|
|
1345
|
+
"polars-core",
|
|
1346
|
+
"polars-expr",
|
|
1347
|
+
"polars-io",
|
|
1348
|
+
"polars-ops",
|
|
1349
|
+
"polars-plan",
|
|
1350
|
+
"polars-row",
|
|
1351
|
+
"polars-utils",
|
|
1352
|
+
"rayon",
|
|
1353
|
+
"smartstring",
|
|
1354
|
+
"uuid",
|
|
1355
|
+
"version_check",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "polars-plan"
|
|
1360
|
+
version = "0.41.3"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "220d0d7c02d1c4375802b2813dbedcd1a184df39c43b74689e729ede8d5c2921"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"ahash",
|
|
1365
|
+
"bytemuck",
|
|
1366
|
+
"chrono-tz",
|
|
1367
|
+
"either",
|
|
1368
|
+
"hashbrown",
|
|
1369
|
+
"once_cell",
|
|
1370
|
+
"percent-encoding",
|
|
1371
|
+
"polars-arrow",
|
|
1372
|
+
"polars-core",
|
|
1373
|
+
"polars-io",
|
|
1374
|
+
"polars-ops",
|
|
1375
|
+
"polars-time",
|
|
1376
|
+
"polars-utils",
|
|
1377
|
+
"rayon",
|
|
1378
|
+
"recursive",
|
|
1379
|
+
"regex",
|
|
1380
|
+
"smartstring",
|
|
1381
|
+
"strum_macros",
|
|
1382
|
+
"version_check",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "polars-row"
|
|
1387
|
+
version = "0.41.3"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "c1d70d87a2882a64a43b431aea1329cb9a2c4100547c95c417cc426bb82408b3"
|
|
1390
|
+
dependencies = [
|
|
1391
|
+
"bytemuck",
|
|
1392
|
+
"polars-arrow",
|
|
1393
|
+
"polars-error",
|
|
1394
|
+
"polars-utils",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "polars-sql"
|
|
1399
|
+
version = "0.41.3"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "a6fc1c9b778862f09f4a347f768dfdd3d0ba9957499d306d83c7103e0fa8dc5b"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"hex",
|
|
1404
|
+
"once_cell",
|
|
1405
|
+
"polars-arrow",
|
|
1406
|
+
"polars-core",
|
|
1407
|
+
"polars-error",
|
|
1408
|
+
"polars-lazy",
|
|
1409
|
+
"polars-ops",
|
|
1410
|
+
"polars-plan",
|
|
1411
|
+
"polars-time",
|
|
1412
|
+
"rand",
|
|
1413
|
+
"serde",
|
|
1414
|
+
"serde_json",
|
|
1415
|
+
"sqlparser",
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "polars-time"
|
|
1420
|
+
version = "0.41.3"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "179f98313a15c0bfdbc8cc0f1d3076d08d567485b9952d46439f94fbc3085df5"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"atoi",
|
|
1425
|
+
"bytemuck",
|
|
1426
|
+
"chrono",
|
|
1427
|
+
"chrono-tz",
|
|
1428
|
+
"now",
|
|
1429
|
+
"once_cell",
|
|
1430
|
+
"polars-arrow",
|
|
1431
|
+
"polars-core",
|
|
1432
|
+
"polars-error",
|
|
1433
|
+
"polars-ops",
|
|
1434
|
+
"polars-utils",
|
|
1435
|
+
"regex",
|
|
1436
|
+
"smartstring",
|
|
1437
|
+
]
|
|
1438
|
+
|
|
1439
|
+
[[package]]
|
|
1440
|
+
name = "polars-utils"
|
|
1441
|
+
version = "0.41.3"
|
|
1442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
+
checksum = "53e6dd89fcccb1ec1a62f752c9a9f2d482a85e9255153f46efecc617b4996d50"
|
|
1444
|
+
dependencies = [
|
|
1445
|
+
"ahash",
|
|
1446
|
+
"bytemuck",
|
|
1447
|
+
"hashbrown",
|
|
1448
|
+
"indexmap",
|
|
1449
|
+
"num-traits",
|
|
1450
|
+
"once_cell",
|
|
1451
|
+
"polars-error",
|
|
1452
|
+
"raw-cpuid",
|
|
1453
|
+
"rayon",
|
|
1454
|
+
"smartstring",
|
|
1455
|
+
"stacker",
|
|
1456
|
+
"sysinfo",
|
|
1457
|
+
"version_check",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "portable-atomic"
|
|
1462
|
+
version = "1.7.0"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "ppv-lite86"
|
|
1468
|
+
version = "0.2.20"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
|
1471
|
+
dependencies = [
|
|
1472
|
+
"zerocopy",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "proc-macro2"
|
|
1477
|
+
version = "1.0.86"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"unicode-ident",
|
|
1482
|
+
]
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "psm"
|
|
1486
|
+
version = "0.1.21"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"cc",
|
|
1491
|
+
]
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "pyo3"
|
|
1495
|
+
version = "0.21.2"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
1498
|
+
dependencies = [
|
|
1499
|
+
"cfg-if",
|
|
1500
|
+
"indoc",
|
|
1501
|
+
"libc",
|
|
1502
|
+
"memoffset",
|
|
1503
|
+
"parking_lot",
|
|
1504
|
+
"portable-atomic",
|
|
1505
|
+
"pyo3-build-config",
|
|
1506
|
+
"pyo3-ffi",
|
|
1507
|
+
"pyo3-macros",
|
|
1508
|
+
"unindent",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "pyo3-build-config"
|
|
1513
|
+
version = "0.21.2"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
1516
|
+
dependencies = [
|
|
1517
|
+
"once_cell",
|
|
1518
|
+
"target-lexicon",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "pyo3-ffi"
|
|
1523
|
+
version = "0.21.2"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"libc",
|
|
1528
|
+
"pyo3-build-config",
|
|
1529
|
+
]
|
|
1530
|
+
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "pyo3-macros"
|
|
1533
|
+
version = "0.21.2"
|
|
1534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
1536
|
+
dependencies = [
|
|
1537
|
+
"proc-macro2",
|
|
1538
|
+
"pyo3-macros-backend",
|
|
1539
|
+
"quote",
|
|
1540
|
+
"syn 2.0.72",
|
|
1541
|
+
]
|
|
1542
|
+
|
|
1543
|
+
[[package]]
|
|
1544
|
+
name = "pyo3-macros-backend"
|
|
1545
|
+
version = "0.21.2"
|
|
1546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
1548
|
+
dependencies = [
|
|
1549
|
+
"heck 0.4.1",
|
|
1550
|
+
"proc-macro2",
|
|
1551
|
+
"pyo3-build-config",
|
|
1552
|
+
"quote",
|
|
1553
|
+
"syn 2.0.72",
|
|
1554
|
+
]
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "pyo3-polars"
|
|
1558
|
+
version = "0.15.0"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "910d4952410bded2d87e13d48ca8e59b7fe028b07d29deaffd4539b3d906e75f"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"polars",
|
|
1563
|
+
"polars-core",
|
|
1564
|
+
"pyo3",
|
|
1565
|
+
"thiserror",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "quote"
|
|
1570
|
+
version = "1.0.35"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
|
1573
|
+
dependencies = [
|
|
1574
|
+
"proc-macro2",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "rand"
|
|
1579
|
+
version = "0.8.5"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1582
|
+
dependencies = [
|
|
1583
|
+
"libc",
|
|
1584
|
+
"rand_chacha",
|
|
1585
|
+
"rand_core",
|
|
1586
|
+
]
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "rand_chacha"
|
|
1590
|
+
version = "0.3.1"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"ppv-lite86",
|
|
1595
|
+
"rand_core",
|
|
1596
|
+
]
|
|
1597
|
+
|
|
1598
|
+
[[package]]
|
|
1599
|
+
name = "rand_core"
|
|
1600
|
+
version = "0.6.4"
|
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1603
|
+
dependencies = [
|
|
1604
|
+
"getrandom",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "rand_distr"
|
|
1609
|
+
version = "0.4.3"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"num-traits",
|
|
1614
|
+
"rand",
|
|
1615
|
+
]
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "raw-cpuid"
|
|
1619
|
+
version = "11.1.0"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"bitflags 2.6.0",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "rawpointer"
|
|
1628
|
+
version = "0.2.1"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "rayon"
|
|
1634
|
+
version = "1.10.0"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
1637
|
+
dependencies = [
|
|
1638
|
+
"either",
|
|
1639
|
+
"rayon-core",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "rayon-core"
|
|
1644
|
+
version = "1.12.1"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"crossbeam-deque",
|
|
1649
|
+
"crossbeam-utils",
|
|
1650
|
+
]
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "recursive"
|
|
1654
|
+
version = "0.1.1"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
|
|
1657
|
+
dependencies = [
|
|
1658
|
+
"recursive-proc-macro-impl",
|
|
1659
|
+
"stacker",
|
|
1660
|
+
]
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "recursive-proc-macro-impl"
|
|
1664
|
+
version = "0.1.1"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"quote",
|
|
1669
|
+
"syn 2.0.72",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "redox_syscall"
|
|
1674
|
+
version = "0.4.1"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"bitflags 1.3.2",
|
|
1679
|
+
]
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "redox_users"
|
|
1683
|
+
version = "0.4.5"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
|
|
1686
|
+
dependencies = [
|
|
1687
|
+
"getrandom",
|
|
1688
|
+
"libredox",
|
|
1689
|
+
"thiserror",
|
|
1690
|
+
]
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "regex"
|
|
1694
|
+
version = "1.10.6"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"aho-corasick",
|
|
1699
|
+
"memchr",
|
|
1700
|
+
"regex-automata",
|
|
1701
|
+
"regex-syntax",
|
|
1702
|
+
]
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "regex-automata"
|
|
1706
|
+
version = "0.4.7"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"aho-corasick",
|
|
1711
|
+
"memchr",
|
|
1712
|
+
"regex-syntax",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "regex-syntax"
|
|
1717
|
+
version = "0.8.4"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "rustc-hash"
|
|
1723
|
+
version = "1.1.0"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "rustix"
|
|
1729
|
+
version = "0.38.34"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"bitflags 2.6.0",
|
|
1734
|
+
"errno",
|
|
1735
|
+
"libc",
|
|
1736
|
+
"linux-raw-sys",
|
|
1737
|
+
"windows-sys",
|
|
1738
|
+
]
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "rustls-native-certs"
|
|
1742
|
+
version = "0.7.0"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792"
|
|
1745
|
+
dependencies = [
|
|
1746
|
+
"openssl-probe",
|
|
1747
|
+
"rustls-pemfile",
|
|
1748
|
+
"rustls-pki-types",
|
|
1749
|
+
"schannel",
|
|
1750
|
+
"security-framework",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "rustls-pemfile"
|
|
1755
|
+
version = "2.1.3"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"base64 0.22.1",
|
|
1760
|
+
"rustls-pki-types",
|
|
1761
|
+
]
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "rustls-pki-types"
|
|
1765
|
+
version = "1.7.0"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "rustversion"
|
|
1771
|
+
version = "1.0.17"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "ryu"
|
|
1777
|
+
version = "1.0.18"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "same-file"
|
|
1783
|
+
version = "1.0.6"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"winapi-util",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "schannel"
|
|
1792
|
+
version = "0.1.23"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"windows-sys",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "scopeguard"
|
|
1801
|
+
version = "1.2.0"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1804
|
+
|
|
1805
|
+
[[package]]
|
|
1806
|
+
name = "security-framework"
|
|
1807
|
+
version = "2.11.1"
|
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
1810
|
+
dependencies = [
|
|
1811
|
+
"bitflags 2.6.0",
|
|
1812
|
+
"core-foundation",
|
|
1813
|
+
"core-foundation-sys",
|
|
1814
|
+
"libc",
|
|
1815
|
+
"security-framework-sys",
|
|
1816
|
+
]
|
|
1817
|
+
|
|
1818
|
+
[[package]]
|
|
1819
|
+
name = "security-framework-sys"
|
|
1820
|
+
version = "2.11.1"
|
|
1821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
+
checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
|
|
1823
|
+
dependencies = [
|
|
1824
|
+
"core-foundation-sys",
|
|
1825
|
+
"libc",
|
|
1826
|
+
]
|
|
1827
|
+
|
|
1828
|
+
[[package]]
|
|
1829
|
+
name = "serde"
|
|
1830
|
+
version = "1.0.204"
|
|
1831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
|
1833
|
+
dependencies = [
|
|
1834
|
+
"serde_derive",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "serde_derive"
|
|
1839
|
+
version = "1.0.204"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"proc-macro2",
|
|
1844
|
+
"quote",
|
|
1845
|
+
"syn 2.0.72",
|
|
1846
|
+
]
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "serde_json"
|
|
1850
|
+
version = "1.0.122"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da"
|
|
1853
|
+
dependencies = [
|
|
1854
|
+
"itoa",
|
|
1855
|
+
"memchr",
|
|
1856
|
+
"ryu",
|
|
1857
|
+
"serde",
|
|
1858
|
+
]
|
|
1859
|
+
|
|
1860
|
+
[[package]]
|
|
1861
|
+
name = "simdutf8"
|
|
1862
|
+
version = "0.1.4"
|
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
+
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "siphasher"
|
|
1868
|
+
version = "0.3.11"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "smallvec"
|
|
1874
|
+
version = "1.13.1"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "smartstring"
|
|
1880
|
+
version = "1.0.1"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"autocfg",
|
|
1885
|
+
"static_assertions",
|
|
1886
|
+
"version_check",
|
|
1887
|
+
]
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "sqlparser"
|
|
1891
|
+
version = "0.47.0"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "295e9930cd7a97e58ca2a070541a3ca502b17f5d1fa7157376d0fabd85324f25"
|
|
1894
|
+
dependencies = [
|
|
1895
|
+
"log",
|
|
1896
|
+
]
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "stacker"
|
|
1900
|
+
version = "0.1.15"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
|
|
1903
|
+
dependencies = [
|
|
1904
|
+
"cc",
|
|
1905
|
+
"cfg-if",
|
|
1906
|
+
"libc",
|
|
1907
|
+
"psm",
|
|
1908
|
+
"winapi",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "static_assertions"
|
|
1913
|
+
version = "1.1.0"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "streaming-decompression"
|
|
1919
|
+
version = "0.1.2"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"fallible-streaming-iterator",
|
|
1924
|
+
]
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "streaming-iterator"
|
|
1928
|
+
version = "0.1.9"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
|
1931
|
+
|
|
1932
|
+
[[package]]
|
|
1933
|
+
name = "strength_reduce"
|
|
1934
|
+
version = "0.2.4"
|
|
1935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1936
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "strum"
|
|
1940
|
+
version = "0.26.3"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "strum_macros"
|
|
1946
|
+
version = "0.26.4"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"heck 0.5.0",
|
|
1951
|
+
"proc-macro2",
|
|
1952
|
+
"quote",
|
|
1953
|
+
"rustversion",
|
|
1954
|
+
"syn 2.0.72",
|
|
1955
|
+
]
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "syn"
|
|
1959
|
+
version = "1.0.109"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1962
|
+
dependencies = [
|
|
1963
|
+
"proc-macro2",
|
|
1964
|
+
"quote",
|
|
1965
|
+
"unicode-ident",
|
|
1966
|
+
]
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "syn"
|
|
1970
|
+
version = "2.0.72"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
|
|
1973
|
+
dependencies = [
|
|
1974
|
+
"proc-macro2",
|
|
1975
|
+
"quote",
|
|
1976
|
+
"unicode-ident",
|
|
1977
|
+
]
|
|
1978
|
+
|
|
1979
|
+
[[package]]
|
|
1980
|
+
name = "sysinfo"
|
|
1981
|
+
version = "0.30.13"
|
|
1982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
+
checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
|
|
1984
|
+
dependencies = [
|
|
1985
|
+
"cfg-if",
|
|
1986
|
+
"core-foundation-sys",
|
|
1987
|
+
"libc",
|
|
1988
|
+
"ntapi",
|
|
1989
|
+
"once_cell",
|
|
1990
|
+
"windows",
|
|
1991
|
+
]
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "tar"
|
|
1995
|
+
version = "0.4.40"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
|
|
1998
|
+
dependencies = [
|
|
1999
|
+
"filetime",
|
|
2000
|
+
"libc",
|
|
2001
|
+
"xattr",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "target-features"
|
|
2006
|
+
version = "0.1.6"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "target-lexicon"
|
|
2012
|
+
version = "0.12.16"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "tempfile"
|
|
2018
|
+
version = "3.11.0"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "b8fcd239983515c23a32fb82099f97d0b11b8c72f654ed659363a95c3dad7a53"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"cfg-if",
|
|
2023
|
+
"fastrand",
|
|
2024
|
+
"once_cell",
|
|
2025
|
+
"rustix",
|
|
2026
|
+
"windows-sys",
|
|
2027
|
+
]
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "thiserror"
|
|
2031
|
+
version = "1.0.63"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
|
2034
|
+
dependencies = [
|
|
2035
|
+
"thiserror-impl",
|
|
2036
|
+
]
|
|
2037
|
+
|
|
2038
|
+
[[package]]
|
|
2039
|
+
name = "thiserror-impl"
|
|
2040
|
+
version = "1.0.63"
|
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
|
2043
|
+
dependencies = [
|
|
2044
|
+
"proc-macro2",
|
|
2045
|
+
"quote",
|
|
2046
|
+
"syn 2.0.72",
|
|
2047
|
+
]
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "tinyvec"
|
|
2051
|
+
version = "1.8.0"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"tinyvec_macros",
|
|
2056
|
+
]
|
|
2057
|
+
|
|
2058
|
+
[[package]]
|
|
2059
|
+
name = "tinyvec_macros"
|
|
2060
|
+
version = "0.1.1"
|
|
2061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "trafficrs"
|
|
2066
|
+
version = "0.1.0"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"ndarray-linalg",
|
|
2069
|
+
"numpy",
|
|
2070
|
+
"polars",
|
|
2071
|
+
"polars-core",
|
|
2072
|
+
]
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "trafficrs-python"
|
|
2076
|
+
version = "0.0.1"
|
|
2077
|
+
dependencies = [
|
|
2078
|
+
"chrono",
|
|
2079
|
+
"numpy",
|
|
2080
|
+
"polars",
|
|
2081
|
+
"polars-core",
|
|
2082
|
+
"pyo3",
|
|
2083
|
+
"pyo3-polars",
|
|
2084
|
+
"trafficrs",
|
|
2085
|
+
]
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "unicode-bidi"
|
|
2089
|
+
version = "0.3.15"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
2092
|
+
|
|
2093
|
+
[[package]]
|
|
2094
|
+
name = "unicode-ident"
|
|
2095
|
+
version = "1.0.12"
|
|
2096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
2098
|
+
|
|
2099
|
+
[[package]]
|
|
2100
|
+
name = "unicode-normalization"
|
|
2101
|
+
version = "0.1.23"
|
|
2102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
2104
|
+
dependencies = [
|
|
2105
|
+
"tinyvec",
|
|
2106
|
+
]
|
|
2107
|
+
|
|
2108
|
+
[[package]]
|
|
2109
|
+
name = "unicode-reverse"
|
|
2110
|
+
version = "1.0.9"
|
|
2111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
+
checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
|
|
2113
|
+
dependencies = [
|
|
2114
|
+
"unicode-segmentation",
|
|
2115
|
+
]
|
|
2116
|
+
|
|
2117
|
+
[[package]]
|
|
2118
|
+
name = "unicode-segmentation"
|
|
2119
|
+
version = "1.11.0"
|
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
2122
|
+
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "unicode-width"
|
|
2125
|
+
version = "0.1.13"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "unindent"
|
|
2131
|
+
version = "0.2.3"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
2134
|
+
|
|
2135
|
+
[[package]]
|
|
2136
|
+
name = "ureq"
|
|
2137
|
+
version = "2.9.6"
|
|
2138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2139
|
+
checksum = "11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35"
|
|
2140
|
+
dependencies = [
|
|
2141
|
+
"base64 0.21.7",
|
|
2142
|
+
"flate2",
|
|
2143
|
+
"log",
|
|
2144
|
+
"native-tls",
|
|
2145
|
+
"once_cell",
|
|
2146
|
+
"rustls-native-certs",
|
|
2147
|
+
"url",
|
|
2148
|
+
]
|
|
2149
|
+
|
|
2150
|
+
[[package]]
|
|
2151
|
+
name = "url"
|
|
2152
|
+
version = "2.5.2"
|
|
2153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2154
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
|
2155
|
+
dependencies = [
|
|
2156
|
+
"form_urlencoded",
|
|
2157
|
+
"idna",
|
|
2158
|
+
"percent-encoding",
|
|
2159
|
+
]
|
|
2160
|
+
|
|
2161
|
+
[[package]]
|
|
2162
|
+
name = "uuid"
|
|
2163
|
+
version = "1.10.0"
|
|
2164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
|
2166
|
+
dependencies = [
|
|
2167
|
+
"getrandom",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "vcpkg"
|
|
2172
|
+
version = "0.2.15"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2175
|
+
|
|
2176
|
+
[[package]]
|
|
2177
|
+
name = "version_check"
|
|
2178
|
+
version = "0.9.5"
|
|
2179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "walkdir"
|
|
2184
|
+
version = "2.5.0"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2187
|
+
dependencies = [
|
|
2188
|
+
"same-file",
|
|
2189
|
+
"winapi-util",
|
|
2190
|
+
]
|
|
2191
|
+
|
|
2192
|
+
[[package]]
|
|
2193
|
+
name = "wasi"
|
|
2194
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
2195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2196
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2197
|
+
|
|
2198
|
+
[[package]]
|
|
2199
|
+
name = "wasm-bindgen"
|
|
2200
|
+
version = "0.2.90"
|
|
2201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
+
checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406"
|
|
2203
|
+
dependencies = [
|
|
2204
|
+
"cfg-if",
|
|
2205
|
+
"wasm-bindgen-macro",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "wasm-bindgen-backend"
|
|
2210
|
+
version = "0.2.90"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"bumpalo",
|
|
2215
|
+
"log",
|
|
2216
|
+
"once_cell",
|
|
2217
|
+
"proc-macro2",
|
|
2218
|
+
"quote",
|
|
2219
|
+
"syn 2.0.72",
|
|
2220
|
+
"wasm-bindgen-shared",
|
|
2221
|
+
]
|
|
2222
|
+
|
|
2223
|
+
[[package]]
|
|
2224
|
+
name = "wasm-bindgen-macro"
|
|
2225
|
+
version = "0.2.90"
|
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
+
checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999"
|
|
2228
|
+
dependencies = [
|
|
2229
|
+
"quote",
|
|
2230
|
+
"wasm-bindgen-macro-support",
|
|
2231
|
+
]
|
|
2232
|
+
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "wasm-bindgen-macro-support"
|
|
2235
|
+
version = "0.2.90"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"proc-macro2",
|
|
2240
|
+
"quote",
|
|
2241
|
+
"syn 2.0.72",
|
|
2242
|
+
"wasm-bindgen-backend",
|
|
2243
|
+
"wasm-bindgen-shared",
|
|
2244
|
+
]
|
|
2245
|
+
|
|
2246
|
+
[[package]]
|
|
2247
|
+
name = "wasm-bindgen-shared"
|
|
2248
|
+
version = "0.2.90"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b"
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "winapi"
|
|
2254
|
+
version = "0.3.9"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2257
|
+
dependencies = [
|
|
2258
|
+
"winapi-i686-pc-windows-gnu",
|
|
2259
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2264
|
+
version = "0.4.0"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "winapi-util"
|
|
2270
|
+
version = "0.1.9"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"windows-sys",
|
|
2275
|
+
]
|
|
2276
|
+
|
|
2277
|
+
[[package]]
|
|
2278
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2279
|
+
version = "0.4.0"
|
|
2280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2281
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2282
|
+
|
|
2283
|
+
[[package]]
|
|
2284
|
+
name = "windows"
|
|
2285
|
+
version = "0.52.0"
|
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
+
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
|
2288
|
+
dependencies = [
|
|
2289
|
+
"windows-core",
|
|
2290
|
+
"windows-targets 0.52.0",
|
|
2291
|
+
]
|
|
2292
|
+
|
|
2293
|
+
[[package]]
|
|
2294
|
+
name = "windows-core"
|
|
2295
|
+
version = "0.52.0"
|
|
2296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
2298
|
+
dependencies = [
|
|
2299
|
+
"windows-targets 0.52.0",
|
|
2300
|
+
]
|
|
2301
|
+
|
|
2302
|
+
[[package]]
|
|
2303
|
+
name = "windows-sys"
|
|
2304
|
+
version = "0.52.0"
|
|
2305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2307
|
+
dependencies = [
|
|
2308
|
+
"windows-targets 0.52.0",
|
|
2309
|
+
]
|
|
2310
|
+
|
|
2311
|
+
[[package]]
|
|
2312
|
+
name = "windows-targets"
|
|
2313
|
+
version = "0.48.5"
|
|
2314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2316
|
+
dependencies = [
|
|
2317
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
2318
|
+
"windows_aarch64_msvc 0.48.5",
|
|
2319
|
+
"windows_i686_gnu 0.48.5",
|
|
2320
|
+
"windows_i686_msvc 0.48.5",
|
|
2321
|
+
"windows_x86_64_gnu 0.48.5",
|
|
2322
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
2323
|
+
"windows_x86_64_msvc 0.48.5",
|
|
2324
|
+
]
|
|
2325
|
+
|
|
2326
|
+
[[package]]
|
|
2327
|
+
name = "windows-targets"
|
|
2328
|
+
version = "0.52.0"
|
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
+
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
|
2331
|
+
dependencies = [
|
|
2332
|
+
"windows_aarch64_gnullvm 0.52.0",
|
|
2333
|
+
"windows_aarch64_msvc 0.52.0",
|
|
2334
|
+
"windows_i686_gnu 0.52.0",
|
|
2335
|
+
"windows_i686_msvc 0.52.0",
|
|
2336
|
+
"windows_x86_64_gnu 0.52.0",
|
|
2337
|
+
"windows_x86_64_gnullvm 0.52.0",
|
|
2338
|
+
"windows_x86_64_msvc 0.52.0",
|
|
2339
|
+
]
|
|
2340
|
+
|
|
2341
|
+
[[package]]
|
|
2342
|
+
name = "windows_aarch64_gnullvm"
|
|
2343
|
+
version = "0.48.5"
|
|
2344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2345
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2346
|
+
|
|
2347
|
+
[[package]]
|
|
2348
|
+
name = "windows_aarch64_gnullvm"
|
|
2349
|
+
version = "0.52.0"
|
|
2350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
+
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "windows_aarch64_msvc"
|
|
2355
|
+
version = "0.48.5"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2358
|
+
|
|
2359
|
+
[[package]]
|
|
2360
|
+
name = "windows_aarch64_msvc"
|
|
2361
|
+
version = "0.52.0"
|
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
+
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "windows_i686_gnu"
|
|
2367
|
+
version = "0.48.5"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "windows_i686_gnu"
|
|
2373
|
+
version = "0.52.0"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
|
2376
|
+
|
|
2377
|
+
[[package]]
|
|
2378
|
+
name = "windows_i686_msvc"
|
|
2379
|
+
version = "0.48.5"
|
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2381
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "windows_i686_msvc"
|
|
2385
|
+
version = "0.52.0"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "windows_x86_64_gnu"
|
|
2391
|
+
version = "0.48.5"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2394
|
+
|
|
2395
|
+
[[package]]
|
|
2396
|
+
name = "windows_x86_64_gnu"
|
|
2397
|
+
version = "0.52.0"
|
|
2398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2399
|
+
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "windows_x86_64_gnullvm"
|
|
2403
|
+
version = "0.48.5"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "windows_x86_64_gnullvm"
|
|
2409
|
+
version = "0.52.0"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "windows_x86_64_msvc"
|
|
2415
|
+
version = "0.48.5"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2418
|
+
|
|
2419
|
+
[[package]]
|
|
2420
|
+
name = "windows_x86_64_msvc"
|
|
2421
|
+
version = "0.52.0"
|
|
2422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
+
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
|
2424
|
+
|
|
2425
|
+
[[package]]
|
|
2426
|
+
name = "xattr"
|
|
2427
|
+
version = "1.3.1"
|
|
2428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2429
|
+
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
|
|
2430
|
+
dependencies = [
|
|
2431
|
+
"libc",
|
|
2432
|
+
"linux-raw-sys",
|
|
2433
|
+
"rustix",
|
|
2434
|
+
]
|
|
2435
|
+
|
|
2436
|
+
[[package]]
|
|
2437
|
+
name = "xxhash-rust"
|
|
2438
|
+
version = "0.8.12"
|
|
2439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2440
|
+
checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
|
|
2441
|
+
|
|
2442
|
+
[[package]]
|
|
2443
|
+
name = "zerocopy"
|
|
2444
|
+
version = "0.7.35"
|
|
2445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
2447
|
+
dependencies = [
|
|
2448
|
+
"byteorder",
|
|
2449
|
+
"zerocopy-derive",
|
|
2450
|
+
]
|
|
2451
|
+
|
|
2452
|
+
[[package]]
|
|
2453
|
+
name = "zerocopy-derive"
|
|
2454
|
+
version = "0.7.35"
|
|
2455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
2457
|
+
dependencies = [
|
|
2458
|
+
"proc-macro2",
|
|
2459
|
+
"quote",
|
|
2460
|
+
"syn 2.0.72",
|
|
2461
|
+
]
|
|
2462
|
+
|
|
2463
|
+
[[package]]
|
|
2464
|
+
name = "zstd"
|
|
2465
|
+
version = "0.13.2"
|
|
2466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2467
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
|
2468
|
+
dependencies = [
|
|
2469
|
+
"zstd-safe",
|
|
2470
|
+
]
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "zstd-safe"
|
|
2474
|
+
version = "7.2.1"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"zstd-sys",
|
|
2479
|
+
]
|
|
2480
|
+
|
|
2481
|
+
[[package]]
|
|
2482
|
+
name = "zstd-sys"
|
|
2483
|
+
version = "2.0.13+zstd.1.5.6"
|
|
2484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2485
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
|
2486
|
+
dependencies = [
|
|
2487
|
+
"cc",
|
|
2488
|
+
"pkg-config",
|
|
2489
|
+
]
|