wren-core-py 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wren_core_py-0.1.0/Cargo.lock +3774 -0
- wren_core_py-0.1.0/PKG-INFO +89 -0
- wren_core_py-0.1.0/README.md +66 -0
- wren_core_py-0.1.0/pyproject.toml +142 -0
- wren_core_py-0.1.0/wren-core/Cargo.toml +27 -0
- wren_core_py-0.1.0/wren-core/core/Cargo.toml +40 -0
- wren_core_py-0.1.0/wren-core/core/src/lib.rs +10 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/analyze/access_control.rs +873 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/analyze/expand_view.rs +70 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/analyze/mod.rs +9 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/analyze/model_anlayze.rs +814 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/analyze/model_generation.rs +314 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/analyze/plan.rs +1202 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/analyze/relation_chain.rs +311 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/analyze/scope.rs +219 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/error.rs +16 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/mod.rs +4 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/optimize/mod.rs +21 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/optimize/simplify_timestamp.rs +176 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/optimize/type_coercion.rs +1088 -0
- wren_core_py-0.1.0/wren-core/core/src/logical_plan/utils.rs +568 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/context.rs +397 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/dataset.rs +91 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/dialect/inner_dialect.rs +725 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/dialect/mod.rs +24 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/dialect/utils.rs +76 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/dialect/wren_dialect.rs +258 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/aggregate/mod.rs +51 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/dialect/bigquery/aggregate.rs +211 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/dialect/bigquery/mod.rs +362 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/dialect/bigquery/scalar.rs +1930 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/dialect/bigquery/window.rs +34 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/dialect/mod.rs +1 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/macros.rs +75 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/mod.rs +13 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/remote_function.rs +781 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/scalar/json.rs +532 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/scalar/mod.rs +229 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/scalar/to_char.rs +83 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/table/mod.rs +11 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/utils.rs +5 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/function/window/mod.rs +19 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/lineage.rs +748 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/mod.rs +4063 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/type_planner.rs +33 -0
- wren_core_py-0.1.0/wren-core/core/src/mdl/utils.rs +407 -0
- wren_core_py-0.1.0/wren-core-base/.claude/CLAUDE.md +37 -0
- wren_core_py-0.1.0/wren-core-base/.gitignore +4 -0
- wren_core_py-0.1.0/wren-core-base/AGENTS.md +3 -0
- wren_core_py-0.1.0/wren-core-base/Cargo.lock +723 -0
- wren_core_py-0.1.0/wren-core-base/Cargo.toml +22 -0
- wren_core_py-0.1.0/wren-core-base/README.md +5 -0
- wren_core_py-0.1.0/wren-core-base/manifest-macro/Cargo.lock +46 -0
- wren_core_py-0.1.0/wren-core-base/manifest-macro/Cargo.toml +18 -0
- wren_core_py-0.1.0/wren-core-base/manifest-macro/README.md +14 -0
- wren_core_py-0.1.0/wren-core-base/manifest-macro/src/lib.rs +636 -0
- wren_core_py-0.1.0/wren-core-base/src/lib.rs +1 -0
- wren_core_py-0.1.0/wren-core-base/src/mdl/builder.rs +851 -0
- wren_core_py-0.1.0/wren-core-base/src/mdl/cls.rs +283 -0
- wren_core_py-0.1.0/wren-core-base/src/mdl/manifest.rs +461 -0
- wren_core_py-0.1.0/wren-core-base/src/mdl/mod.rs +27 -0
- wren_core_py-0.1.0/wren-core-base/src/mdl/py_method.rs +98 -0
- wren_core_py-0.1.0/wren-core-base/src/mdl/utils.rs +66 -0
- wren_core_py-0.1.0/wren-core-base/tests/data/mdl.json +195 -0
- wren_core_py-0.1.0/wren-core-py/Cargo.lock +3774 -0
- wren_core_py-0.1.0/wren-core-py/Cargo.toml +36 -0
- wren_core_py-0.1.0/wren-core-py/README.md +66 -0
- wren_core_py-0.1.0/wren-core-py/src/context.rs +534 -0
- wren_core_py-0.1.0/wren-core-py/src/errors.rs +96 -0
- wren_core_py-0.1.0/wren-core-py/src/extractor.rs +349 -0
- wren_core_py-0.1.0/wren-core-py/src/lib.rs +28 -0
- wren_core_py-0.1.0/wren-core-py/src/manifest.rs +98 -0
- wren_core_py-0.1.0/wren-core-py/src/remote_functions.rs +155 -0
- wren_core_py-0.1.0/wren-core-py/src/validation.rs +13 -0
|
@@ -0,0 +1,3774 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"const-random",
|
|
19
|
+
"getrandom 0.3.4",
|
|
20
|
+
"once_cell",
|
|
21
|
+
"version_check",
|
|
22
|
+
"zerocopy",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "aho-corasick"
|
|
27
|
+
version = "1.1.4"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"memchr",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "alloc-no-stdlib"
|
|
36
|
+
version = "2.0.4"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "alloc-stdlib"
|
|
42
|
+
version = "0.2.2"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"alloc-no-stdlib",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "allocator-api2"
|
|
51
|
+
version = "0.2.21"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "android_system_properties"
|
|
57
|
+
version = "0.1.5"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
60
|
+
dependencies = [
|
|
61
|
+
"libc",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "anstream"
|
|
66
|
+
version = "0.6.21"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"anstyle",
|
|
71
|
+
"anstyle-parse",
|
|
72
|
+
"anstyle-query",
|
|
73
|
+
"anstyle-wincon",
|
|
74
|
+
"colorchoice",
|
|
75
|
+
"is_terminal_polyfill",
|
|
76
|
+
"utf8parse",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anstyle"
|
|
81
|
+
version = "1.0.13"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anstyle-parse"
|
|
87
|
+
version = "0.2.7"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"utf8parse",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "anstyle-query"
|
|
96
|
+
version = "1.1.4"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"windows-sys 0.60.2",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "anstyle-wincon"
|
|
105
|
+
version = "3.0.10"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"anstyle",
|
|
110
|
+
"once_cell_polyfill",
|
|
111
|
+
"windows-sys 0.60.2",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "ar_archive_writer"
|
|
116
|
+
version = "0.2.0"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"object",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "arrayref"
|
|
125
|
+
version = "0.3.9"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "arrayvec"
|
|
131
|
+
version = "0.7.6"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "arrow"
|
|
137
|
+
version = "55.2.0"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "f3f15b4c6b148206ff3a2b35002e08929c2462467b62b9c02036d9c34f9ef994"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"arrow-arith",
|
|
142
|
+
"arrow-array",
|
|
143
|
+
"arrow-buffer",
|
|
144
|
+
"arrow-cast",
|
|
145
|
+
"arrow-csv",
|
|
146
|
+
"arrow-data",
|
|
147
|
+
"arrow-ipc",
|
|
148
|
+
"arrow-json",
|
|
149
|
+
"arrow-ord",
|
|
150
|
+
"arrow-row",
|
|
151
|
+
"arrow-schema",
|
|
152
|
+
"arrow-select",
|
|
153
|
+
"arrow-string",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "arrow-arith"
|
|
158
|
+
version = "55.2.0"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "30feb679425110209ae35c3fbf82404a39a4c0436bb3ec36164d8bffed2a4ce4"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"arrow-array",
|
|
163
|
+
"arrow-buffer",
|
|
164
|
+
"arrow-data",
|
|
165
|
+
"arrow-schema",
|
|
166
|
+
"chrono",
|
|
167
|
+
"num",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "arrow-array"
|
|
172
|
+
version = "55.2.0"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "70732f04d285d49054a48b72c54f791bb3424abae92d27aafdf776c98af161c8"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"ahash",
|
|
177
|
+
"arrow-buffer",
|
|
178
|
+
"arrow-data",
|
|
179
|
+
"arrow-schema",
|
|
180
|
+
"chrono",
|
|
181
|
+
"chrono-tz",
|
|
182
|
+
"half",
|
|
183
|
+
"hashbrown 0.15.5",
|
|
184
|
+
"num",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "arrow-buffer"
|
|
189
|
+
version = "55.2.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "169b1d5d6cb390dd92ce582b06b23815c7953e9dfaaea75556e89d890d19993d"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"bytes",
|
|
194
|
+
"half",
|
|
195
|
+
"num",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "arrow-cast"
|
|
200
|
+
version = "55.2.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "e4f12eccc3e1c05a766cafb31f6a60a46c2f8efec9b74c6e0648766d30686af8"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"arrow-array",
|
|
205
|
+
"arrow-buffer",
|
|
206
|
+
"arrow-data",
|
|
207
|
+
"arrow-schema",
|
|
208
|
+
"arrow-select",
|
|
209
|
+
"atoi",
|
|
210
|
+
"base64",
|
|
211
|
+
"chrono",
|
|
212
|
+
"comfy-table",
|
|
213
|
+
"half",
|
|
214
|
+
"lexical-core",
|
|
215
|
+
"num",
|
|
216
|
+
"ryu",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "arrow-csv"
|
|
221
|
+
version = "55.2.0"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "012c9fef3f4a11573b2c74aec53712ff9fdae4a95f4ce452d1bbf088ee00f06b"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"arrow-array",
|
|
226
|
+
"arrow-cast",
|
|
227
|
+
"arrow-schema",
|
|
228
|
+
"chrono",
|
|
229
|
+
"csv",
|
|
230
|
+
"csv-core",
|
|
231
|
+
"regex",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "arrow-data"
|
|
236
|
+
version = "55.2.0"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "8de1ce212d803199684b658fc4ba55fb2d7e87b213de5af415308d2fee3619c2"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"arrow-buffer",
|
|
241
|
+
"arrow-schema",
|
|
242
|
+
"half",
|
|
243
|
+
"num",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "arrow-ipc"
|
|
248
|
+
version = "55.2.0"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "d9ea5967e8b2af39aff5d9de2197df16e305f47f404781d3230b2dc672da5d92"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"arrow-array",
|
|
253
|
+
"arrow-buffer",
|
|
254
|
+
"arrow-data",
|
|
255
|
+
"arrow-schema",
|
|
256
|
+
"flatbuffers",
|
|
257
|
+
"lz4_flex",
|
|
258
|
+
"zstd",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "arrow-json"
|
|
263
|
+
version = "55.2.0"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "5709d974c4ea5be96d900c01576c7c0b99705f4a3eec343648cb1ca863988a9c"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"arrow-array",
|
|
268
|
+
"arrow-buffer",
|
|
269
|
+
"arrow-cast",
|
|
270
|
+
"arrow-data",
|
|
271
|
+
"arrow-schema",
|
|
272
|
+
"chrono",
|
|
273
|
+
"half",
|
|
274
|
+
"indexmap 2.12.0",
|
|
275
|
+
"lexical-core",
|
|
276
|
+
"memchr",
|
|
277
|
+
"num",
|
|
278
|
+
"serde",
|
|
279
|
+
"serde_json",
|
|
280
|
+
"simdutf8",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "arrow-ord"
|
|
285
|
+
version = "55.2.0"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "6506e3a059e3be23023f587f79c82ef0bcf6d293587e3272d20f2d30b969b5a7"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"arrow-array",
|
|
290
|
+
"arrow-buffer",
|
|
291
|
+
"arrow-data",
|
|
292
|
+
"arrow-schema",
|
|
293
|
+
"arrow-select",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "arrow-row"
|
|
298
|
+
version = "55.2.0"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "52bf7393166beaf79b4bed9bfdf19e97472af32ce5b6b48169d321518a08cae2"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"arrow-array",
|
|
303
|
+
"arrow-buffer",
|
|
304
|
+
"arrow-data",
|
|
305
|
+
"arrow-schema",
|
|
306
|
+
"half",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "arrow-schema"
|
|
311
|
+
version = "55.2.0"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "af7686986a3bf2254c9fb130c623cdcb2f8e1f15763e7c71c310f0834da3d292"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"serde",
|
|
316
|
+
"serde_json",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "arrow-select"
|
|
321
|
+
version = "55.2.0"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "dd2b45757d6a2373faa3352d02ff5b54b098f5e21dccebc45a21806bc34501e5"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"ahash",
|
|
326
|
+
"arrow-array",
|
|
327
|
+
"arrow-buffer",
|
|
328
|
+
"arrow-data",
|
|
329
|
+
"arrow-schema",
|
|
330
|
+
"num",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "arrow-string"
|
|
335
|
+
version = "55.2.0"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "0377d532850babb4d927a06294314b316e23311503ed580ec6ce6a0158f49d40"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"arrow-array",
|
|
340
|
+
"arrow-buffer",
|
|
341
|
+
"arrow-data",
|
|
342
|
+
"arrow-schema",
|
|
343
|
+
"arrow-select",
|
|
344
|
+
"memchr",
|
|
345
|
+
"num",
|
|
346
|
+
"regex",
|
|
347
|
+
"regex-syntax",
|
|
348
|
+
]
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "async-compression"
|
|
352
|
+
version = "0.4.19"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "06575e6a9673580f52661c92107baabffbf41e2141373441cbcdc47cb733003c"
|
|
355
|
+
dependencies = [
|
|
356
|
+
"bzip2 0.5.2",
|
|
357
|
+
"flate2",
|
|
358
|
+
"futures-core",
|
|
359
|
+
"memchr",
|
|
360
|
+
"pin-project-lite",
|
|
361
|
+
"tokio",
|
|
362
|
+
"xz2",
|
|
363
|
+
"zstd",
|
|
364
|
+
"zstd-safe",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "async-trait"
|
|
369
|
+
version = "0.1.89"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"proc-macro2",
|
|
374
|
+
"quote",
|
|
375
|
+
"syn",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "atoi"
|
|
380
|
+
version = "2.0.0"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"num-traits",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "autocfg"
|
|
389
|
+
version = "1.5.0"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "base64"
|
|
395
|
+
version = "0.22.1"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "bigdecimal"
|
|
401
|
+
version = "0.4.9"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "560f42649de9fa436b73517378a147ec21f6c997a546581df4b4b31677828934"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"autocfg",
|
|
406
|
+
"libm",
|
|
407
|
+
"num-bigint",
|
|
408
|
+
"num-integer",
|
|
409
|
+
"num-traits",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "bitflags"
|
|
414
|
+
version = "2.10.0"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "blake2"
|
|
420
|
+
version = "0.10.6"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"digest",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "blake3"
|
|
429
|
+
version = "1.8.2"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"arrayref",
|
|
434
|
+
"arrayvec",
|
|
435
|
+
"cc",
|
|
436
|
+
"cfg-if",
|
|
437
|
+
"constant_time_eq",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "block-buffer"
|
|
442
|
+
version = "0.10.4"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"generic-array",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "brotli"
|
|
451
|
+
version = "8.0.2"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"alloc-no-stdlib",
|
|
456
|
+
"alloc-stdlib",
|
|
457
|
+
"brotli-decompressor",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "brotli-decompressor"
|
|
462
|
+
version = "5.0.0"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"alloc-no-stdlib",
|
|
467
|
+
"alloc-stdlib",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "bumpalo"
|
|
472
|
+
version = "3.19.0"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "byteorder"
|
|
478
|
+
version = "1.5.0"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "bytes"
|
|
484
|
+
version = "1.11.1"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "bzip2"
|
|
490
|
+
version = "0.5.2"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"bzip2-sys",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "bzip2"
|
|
499
|
+
version = "0.6.1"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"libbz2-rs-sys",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "bzip2-sys"
|
|
508
|
+
version = "0.1.13+1.0.8"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"cc",
|
|
513
|
+
"pkg-config",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "cc"
|
|
518
|
+
version = "1.2.43"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"find-msvc-tools",
|
|
523
|
+
"jobserver",
|
|
524
|
+
"libc",
|
|
525
|
+
"shlex",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "cfg-if"
|
|
530
|
+
version = "1.0.4"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "chrono"
|
|
536
|
+
version = "0.4.42"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"iana-time-zone",
|
|
541
|
+
"num-traits",
|
|
542
|
+
"serde",
|
|
543
|
+
"windows-link",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "chrono-tz"
|
|
548
|
+
version = "0.10.4"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"chrono",
|
|
553
|
+
"phf",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "colorchoice"
|
|
558
|
+
version = "1.0.4"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "comfy-table"
|
|
564
|
+
version = "7.2.1"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"unicode-segmentation",
|
|
569
|
+
"unicode-width",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "const-random"
|
|
574
|
+
version = "0.1.18"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"const-random-macro",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "const-random-macro"
|
|
583
|
+
version = "0.1.16"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"getrandom 0.2.16",
|
|
588
|
+
"once_cell",
|
|
589
|
+
"tiny-keccak",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "constant_time_eq"
|
|
594
|
+
version = "0.3.1"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "core-foundation-sys"
|
|
600
|
+
version = "0.8.7"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "cpufeatures"
|
|
606
|
+
version = "0.2.17"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"libc",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "crc32fast"
|
|
615
|
+
version = "1.5.0"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"cfg-if",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "crossbeam-utils"
|
|
624
|
+
version = "0.8.21"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "crunchy"
|
|
630
|
+
version = "0.2.4"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "crypto-common"
|
|
636
|
+
version = "0.1.6"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"generic-array",
|
|
641
|
+
"typenum",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "csv"
|
|
646
|
+
version = "1.4.0"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"csv-core",
|
|
651
|
+
"itoa",
|
|
652
|
+
"ryu",
|
|
653
|
+
"serde_core",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "csv-core"
|
|
658
|
+
version = "0.1.13"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"memchr",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "darling"
|
|
667
|
+
version = "0.21.3"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"darling_core",
|
|
672
|
+
"darling_macro",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "darling_core"
|
|
677
|
+
version = "0.21.3"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"fnv",
|
|
682
|
+
"ident_case",
|
|
683
|
+
"proc-macro2",
|
|
684
|
+
"quote",
|
|
685
|
+
"strsim",
|
|
686
|
+
"syn",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "darling_macro"
|
|
691
|
+
version = "0.21.3"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"darling_core",
|
|
696
|
+
"quote",
|
|
697
|
+
"syn",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "dashmap"
|
|
702
|
+
version = "6.1.0"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"cfg-if",
|
|
707
|
+
"crossbeam-utils",
|
|
708
|
+
"hashbrown 0.14.5",
|
|
709
|
+
"lock_api",
|
|
710
|
+
"once_cell",
|
|
711
|
+
"parking_lot_core",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "datafusion"
|
|
716
|
+
version = "49.0.1"
|
|
717
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"arrow",
|
|
720
|
+
"arrow-ipc",
|
|
721
|
+
"arrow-schema",
|
|
722
|
+
"async-trait",
|
|
723
|
+
"bytes",
|
|
724
|
+
"bzip2 0.6.1",
|
|
725
|
+
"chrono",
|
|
726
|
+
"datafusion-catalog",
|
|
727
|
+
"datafusion-catalog-listing",
|
|
728
|
+
"datafusion-common",
|
|
729
|
+
"datafusion-common-runtime",
|
|
730
|
+
"datafusion-datasource",
|
|
731
|
+
"datafusion-datasource-csv",
|
|
732
|
+
"datafusion-datasource-json",
|
|
733
|
+
"datafusion-datasource-parquet",
|
|
734
|
+
"datafusion-execution",
|
|
735
|
+
"datafusion-expr",
|
|
736
|
+
"datafusion-expr-common",
|
|
737
|
+
"datafusion-functions",
|
|
738
|
+
"datafusion-functions-aggregate",
|
|
739
|
+
"datafusion-functions-nested",
|
|
740
|
+
"datafusion-functions-table",
|
|
741
|
+
"datafusion-functions-window",
|
|
742
|
+
"datafusion-optimizer",
|
|
743
|
+
"datafusion-physical-expr",
|
|
744
|
+
"datafusion-physical-expr-common",
|
|
745
|
+
"datafusion-physical-optimizer",
|
|
746
|
+
"datafusion-physical-plan",
|
|
747
|
+
"datafusion-session",
|
|
748
|
+
"datafusion-sql",
|
|
749
|
+
"flate2",
|
|
750
|
+
"futures",
|
|
751
|
+
"hex",
|
|
752
|
+
"itertools",
|
|
753
|
+
"log",
|
|
754
|
+
"object_store",
|
|
755
|
+
"parking_lot",
|
|
756
|
+
"parquet",
|
|
757
|
+
"rand",
|
|
758
|
+
"regex",
|
|
759
|
+
"sqlparser 0.55.0",
|
|
760
|
+
"tempfile",
|
|
761
|
+
"tokio",
|
|
762
|
+
"url",
|
|
763
|
+
"uuid",
|
|
764
|
+
"xz2",
|
|
765
|
+
"zstd",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "datafusion-catalog"
|
|
770
|
+
version = "49.0.1"
|
|
771
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"arrow",
|
|
774
|
+
"async-trait",
|
|
775
|
+
"dashmap",
|
|
776
|
+
"datafusion-common",
|
|
777
|
+
"datafusion-common-runtime",
|
|
778
|
+
"datafusion-datasource",
|
|
779
|
+
"datafusion-execution",
|
|
780
|
+
"datafusion-expr",
|
|
781
|
+
"datafusion-physical-expr",
|
|
782
|
+
"datafusion-physical-plan",
|
|
783
|
+
"datafusion-session",
|
|
784
|
+
"datafusion-sql",
|
|
785
|
+
"futures",
|
|
786
|
+
"itertools",
|
|
787
|
+
"log",
|
|
788
|
+
"object_store",
|
|
789
|
+
"parking_lot",
|
|
790
|
+
"tokio",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "datafusion-catalog-listing"
|
|
795
|
+
version = "49.0.1"
|
|
796
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"arrow",
|
|
799
|
+
"async-trait",
|
|
800
|
+
"datafusion-catalog",
|
|
801
|
+
"datafusion-common",
|
|
802
|
+
"datafusion-datasource",
|
|
803
|
+
"datafusion-execution",
|
|
804
|
+
"datafusion-expr",
|
|
805
|
+
"datafusion-physical-expr",
|
|
806
|
+
"datafusion-physical-expr-common",
|
|
807
|
+
"datafusion-physical-plan",
|
|
808
|
+
"datafusion-session",
|
|
809
|
+
"futures",
|
|
810
|
+
"log",
|
|
811
|
+
"object_store",
|
|
812
|
+
"tokio",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "datafusion-common"
|
|
817
|
+
version = "49.0.1"
|
|
818
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"ahash",
|
|
821
|
+
"arrow",
|
|
822
|
+
"arrow-ipc",
|
|
823
|
+
"base64",
|
|
824
|
+
"chrono",
|
|
825
|
+
"half",
|
|
826
|
+
"hashbrown 0.14.5",
|
|
827
|
+
"hex",
|
|
828
|
+
"indexmap 2.12.0",
|
|
829
|
+
"libc",
|
|
830
|
+
"log",
|
|
831
|
+
"object_store",
|
|
832
|
+
"parquet",
|
|
833
|
+
"paste",
|
|
834
|
+
"recursive",
|
|
835
|
+
"sqlparser 0.55.0",
|
|
836
|
+
"tokio",
|
|
837
|
+
"web-time",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "datafusion-common-runtime"
|
|
842
|
+
version = "49.0.1"
|
|
843
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"futures",
|
|
846
|
+
"log",
|
|
847
|
+
"tokio",
|
|
848
|
+
]
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "datafusion-datasource"
|
|
852
|
+
version = "49.0.1"
|
|
853
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"arrow",
|
|
856
|
+
"async-compression",
|
|
857
|
+
"async-trait",
|
|
858
|
+
"bytes",
|
|
859
|
+
"bzip2 0.6.1",
|
|
860
|
+
"chrono",
|
|
861
|
+
"datafusion-common",
|
|
862
|
+
"datafusion-common-runtime",
|
|
863
|
+
"datafusion-execution",
|
|
864
|
+
"datafusion-expr",
|
|
865
|
+
"datafusion-physical-expr",
|
|
866
|
+
"datafusion-physical-expr-common",
|
|
867
|
+
"datafusion-physical-plan",
|
|
868
|
+
"datafusion-session",
|
|
869
|
+
"flate2",
|
|
870
|
+
"futures",
|
|
871
|
+
"glob",
|
|
872
|
+
"itertools",
|
|
873
|
+
"log",
|
|
874
|
+
"object_store",
|
|
875
|
+
"parquet",
|
|
876
|
+
"rand",
|
|
877
|
+
"tempfile",
|
|
878
|
+
"tokio",
|
|
879
|
+
"tokio-util",
|
|
880
|
+
"url",
|
|
881
|
+
"xz2",
|
|
882
|
+
"zstd",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "datafusion-datasource-csv"
|
|
887
|
+
version = "49.0.1"
|
|
888
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"arrow",
|
|
891
|
+
"async-trait",
|
|
892
|
+
"bytes",
|
|
893
|
+
"datafusion-catalog",
|
|
894
|
+
"datafusion-common",
|
|
895
|
+
"datafusion-common-runtime",
|
|
896
|
+
"datafusion-datasource",
|
|
897
|
+
"datafusion-execution",
|
|
898
|
+
"datafusion-expr",
|
|
899
|
+
"datafusion-physical-expr",
|
|
900
|
+
"datafusion-physical-expr-common",
|
|
901
|
+
"datafusion-physical-plan",
|
|
902
|
+
"datafusion-session",
|
|
903
|
+
"futures",
|
|
904
|
+
"object_store",
|
|
905
|
+
"regex",
|
|
906
|
+
"tokio",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "datafusion-datasource-json"
|
|
911
|
+
version = "49.0.1"
|
|
912
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"arrow",
|
|
915
|
+
"async-trait",
|
|
916
|
+
"bytes",
|
|
917
|
+
"datafusion-catalog",
|
|
918
|
+
"datafusion-common",
|
|
919
|
+
"datafusion-common-runtime",
|
|
920
|
+
"datafusion-datasource",
|
|
921
|
+
"datafusion-execution",
|
|
922
|
+
"datafusion-expr",
|
|
923
|
+
"datafusion-physical-expr",
|
|
924
|
+
"datafusion-physical-expr-common",
|
|
925
|
+
"datafusion-physical-plan",
|
|
926
|
+
"datafusion-session",
|
|
927
|
+
"futures",
|
|
928
|
+
"object_store",
|
|
929
|
+
"serde_json",
|
|
930
|
+
"tokio",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "datafusion-datasource-parquet"
|
|
935
|
+
version = "49.0.1"
|
|
936
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"arrow",
|
|
939
|
+
"async-trait",
|
|
940
|
+
"bytes",
|
|
941
|
+
"datafusion-catalog",
|
|
942
|
+
"datafusion-common",
|
|
943
|
+
"datafusion-common-runtime",
|
|
944
|
+
"datafusion-datasource",
|
|
945
|
+
"datafusion-execution",
|
|
946
|
+
"datafusion-expr",
|
|
947
|
+
"datafusion-functions-aggregate",
|
|
948
|
+
"datafusion-physical-expr",
|
|
949
|
+
"datafusion-physical-expr-common",
|
|
950
|
+
"datafusion-physical-optimizer",
|
|
951
|
+
"datafusion-physical-plan",
|
|
952
|
+
"datafusion-pruning",
|
|
953
|
+
"datafusion-session",
|
|
954
|
+
"futures",
|
|
955
|
+
"hex",
|
|
956
|
+
"itertools",
|
|
957
|
+
"log",
|
|
958
|
+
"object_store",
|
|
959
|
+
"parking_lot",
|
|
960
|
+
"parquet",
|
|
961
|
+
"rand",
|
|
962
|
+
"tokio",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "datafusion-doc"
|
|
967
|
+
version = "49.0.1"
|
|
968
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "datafusion-execution"
|
|
972
|
+
version = "49.0.1"
|
|
973
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"arrow",
|
|
976
|
+
"dashmap",
|
|
977
|
+
"datafusion-common",
|
|
978
|
+
"datafusion-expr",
|
|
979
|
+
"futures",
|
|
980
|
+
"log",
|
|
981
|
+
"object_store",
|
|
982
|
+
"parking_lot",
|
|
983
|
+
"rand",
|
|
984
|
+
"tempfile",
|
|
985
|
+
"url",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "datafusion-expr"
|
|
990
|
+
version = "49.0.1"
|
|
991
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"arrow",
|
|
994
|
+
"async-trait",
|
|
995
|
+
"chrono",
|
|
996
|
+
"datafusion-common",
|
|
997
|
+
"datafusion-doc",
|
|
998
|
+
"datafusion-expr-common",
|
|
999
|
+
"datafusion-functions-aggregate-common",
|
|
1000
|
+
"datafusion-functions-window-common",
|
|
1001
|
+
"datafusion-physical-expr-common",
|
|
1002
|
+
"indexmap 2.12.0",
|
|
1003
|
+
"paste",
|
|
1004
|
+
"recursive",
|
|
1005
|
+
"serde_json",
|
|
1006
|
+
"sqlparser 0.55.0",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "datafusion-expr-common"
|
|
1011
|
+
version = "49.0.1"
|
|
1012
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"arrow",
|
|
1015
|
+
"datafusion-common",
|
|
1016
|
+
"indexmap 2.12.0",
|
|
1017
|
+
"itertools",
|
|
1018
|
+
"paste",
|
|
1019
|
+
]
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "datafusion-functions"
|
|
1023
|
+
version = "49.0.1"
|
|
1024
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"arrow",
|
|
1027
|
+
"arrow-buffer",
|
|
1028
|
+
"base64",
|
|
1029
|
+
"blake2",
|
|
1030
|
+
"blake3",
|
|
1031
|
+
"chrono",
|
|
1032
|
+
"datafusion-common",
|
|
1033
|
+
"datafusion-doc",
|
|
1034
|
+
"datafusion-execution",
|
|
1035
|
+
"datafusion-expr",
|
|
1036
|
+
"datafusion-expr-common",
|
|
1037
|
+
"datafusion-macros",
|
|
1038
|
+
"hex",
|
|
1039
|
+
"itertools",
|
|
1040
|
+
"log",
|
|
1041
|
+
"md-5",
|
|
1042
|
+
"rand",
|
|
1043
|
+
"regex",
|
|
1044
|
+
"sha2",
|
|
1045
|
+
"unicode-segmentation",
|
|
1046
|
+
"uuid",
|
|
1047
|
+
]
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "datafusion-functions-aggregate"
|
|
1051
|
+
version = "49.0.1"
|
|
1052
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"ahash",
|
|
1055
|
+
"arrow",
|
|
1056
|
+
"datafusion-common",
|
|
1057
|
+
"datafusion-doc",
|
|
1058
|
+
"datafusion-execution",
|
|
1059
|
+
"datafusion-expr",
|
|
1060
|
+
"datafusion-functions-aggregate-common",
|
|
1061
|
+
"datafusion-macros",
|
|
1062
|
+
"datafusion-physical-expr",
|
|
1063
|
+
"datafusion-physical-expr-common",
|
|
1064
|
+
"half",
|
|
1065
|
+
"log",
|
|
1066
|
+
"paste",
|
|
1067
|
+
]
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "datafusion-functions-aggregate-common"
|
|
1071
|
+
version = "49.0.1"
|
|
1072
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"ahash",
|
|
1075
|
+
"arrow",
|
|
1076
|
+
"datafusion-common",
|
|
1077
|
+
"datafusion-expr-common",
|
|
1078
|
+
"datafusion-physical-expr-common",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "datafusion-functions-nested"
|
|
1083
|
+
version = "49.0.1"
|
|
1084
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1085
|
+
dependencies = [
|
|
1086
|
+
"arrow",
|
|
1087
|
+
"arrow-ord",
|
|
1088
|
+
"datafusion-common",
|
|
1089
|
+
"datafusion-doc",
|
|
1090
|
+
"datafusion-execution",
|
|
1091
|
+
"datafusion-expr",
|
|
1092
|
+
"datafusion-functions",
|
|
1093
|
+
"datafusion-functions-aggregate",
|
|
1094
|
+
"datafusion-functions-aggregate-common",
|
|
1095
|
+
"datafusion-macros",
|
|
1096
|
+
"datafusion-physical-expr-common",
|
|
1097
|
+
"itertools",
|
|
1098
|
+
"log",
|
|
1099
|
+
"paste",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "datafusion-functions-table"
|
|
1104
|
+
version = "49.0.1"
|
|
1105
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"arrow",
|
|
1108
|
+
"async-trait",
|
|
1109
|
+
"datafusion-catalog",
|
|
1110
|
+
"datafusion-common",
|
|
1111
|
+
"datafusion-expr",
|
|
1112
|
+
"datafusion-physical-plan",
|
|
1113
|
+
"parking_lot",
|
|
1114
|
+
"paste",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "datafusion-functions-window"
|
|
1119
|
+
version = "49.0.1"
|
|
1120
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"arrow",
|
|
1123
|
+
"datafusion-common",
|
|
1124
|
+
"datafusion-doc",
|
|
1125
|
+
"datafusion-expr",
|
|
1126
|
+
"datafusion-functions-window-common",
|
|
1127
|
+
"datafusion-macros",
|
|
1128
|
+
"datafusion-physical-expr",
|
|
1129
|
+
"datafusion-physical-expr-common",
|
|
1130
|
+
"log",
|
|
1131
|
+
"paste",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "datafusion-functions-window-common"
|
|
1136
|
+
version = "49.0.1"
|
|
1137
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1138
|
+
dependencies = [
|
|
1139
|
+
"datafusion-common",
|
|
1140
|
+
"datafusion-physical-expr-common",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "datafusion-macros"
|
|
1145
|
+
version = "49.0.1"
|
|
1146
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"datafusion-expr",
|
|
1149
|
+
"quote",
|
|
1150
|
+
"syn",
|
|
1151
|
+
]
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "datafusion-optimizer"
|
|
1155
|
+
version = "49.0.1"
|
|
1156
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"arrow",
|
|
1159
|
+
"chrono",
|
|
1160
|
+
"datafusion-common",
|
|
1161
|
+
"datafusion-expr",
|
|
1162
|
+
"datafusion-expr-common",
|
|
1163
|
+
"datafusion-physical-expr",
|
|
1164
|
+
"indexmap 2.12.0",
|
|
1165
|
+
"itertools",
|
|
1166
|
+
"log",
|
|
1167
|
+
"recursive",
|
|
1168
|
+
"regex",
|
|
1169
|
+
"regex-syntax",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "datafusion-physical-expr"
|
|
1174
|
+
version = "49.0.1"
|
|
1175
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"ahash",
|
|
1178
|
+
"arrow",
|
|
1179
|
+
"datafusion-common",
|
|
1180
|
+
"datafusion-expr",
|
|
1181
|
+
"datafusion-expr-common",
|
|
1182
|
+
"datafusion-functions-aggregate-common",
|
|
1183
|
+
"datafusion-physical-expr-common",
|
|
1184
|
+
"half",
|
|
1185
|
+
"hashbrown 0.14.5",
|
|
1186
|
+
"indexmap 2.12.0",
|
|
1187
|
+
"itertools",
|
|
1188
|
+
"log",
|
|
1189
|
+
"paste",
|
|
1190
|
+
"petgraph",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "datafusion-physical-expr-common"
|
|
1195
|
+
version = "49.0.1"
|
|
1196
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"ahash",
|
|
1199
|
+
"arrow",
|
|
1200
|
+
"datafusion-common",
|
|
1201
|
+
"datafusion-expr-common",
|
|
1202
|
+
"hashbrown 0.14.5",
|
|
1203
|
+
"itertools",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "datafusion-physical-optimizer"
|
|
1208
|
+
version = "49.0.1"
|
|
1209
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"arrow",
|
|
1212
|
+
"datafusion-common",
|
|
1213
|
+
"datafusion-execution",
|
|
1214
|
+
"datafusion-expr",
|
|
1215
|
+
"datafusion-expr-common",
|
|
1216
|
+
"datafusion-physical-expr",
|
|
1217
|
+
"datafusion-physical-expr-common",
|
|
1218
|
+
"datafusion-physical-plan",
|
|
1219
|
+
"datafusion-pruning",
|
|
1220
|
+
"itertools",
|
|
1221
|
+
"log",
|
|
1222
|
+
"recursive",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "datafusion-physical-plan"
|
|
1227
|
+
version = "49.0.1"
|
|
1228
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"ahash",
|
|
1231
|
+
"arrow",
|
|
1232
|
+
"arrow-ord",
|
|
1233
|
+
"arrow-schema",
|
|
1234
|
+
"async-trait",
|
|
1235
|
+
"chrono",
|
|
1236
|
+
"datafusion-common",
|
|
1237
|
+
"datafusion-common-runtime",
|
|
1238
|
+
"datafusion-execution",
|
|
1239
|
+
"datafusion-expr",
|
|
1240
|
+
"datafusion-functions-window-common",
|
|
1241
|
+
"datafusion-physical-expr",
|
|
1242
|
+
"datafusion-physical-expr-common",
|
|
1243
|
+
"futures",
|
|
1244
|
+
"half",
|
|
1245
|
+
"hashbrown 0.14.5",
|
|
1246
|
+
"indexmap 2.12.0",
|
|
1247
|
+
"itertools",
|
|
1248
|
+
"log",
|
|
1249
|
+
"parking_lot",
|
|
1250
|
+
"pin-project-lite",
|
|
1251
|
+
"tokio",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "datafusion-pruning"
|
|
1256
|
+
version = "49.0.1"
|
|
1257
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1258
|
+
dependencies = [
|
|
1259
|
+
"arrow",
|
|
1260
|
+
"arrow-schema",
|
|
1261
|
+
"datafusion-common",
|
|
1262
|
+
"datafusion-datasource",
|
|
1263
|
+
"datafusion-expr-common",
|
|
1264
|
+
"datafusion-physical-expr",
|
|
1265
|
+
"datafusion-physical-expr-common",
|
|
1266
|
+
"datafusion-physical-plan",
|
|
1267
|
+
"itertools",
|
|
1268
|
+
"log",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "datafusion-session"
|
|
1273
|
+
version = "49.0.1"
|
|
1274
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"arrow",
|
|
1277
|
+
"async-trait",
|
|
1278
|
+
"dashmap",
|
|
1279
|
+
"datafusion-common",
|
|
1280
|
+
"datafusion-common-runtime",
|
|
1281
|
+
"datafusion-execution",
|
|
1282
|
+
"datafusion-expr",
|
|
1283
|
+
"datafusion-physical-expr",
|
|
1284
|
+
"datafusion-physical-plan",
|
|
1285
|
+
"datafusion-sql",
|
|
1286
|
+
"futures",
|
|
1287
|
+
"itertools",
|
|
1288
|
+
"log",
|
|
1289
|
+
"object_store",
|
|
1290
|
+
"parking_lot",
|
|
1291
|
+
"tokio",
|
|
1292
|
+
]
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "datafusion-sql"
|
|
1296
|
+
version = "49.0.1"
|
|
1297
|
+
source = "git+https://github.com/Canner/datafusion.git?branch=canner%2Fv49.0.1#afff2bb587eeb002737d05688b0c6d7548179edc"
|
|
1298
|
+
dependencies = [
|
|
1299
|
+
"arrow",
|
|
1300
|
+
"bigdecimal",
|
|
1301
|
+
"datafusion-common",
|
|
1302
|
+
"datafusion-expr",
|
|
1303
|
+
"indexmap 2.12.0",
|
|
1304
|
+
"log",
|
|
1305
|
+
"recursive",
|
|
1306
|
+
"regex",
|
|
1307
|
+
"sqlparser 0.55.0",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "deranged"
|
|
1312
|
+
version = "0.5.5"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
1315
|
+
dependencies = [
|
|
1316
|
+
"powerfmt",
|
|
1317
|
+
"serde_core",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "digest"
|
|
1322
|
+
version = "0.10.7"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"block-buffer",
|
|
1327
|
+
"crypto-common",
|
|
1328
|
+
"subtle",
|
|
1329
|
+
]
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "displaydoc"
|
|
1333
|
+
version = "0.2.5"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"proc-macro2",
|
|
1338
|
+
"quote",
|
|
1339
|
+
"syn",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "dyn-clone"
|
|
1344
|
+
version = "1.0.20"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "either"
|
|
1350
|
+
version = "1.15.0"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "env_filter"
|
|
1356
|
+
version = "0.1.4"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"log",
|
|
1361
|
+
"regex",
|
|
1362
|
+
]
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "env_logger"
|
|
1366
|
+
version = "0.11.8"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
1369
|
+
dependencies = [
|
|
1370
|
+
"anstream",
|
|
1371
|
+
"anstyle",
|
|
1372
|
+
"env_filter",
|
|
1373
|
+
"jiff",
|
|
1374
|
+
"log",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "equivalent"
|
|
1379
|
+
version = "1.0.2"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "errno"
|
|
1385
|
+
version = "0.3.14"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"libc",
|
|
1390
|
+
"windows-sys 0.61.2",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "fastrand"
|
|
1395
|
+
version = "2.3.0"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "find-msvc-tools"
|
|
1401
|
+
version = "0.1.4"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "fixedbitset"
|
|
1407
|
+
version = "0.5.7"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "flatbuffers"
|
|
1413
|
+
version = "25.9.23"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "09b6620799e7340ebd9968d2e0708eb82cf1971e9a16821e2091b6d6e475eed5"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"bitflags",
|
|
1418
|
+
"rustc_version",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "flate2"
|
|
1423
|
+
version = "1.1.5"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"crc32fast",
|
|
1428
|
+
"libz-rs-sys",
|
|
1429
|
+
"miniz_oxide",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "fnv"
|
|
1434
|
+
version = "1.0.7"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "foldhash"
|
|
1440
|
+
version = "0.1.5"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1443
|
+
|
|
1444
|
+
[[package]]
|
|
1445
|
+
name = "form_urlencoded"
|
|
1446
|
+
version = "1.2.2"
|
|
1447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1449
|
+
dependencies = [
|
|
1450
|
+
"percent-encoding",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "futures"
|
|
1455
|
+
version = "0.3.31"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"futures-channel",
|
|
1460
|
+
"futures-core",
|
|
1461
|
+
"futures-executor",
|
|
1462
|
+
"futures-io",
|
|
1463
|
+
"futures-sink",
|
|
1464
|
+
"futures-task",
|
|
1465
|
+
"futures-util",
|
|
1466
|
+
]
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "futures-channel"
|
|
1470
|
+
version = "0.3.31"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1473
|
+
dependencies = [
|
|
1474
|
+
"futures-core",
|
|
1475
|
+
"futures-sink",
|
|
1476
|
+
]
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "futures-core"
|
|
1480
|
+
version = "0.3.31"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "futures-executor"
|
|
1486
|
+
version = "0.3.31"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"futures-core",
|
|
1491
|
+
"futures-task",
|
|
1492
|
+
"futures-util",
|
|
1493
|
+
]
|
|
1494
|
+
|
|
1495
|
+
[[package]]
|
|
1496
|
+
name = "futures-io"
|
|
1497
|
+
version = "0.3.31"
|
|
1498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1499
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "futures-macro"
|
|
1503
|
+
version = "0.3.31"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1506
|
+
dependencies = [
|
|
1507
|
+
"proc-macro2",
|
|
1508
|
+
"quote",
|
|
1509
|
+
"syn",
|
|
1510
|
+
]
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "futures-sink"
|
|
1514
|
+
version = "0.3.31"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "futures-task"
|
|
1520
|
+
version = "0.3.31"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "futures-timer"
|
|
1526
|
+
version = "3.0.3"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "futures-util"
|
|
1532
|
+
version = "0.3.31"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1535
|
+
dependencies = [
|
|
1536
|
+
"futures-channel",
|
|
1537
|
+
"futures-core",
|
|
1538
|
+
"futures-io",
|
|
1539
|
+
"futures-macro",
|
|
1540
|
+
"futures-sink",
|
|
1541
|
+
"futures-task",
|
|
1542
|
+
"memchr",
|
|
1543
|
+
"pin-project-lite",
|
|
1544
|
+
"pin-utils",
|
|
1545
|
+
"slab",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "generic-array"
|
|
1550
|
+
version = "0.14.9"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"typenum",
|
|
1555
|
+
"version_check",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "getrandom"
|
|
1560
|
+
version = "0.2.16"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"cfg-if",
|
|
1565
|
+
"js-sys",
|
|
1566
|
+
"libc",
|
|
1567
|
+
"wasi",
|
|
1568
|
+
"wasm-bindgen",
|
|
1569
|
+
]
|
|
1570
|
+
|
|
1571
|
+
[[package]]
|
|
1572
|
+
name = "getrandom"
|
|
1573
|
+
version = "0.3.4"
|
|
1574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1576
|
+
dependencies = [
|
|
1577
|
+
"cfg-if",
|
|
1578
|
+
"libc",
|
|
1579
|
+
"r-efi",
|
|
1580
|
+
"wasip2",
|
|
1581
|
+
]
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "glob"
|
|
1585
|
+
version = "0.3.3"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1588
|
+
|
|
1589
|
+
[[package]]
|
|
1590
|
+
name = "half"
|
|
1591
|
+
version = "2.7.1"
|
|
1592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1593
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1594
|
+
dependencies = [
|
|
1595
|
+
"cfg-if",
|
|
1596
|
+
"crunchy",
|
|
1597
|
+
"num-traits",
|
|
1598
|
+
"zerocopy",
|
|
1599
|
+
]
|
|
1600
|
+
|
|
1601
|
+
[[package]]
|
|
1602
|
+
name = "hashbrown"
|
|
1603
|
+
version = "0.12.3"
|
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "hashbrown"
|
|
1609
|
+
version = "0.14.5"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"ahash",
|
|
1614
|
+
"allocator-api2",
|
|
1615
|
+
]
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "hashbrown"
|
|
1619
|
+
version = "0.15.5"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"foldhash",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "hashbrown"
|
|
1628
|
+
version = "0.16.0"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "heck"
|
|
1634
|
+
version = "0.5.0"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "hex"
|
|
1640
|
+
version = "0.4.3"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "http"
|
|
1646
|
+
version = "1.3.1"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
1649
|
+
dependencies = [
|
|
1650
|
+
"bytes",
|
|
1651
|
+
"fnv",
|
|
1652
|
+
"itoa",
|
|
1653
|
+
]
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "humantime"
|
|
1657
|
+
version = "2.3.0"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "iana-time-zone"
|
|
1663
|
+
version = "0.1.64"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"android_system_properties",
|
|
1668
|
+
"core-foundation-sys",
|
|
1669
|
+
"iana-time-zone-haiku",
|
|
1670
|
+
"js-sys",
|
|
1671
|
+
"log",
|
|
1672
|
+
"wasm-bindgen",
|
|
1673
|
+
"windows-core",
|
|
1674
|
+
]
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "iana-time-zone-haiku"
|
|
1678
|
+
version = "0.1.2"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"cc",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "icu_collections"
|
|
1687
|
+
version = "2.1.1"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1690
|
+
dependencies = [
|
|
1691
|
+
"displaydoc",
|
|
1692
|
+
"potential_utf",
|
|
1693
|
+
"yoke",
|
|
1694
|
+
"zerofrom",
|
|
1695
|
+
"zerovec",
|
|
1696
|
+
]
|
|
1697
|
+
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "icu_locale_core"
|
|
1700
|
+
version = "2.1.1"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1703
|
+
dependencies = [
|
|
1704
|
+
"displaydoc",
|
|
1705
|
+
"litemap",
|
|
1706
|
+
"tinystr",
|
|
1707
|
+
"writeable",
|
|
1708
|
+
"zerovec",
|
|
1709
|
+
]
|
|
1710
|
+
|
|
1711
|
+
[[package]]
|
|
1712
|
+
name = "icu_normalizer"
|
|
1713
|
+
version = "2.1.1"
|
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1716
|
+
dependencies = [
|
|
1717
|
+
"icu_collections",
|
|
1718
|
+
"icu_normalizer_data",
|
|
1719
|
+
"icu_properties",
|
|
1720
|
+
"icu_provider",
|
|
1721
|
+
"smallvec",
|
|
1722
|
+
"zerovec",
|
|
1723
|
+
]
|
|
1724
|
+
|
|
1725
|
+
[[package]]
|
|
1726
|
+
name = "icu_normalizer_data"
|
|
1727
|
+
version = "2.1.1"
|
|
1728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "icu_properties"
|
|
1733
|
+
version = "2.1.1"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"icu_collections",
|
|
1738
|
+
"icu_locale_core",
|
|
1739
|
+
"icu_properties_data",
|
|
1740
|
+
"icu_provider",
|
|
1741
|
+
"zerotrie",
|
|
1742
|
+
"zerovec",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "icu_properties_data"
|
|
1747
|
+
version = "2.1.1"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "icu_provider"
|
|
1753
|
+
version = "2.1.1"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1756
|
+
dependencies = [
|
|
1757
|
+
"displaydoc",
|
|
1758
|
+
"icu_locale_core",
|
|
1759
|
+
"writeable",
|
|
1760
|
+
"yoke",
|
|
1761
|
+
"zerofrom",
|
|
1762
|
+
"zerotrie",
|
|
1763
|
+
"zerovec",
|
|
1764
|
+
]
|
|
1765
|
+
|
|
1766
|
+
[[package]]
|
|
1767
|
+
name = "ident_case"
|
|
1768
|
+
version = "1.0.1"
|
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1771
|
+
|
|
1772
|
+
[[package]]
|
|
1773
|
+
name = "idna"
|
|
1774
|
+
version = "1.1.0"
|
|
1775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1777
|
+
dependencies = [
|
|
1778
|
+
"idna_adapter",
|
|
1779
|
+
"smallvec",
|
|
1780
|
+
"utf8_iter",
|
|
1781
|
+
]
|
|
1782
|
+
|
|
1783
|
+
[[package]]
|
|
1784
|
+
name = "idna_adapter"
|
|
1785
|
+
version = "1.2.1"
|
|
1786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1787
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1788
|
+
dependencies = [
|
|
1789
|
+
"icu_normalizer",
|
|
1790
|
+
"icu_properties",
|
|
1791
|
+
]
|
|
1792
|
+
|
|
1793
|
+
[[package]]
|
|
1794
|
+
name = "indexmap"
|
|
1795
|
+
version = "1.9.3"
|
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1798
|
+
dependencies = [
|
|
1799
|
+
"autocfg",
|
|
1800
|
+
"hashbrown 0.12.3",
|
|
1801
|
+
"serde",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "indexmap"
|
|
1806
|
+
version = "2.12.0"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"equivalent",
|
|
1811
|
+
"hashbrown 0.16.0",
|
|
1812
|
+
"serde",
|
|
1813
|
+
"serde_core",
|
|
1814
|
+
]
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "indoc"
|
|
1818
|
+
version = "2.0.7"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1821
|
+
dependencies = [
|
|
1822
|
+
"rustversion",
|
|
1823
|
+
]
|
|
1824
|
+
|
|
1825
|
+
[[package]]
|
|
1826
|
+
name = "integer-encoding"
|
|
1827
|
+
version = "3.0.4"
|
|
1828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "is_terminal_polyfill"
|
|
1833
|
+
version = "1.70.2"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "itertools"
|
|
1839
|
+
version = "0.14.0"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"either",
|
|
1844
|
+
]
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "itoa"
|
|
1848
|
+
version = "1.0.15"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "jiff"
|
|
1854
|
+
version = "0.2.15"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"jiff-static",
|
|
1859
|
+
"log",
|
|
1860
|
+
"portable-atomic",
|
|
1861
|
+
"portable-atomic-util",
|
|
1862
|
+
"serde",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "jiff-static"
|
|
1867
|
+
version = "0.2.15"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"proc-macro2",
|
|
1872
|
+
"quote",
|
|
1873
|
+
"syn",
|
|
1874
|
+
]
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "jobserver"
|
|
1878
|
+
version = "0.1.34"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1881
|
+
dependencies = [
|
|
1882
|
+
"getrandom 0.3.4",
|
|
1883
|
+
"libc",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "js-sys"
|
|
1888
|
+
version = "0.3.82"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"once_cell",
|
|
1893
|
+
"wasm-bindgen",
|
|
1894
|
+
]
|
|
1895
|
+
|
|
1896
|
+
[[package]]
|
|
1897
|
+
name = "lexical-core"
|
|
1898
|
+
version = "1.0.6"
|
|
1899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1900
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
1901
|
+
dependencies = [
|
|
1902
|
+
"lexical-parse-float",
|
|
1903
|
+
"lexical-parse-integer",
|
|
1904
|
+
"lexical-util",
|
|
1905
|
+
"lexical-write-float",
|
|
1906
|
+
"lexical-write-integer",
|
|
1907
|
+
]
|
|
1908
|
+
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "lexical-parse-float"
|
|
1911
|
+
version = "1.0.6"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
1914
|
+
dependencies = [
|
|
1915
|
+
"lexical-parse-integer",
|
|
1916
|
+
"lexical-util",
|
|
1917
|
+
]
|
|
1918
|
+
|
|
1919
|
+
[[package]]
|
|
1920
|
+
name = "lexical-parse-integer"
|
|
1921
|
+
version = "1.0.6"
|
|
1922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
1924
|
+
dependencies = [
|
|
1925
|
+
"lexical-util",
|
|
1926
|
+
]
|
|
1927
|
+
|
|
1928
|
+
[[package]]
|
|
1929
|
+
name = "lexical-util"
|
|
1930
|
+
version = "1.0.7"
|
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "lexical-write-float"
|
|
1936
|
+
version = "1.0.6"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"lexical-util",
|
|
1941
|
+
"lexical-write-integer",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "lexical-write-integer"
|
|
1946
|
+
version = "1.0.6"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"lexical-util",
|
|
1951
|
+
]
|
|
1952
|
+
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "libbz2-rs-sys"
|
|
1955
|
+
version = "0.2.2"
|
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
+
checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
|
1958
|
+
|
|
1959
|
+
[[package]]
|
|
1960
|
+
name = "libc"
|
|
1961
|
+
version = "0.2.177"
|
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "libm"
|
|
1967
|
+
version = "0.2.15"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "libz-rs-sys"
|
|
1973
|
+
version = "0.5.2"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
|
|
1976
|
+
dependencies = [
|
|
1977
|
+
"zlib-rs",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "linux-raw-sys"
|
|
1982
|
+
version = "0.11.0"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "litemap"
|
|
1988
|
+
version = "0.8.1"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1991
|
+
|
|
1992
|
+
[[package]]
|
|
1993
|
+
name = "lock_api"
|
|
1994
|
+
version = "0.4.14"
|
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1997
|
+
dependencies = [
|
|
1998
|
+
"scopeguard",
|
|
1999
|
+
]
|
|
2000
|
+
|
|
2001
|
+
[[package]]
|
|
2002
|
+
name = "log"
|
|
2003
|
+
version = "0.4.28"
|
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "lz4_flex"
|
|
2009
|
+
version = "0.11.6"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"twox-hash",
|
|
2014
|
+
]
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "lzma-sys"
|
|
2018
|
+
version = "0.1.20"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"cc",
|
|
2023
|
+
"libc",
|
|
2024
|
+
"pkg-config",
|
|
2025
|
+
]
|
|
2026
|
+
|
|
2027
|
+
[[package]]
|
|
2028
|
+
name = "md-5"
|
|
2029
|
+
version = "0.10.6"
|
|
2030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2031
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
2032
|
+
dependencies = [
|
|
2033
|
+
"cfg-if",
|
|
2034
|
+
"digest",
|
|
2035
|
+
]
|
|
2036
|
+
|
|
2037
|
+
[[package]]
|
|
2038
|
+
name = "memchr"
|
|
2039
|
+
version = "2.7.6"
|
|
2040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
2042
|
+
|
|
2043
|
+
[[package]]
|
|
2044
|
+
name = "memoffset"
|
|
2045
|
+
version = "0.9.1"
|
|
2046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2048
|
+
dependencies = [
|
|
2049
|
+
"autocfg",
|
|
2050
|
+
]
|
|
2051
|
+
|
|
2052
|
+
[[package]]
|
|
2053
|
+
name = "miniz_oxide"
|
|
2054
|
+
version = "0.8.9"
|
|
2055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2057
|
+
dependencies = [
|
|
2058
|
+
"adler2",
|
|
2059
|
+
"simd-adler32",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "num"
|
|
2064
|
+
version = "0.4.3"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"num-bigint",
|
|
2069
|
+
"num-complex",
|
|
2070
|
+
"num-integer",
|
|
2071
|
+
"num-iter",
|
|
2072
|
+
"num-rational",
|
|
2073
|
+
"num-traits",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "num-bigint"
|
|
2078
|
+
version = "0.4.6"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2081
|
+
dependencies = [
|
|
2082
|
+
"num-integer",
|
|
2083
|
+
"num-traits",
|
|
2084
|
+
]
|
|
2085
|
+
|
|
2086
|
+
[[package]]
|
|
2087
|
+
name = "num-complex"
|
|
2088
|
+
version = "0.4.6"
|
|
2089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2090
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
2091
|
+
dependencies = [
|
|
2092
|
+
"num-traits",
|
|
2093
|
+
]
|
|
2094
|
+
|
|
2095
|
+
[[package]]
|
|
2096
|
+
name = "num-conv"
|
|
2097
|
+
version = "0.2.0"
|
|
2098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
+
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "num-integer"
|
|
2103
|
+
version = "0.1.46"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"num-traits",
|
|
2108
|
+
]
|
|
2109
|
+
|
|
2110
|
+
[[package]]
|
|
2111
|
+
name = "num-iter"
|
|
2112
|
+
version = "0.1.45"
|
|
2113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
2115
|
+
dependencies = [
|
|
2116
|
+
"autocfg",
|
|
2117
|
+
"num-integer",
|
|
2118
|
+
"num-traits",
|
|
2119
|
+
]
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "num-rational"
|
|
2123
|
+
version = "0.4.2"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
2126
|
+
dependencies = [
|
|
2127
|
+
"num-bigint",
|
|
2128
|
+
"num-integer",
|
|
2129
|
+
"num-traits",
|
|
2130
|
+
]
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "num-traits"
|
|
2134
|
+
version = "0.2.19"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2137
|
+
dependencies = [
|
|
2138
|
+
"autocfg",
|
|
2139
|
+
"libm",
|
|
2140
|
+
]
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "object"
|
|
2144
|
+
version = "0.32.2"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
2147
|
+
dependencies = [
|
|
2148
|
+
"memchr",
|
|
2149
|
+
]
|
|
2150
|
+
|
|
2151
|
+
[[package]]
|
|
2152
|
+
name = "object_store"
|
|
2153
|
+
version = "0.12.4"
|
|
2154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2155
|
+
checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740"
|
|
2156
|
+
dependencies = [
|
|
2157
|
+
"async-trait",
|
|
2158
|
+
"bytes",
|
|
2159
|
+
"chrono",
|
|
2160
|
+
"futures",
|
|
2161
|
+
"http",
|
|
2162
|
+
"humantime",
|
|
2163
|
+
"itertools",
|
|
2164
|
+
"parking_lot",
|
|
2165
|
+
"percent-encoding",
|
|
2166
|
+
"thiserror",
|
|
2167
|
+
"tokio",
|
|
2168
|
+
"tracing",
|
|
2169
|
+
"url",
|
|
2170
|
+
"walkdir",
|
|
2171
|
+
"wasm-bindgen-futures",
|
|
2172
|
+
"web-time",
|
|
2173
|
+
]
|
|
2174
|
+
|
|
2175
|
+
[[package]]
|
|
2176
|
+
name = "once_cell"
|
|
2177
|
+
version = "1.21.3"
|
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2180
|
+
|
|
2181
|
+
[[package]]
|
|
2182
|
+
name = "once_cell_polyfill"
|
|
2183
|
+
version = "1.70.2"
|
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "ordered-float"
|
|
2189
|
+
version = "2.10.1"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
2192
|
+
dependencies = [
|
|
2193
|
+
"num-traits",
|
|
2194
|
+
]
|
|
2195
|
+
|
|
2196
|
+
[[package]]
|
|
2197
|
+
name = "parking_lot"
|
|
2198
|
+
version = "0.12.5"
|
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2201
|
+
dependencies = [
|
|
2202
|
+
"lock_api",
|
|
2203
|
+
"parking_lot_core",
|
|
2204
|
+
]
|
|
2205
|
+
|
|
2206
|
+
[[package]]
|
|
2207
|
+
name = "parking_lot_core"
|
|
2208
|
+
version = "0.9.12"
|
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2211
|
+
dependencies = [
|
|
2212
|
+
"cfg-if",
|
|
2213
|
+
"libc",
|
|
2214
|
+
"redox_syscall",
|
|
2215
|
+
"smallvec",
|
|
2216
|
+
"windows-link",
|
|
2217
|
+
]
|
|
2218
|
+
|
|
2219
|
+
[[package]]
|
|
2220
|
+
name = "parquet"
|
|
2221
|
+
version = "55.2.0"
|
|
2222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
+
checksum = "b17da4150748086bd43352bc77372efa9b6e3dbd06a04831d2a98c041c225cfa"
|
|
2224
|
+
dependencies = [
|
|
2225
|
+
"ahash",
|
|
2226
|
+
"arrow-array",
|
|
2227
|
+
"arrow-buffer",
|
|
2228
|
+
"arrow-cast",
|
|
2229
|
+
"arrow-data",
|
|
2230
|
+
"arrow-ipc",
|
|
2231
|
+
"arrow-schema",
|
|
2232
|
+
"arrow-select",
|
|
2233
|
+
"base64",
|
|
2234
|
+
"brotli",
|
|
2235
|
+
"bytes",
|
|
2236
|
+
"chrono",
|
|
2237
|
+
"flate2",
|
|
2238
|
+
"futures",
|
|
2239
|
+
"half",
|
|
2240
|
+
"hashbrown 0.15.5",
|
|
2241
|
+
"lz4_flex",
|
|
2242
|
+
"num",
|
|
2243
|
+
"num-bigint",
|
|
2244
|
+
"object_store",
|
|
2245
|
+
"paste",
|
|
2246
|
+
"ring",
|
|
2247
|
+
"seq-macro",
|
|
2248
|
+
"simdutf8",
|
|
2249
|
+
"snap",
|
|
2250
|
+
"thrift",
|
|
2251
|
+
"tokio",
|
|
2252
|
+
"twox-hash",
|
|
2253
|
+
"zstd",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "paste"
|
|
2258
|
+
version = "1.0.15"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "percent-encoding"
|
|
2264
|
+
version = "2.3.2"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "petgraph"
|
|
2270
|
+
version = "0.8.3"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"fixedbitset",
|
|
2275
|
+
"hashbrown 0.15.5",
|
|
2276
|
+
"indexmap 2.12.0",
|
|
2277
|
+
"serde",
|
|
2278
|
+
]
|
|
2279
|
+
|
|
2280
|
+
[[package]]
|
|
2281
|
+
name = "petgraph-evcxr"
|
|
2282
|
+
version = "0.2.0"
|
|
2283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
+
checksum = "4c164f0ab4e02b69ff6172de80d9c1a31a9dd21c15c7b728b632442a19c9fd96"
|
|
2285
|
+
dependencies = [
|
|
2286
|
+
"base64",
|
|
2287
|
+
"petgraph",
|
|
2288
|
+
]
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "phf"
|
|
2292
|
+
version = "0.12.1"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
2295
|
+
dependencies = [
|
|
2296
|
+
"phf_shared",
|
|
2297
|
+
]
|
|
2298
|
+
|
|
2299
|
+
[[package]]
|
|
2300
|
+
name = "phf_shared"
|
|
2301
|
+
version = "0.12.1"
|
|
2302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2303
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
2304
|
+
dependencies = [
|
|
2305
|
+
"siphasher",
|
|
2306
|
+
]
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "pin-project-lite"
|
|
2310
|
+
version = "0.2.16"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2313
|
+
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "pin-utils"
|
|
2316
|
+
version = "0.1.0"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2319
|
+
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "pkg-config"
|
|
2322
|
+
version = "0.3.32"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2325
|
+
|
|
2326
|
+
[[package]]
|
|
2327
|
+
name = "portable-atomic"
|
|
2328
|
+
version = "1.11.1"
|
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
2331
|
+
|
|
2332
|
+
[[package]]
|
|
2333
|
+
name = "portable-atomic-util"
|
|
2334
|
+
version = "0.2.4"
|
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2336
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2337
|
+
dependencies = [
|
|
2338
|
+
"portable-atomic",
|
|
2339
|
+
]
|
|
2340
|
+
|
|
2341
|
+
[[package]]
|
|
2342
|
+
name = "potential_utf"
|
|
2343
|
+
version = "0.1.4"
|
|
2344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2345
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2346
|
+
dependencies = [
|
|
2347
|
+
"zerovec",
|
|
2348
|
+
]
|
|
2349
|
+
|
|
2350
|
+
[[package]]
|
|
2351
|
+
name = "powerfmt"
|
|
2352
|
+
version = "0.2.0"
|
|
2353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2355
|
+
|
|
2356
|
+
[[package]]
|
|
2357
|
+
name = "ppv-lite86"
|
|
2358
|
+
version = "0.2.21"
|
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2361
|
+
dependencies = [
|
|
2362
|
+
"zerocopy",
|
|
2363
|
+
]
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "proc-macro-crate"
|
|
2367
|
+
version = "3.4.0"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
2370
|
+
dependencies = [
|
|
2371
|
+
"toml_edit",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "proc-macro2"
|
|
2376
|
+
version = "1.0.103"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"unicode-ident",
|
|
2381
|
+
]
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "psm"
|
|
2385
|
+
version = "0.1.28"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01"
|
|
2388
|
+
dependencies = [
|
|
2389
|
+
"ar_archive_writer",
|
|
2390
|
+
"cc",
|
|
2391
|
+
]
|
|
2392
|
+
|
|
2393
|
+
[[package]]
|
|
2394
|
+
name = "pyo3"
|
|
2395
|
+
version = "0.26.0"
|
|
2396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2397
|
+
checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
|
|
2398
|
+
dependencies = [
|
|
2399
|
+
"indoc",
|
|
2400
|
+
"libc",
|
|
2401
|
+
"memoffset",
|
|
2402
|
+
"once_cell",
|
|
2403
|
+
"portable-atomic",
|
|
2404
|
+
"pyo3-build-config 0.26.0",
|
|
2405
|
+
"pyo3-ffi",
|
|
2406
|
+
"pyo3-macros",
|
|
2407
|
+
"unindent",
|
|
2408
|
+
]
|
|
2409
|
+
|
|
2410
|
+
[[package]]
|
|
2411
|
+
name = "pyo3-build-config"
|
|
2412
|
+
version = "0.23.5"
|
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
2415
|
+
dependencies = [
|
|
2416
|
+
"once_cell",
|
|
2417
|
+
"target-lexicon 0.12.16",
|
|
2418
|
+
]
|
|
2419
|
+
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "pyo3-build-config"
|
|
2422
|
+
version = "0.26.0"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"target-lexicon 0.13.3",
|
|
2427
|
+
]
|
|
2428
|
+
|
|
2429
|
+
[[package]]
|
|
2430
|
+
name = "pyo3-ffi"
|
|
2431
|
+
version = "0.26.0"
|
|
2432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2433
|
+
checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
|
|
2434
|
+
dependencies = [
|
|
2435
|
+
"libc",
|
|
2436
|
+
"pyo3-build-config 0.26.0",
|
|
2437
|
+
]
|
|
2438
|
+
|
|
2439
|
+
[[package]]
|
|
2440
|
+
name = "pyo3-macros"
|
|
2441
|
+
version = "0.26.0"
|
|
2442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
+
checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
|
|
2444
|
+
dependencies = [
|
|
2445
|
+
"proc-macro2",
|
|
2446
|
+
"pyo3-macros-backend",
|
|
2447
|
+
"quote",
|
|
2448
|
+
"syn",
|
|
2449
|
+
]
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "pyo3-macros-backend"
|
|
2453
|
+
version = "0.26.0"
|
|
2454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
+
checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
|
|
2456
|
+
dependencies = [
|
|
2457
|
+
"heck",
|
|
2458
|
+
"proc-macro2",
|
|
2459
|
+
"pyo3-build-config 0.26.0",
|
|
2460
|
+
"quote",
|
|
2461
|
+
"syn",
|
|
2462
|
+
]
|
|
2463
|
+
|
|
2464
|
+
[[package]]
|
|
2465
|
+
name = "quote"
|
|
2466
|
+
version = "1.0.41"
|
|
2467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
2469
|
+
dependencies = [
|
|
2470
|
+
"proc-macro2",
|
|
2471
|
+
]
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "r-efi"
|
|
2475
|
+
version = "5.3.0"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2478
|
+
|
|
2479
|
+
[[package]]
|
|
2480
|
+
name = "rand"
|
|
2481
|
+
version = "0.9.2"
|
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2484
|
+
dependencies = [
|
|
2485
|
+
"rand_chacha",
|
|
2486
|
+
"rand_core",
|
|
2487
|
+
]
|
|
2488
|
+
|
|
2489
|
+
[[package]]
|
|
2490
|
+
name = "rand_chacha"
|
|
2491
|
+
version = "0.9.0"
|
|
2492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2494
|
+
dependencies = [
|
|
2495
|
+
"ppv-lite86",
|
|
2496
|
+
"rand_core",
|
|
2497
|
+
]
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "rand_core"
|
|
2501
|
+
version = "0.9.3"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2504
|
+
dependencies = [
|
|
2505
|
+
"getrandom 0.3.4",
|
|
2506
|
+
]
|
|
2507
|
+
|
|
2508
|
+
[[package]]
|
|
2509
|
+
name = "recursive"
|
|
2510
|
+
version = "0.1.1"
|
|
2511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
+
checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
|
|
2513
|
+
dependencies = [
|
|
2514
|
+
"recursive-proc-macro-impl",
|
|
2515
|
+
"stacker",
|
|
2516
|
+
]
|
|
2517
|
+
|
|
2518
|
+
[[package]]
|
|
2519
|
+
name = "recursive-proc-macro-impl"
|
|
2520
|
+
version = "0.1.1"
|
|
2521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2522
|
+
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
|
2523
|
+
dependencies = [
|
|
2524
|
+
"quote",
|
|
2525
|
+
"syn",
|
|
2526
|
+
]
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "redox_syscall"
|
|
2530
|
+
version = "0.5.18"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"bitflags",
|
|
2535
|
+
]
|
|
2536
|
+
|
|
2537
|
+
[[package]]
|
|
2538
|
+
name = "ref-cast"
|
|
2539
|
+
version = "1.0.25"
|
|
2540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2541
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2542
|
+
dependencies = [
|
|
2543
|
+
"ref-cast-impl",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "ref-cast-impl"
|
|
2548
|
+
version = "1.0.25"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2551
|
+
dependencies = [
|
|
2552
|
+
"proc-macro2",
|
|
2553
|
+
"quote",
|
|
2554
|
+
"syn",
|
|
2555
|
+
]
|
|
2556
|
+
|
|
2557
|
+
[[package]]
|
|
2558
|
+
name = "regex"
|
|
2559
|
+
version = "1.12.2"
|
|
2560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2561
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
2562
|
+
dependencies = [
|
|
2563
|
+
"aho-corasick",
|
|
2564
|
+
"memchr",
|
|
2565
|
+
"regex-automata",
|
|
2566
|
+
"regex-syntax",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "regex-automata"
|
|
2571
|
+
version = "0.4.13"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"aho-corasick",
|
|
2576
|
+
"memchr",
|
|
2577
|
+
"regex-syntax",
|
|
2578
|
+
]
|
|
2579
|
+
|
|
2580
|
+
[[package]]
|
|
2581
|
+
name = "regex-syntax"
|
|
2582
|
+
version = "0.8.8"
|
|
2583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2585
|
+
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "relative-path"
|
|
2588
|
+
version = "1.9.3"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
2591
|
+
|
|
2592
|
+
[[package]]
|
|
2593
|
+
name = "ring"
|
|
2594
|
+
version = "0.17.14"
|
|
2595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2596
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2597
|
+
dependencies = [
|
|
2598
|
+
"cc",
|
|
2599
|
+
"cfg-if",
|
|
2600
|
+
"getrandom 0.2.16",
|
|
2601
|
+
"libc",
|
|
2602
|
+
"untrusted",
|
|
2603
|
+
"windows-sys 0.52.0",
|
|
2604
|
+
]
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "rstest"
|
|
2608
|
+
version = "0.23.0"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035"
|
|
2611
|
+
dependencies = [
|
|
2612
|
+
"futures",
|
|
2613
|
+
"futures-timer",
|
|
2614
|
+
"rstest_macros",
|
|
2615
|
+
"rustc_version",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "rstest_macros"
|
|
2620
|
+
version = "0.23.0"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a"
|
|
2623
|
+
dependencies = [
|
|
2624
|
+
"cfg-if",
|
|
2625
|
+
"glob",
|
|
2626
|
+
"proc-macro-crate",
|
|
2627
|
+
"proc-macro2",
|
|
2628
|
+
"quote",
|
|
2629
|
+
"regex",
|
|
2630
|
+
"relative-path",
|
|
2631
|
+
"rustc_version",
|
|
2632
|
+
"syn",
|
|
2633
|
+
"unicode-ident",
|
|
2634
|
+
]
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "rustc_version"
|
|
2638
|
+
version = "0.4.1"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"semver",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "rustix"
|
|
2647
|
+
version = "1.1.2"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"bitflags",
|
|
2652
|
+
"errno",
|
|
2653
|
+
"libc",
|
|
2654
|
+
"linux-raw-sys",
|
|
2655
|
+
"windows-sys 0.61.2",
|
|
2656
|
+
]
|
|
2657
|
+
|
|
2658
|
+
[[package]]
|
|
2659
|
+
name = "rustversion"
|
|
2660
|
+
version = "1.0.22"
|
|
2661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2662
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "ryu"
|
|
2666
|
+
version = "1.0.20"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2669
|
+
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "same-file"
|
|
2672
|
+
version = "1.0.6"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2675
|
+
dependencies = [
|
|
2676
|
+
"winapi-util",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "schemars"
|
|
2681
|
+
version = "0.9.0"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
2684
|
+
dependencies = [
|
|
2685
|
+
"dyn-clone",
|
|
2686
|
+
"ref-cast",
|
|
2687
|
+
"serde",
|
|
2688
|
+
"serde_json",
|
|
2689
|
+
]
|
|
2690
|
+
|
|
2691
|
+
[[package]]
|
|
2692
|
+
name = "schemars"
|
|
2693
|
+
version = "1.0.4"
|
|
2694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2695
|
+
checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
|
|
2696
|
+
dependencies = [
|
|
2697
|
+
"dyn-clone",
|
|
2698
|
+
"ref-cast",
|
|
2699
|
+
"serde",
|
|
2700
|
+
"serde_json",
|
|
2701
|
+
]
|
|
2702
|
+
|
|
2703
|
+
[[package]]
|
|
2704
|
+
name = "scopeguard"
|
|
2705
|
+
version = "1.2.0"
|
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2708
|
+
|
|
2709
|
+
[[package]]
|
|
2710
|
+
name = "semver"
|
|
2711
|
+
version = "1.0.27"
|
|
2712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2714
|
+
|
|
2715
|
+
[[package]]
|
|
2716
|
+
name = "seq-macro"
|
|
2717
|
+
version = "0.3.6"
|
|
2718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2719
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2720
|
+
|
|
2721
|
+
[[package]]
|
|
2722
|
+
name = "serde"
|
|
2723
|
+
version = "1.0.228"
|
|
2724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2726
|
+
dependencies = [
|
|
2727
|
+
"serde_core",
|
|
2728
|
+
"serde_derive",
|
|
2729
|
+
]
|
|
2730
|
+
|
|
2731
|
+
[[package]]
|
|
2732
|
+
name = "serde_core"
|
|
2733
|
+
version = "1.0.228"
|
|
2734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2736
|
+
dependencies = [
|
|
2737
|
+
"serde_derive",
|
|
2738
|
+
]
|
|
2739
|
+
|
|
2740
|
+
[[package]]
|
|
2741
|
+
name = "serde_derive"
|
|
2742
|
+
version = "1.0.228"
|
|
2743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2744
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2745
|
+
dependencies = [
|
|
2746
|
+
"proc-macro2",
|
|
2747
|
+
"quote",
|
|
2748
|
+
"syn",
|
|
2749
|
+
]
|
|
2750
|
+
|
|
2751
|
+
[[package]]
|
|
2752
|
+
name = "serde_json"
|
|
2753
|
+
version = "1.0.145"
|
|
2754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2755
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
2756
|
+
dependencies = [
|
|
2757
|
+
"itoa",
|
|
2758
|
+
"memchr",
|
|
2759
|
+
"ryu",
|
|
2760
|
+
"serde",
|
|
2761
|
+
"serde_core",
|
|
2762
|
+
]
|
|
2763
|
+
|
|
2764
|
+
[[package]]
|
|
2765
|
+
name = "serde_with"
|
|
2766
|
+
version = "3.15.1"
|
|
2767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2768
|
+
checksum = "aa66c845eee442168b2c8134fec70ac50dc20e760769c8ba0ad1319ca1959b04"
|
|
2769
|
+
dependencies = [
|
|
2770
|
+
"base64",
|
|
2771
|
+
"chrono",
|
|
2772
|
+
"hex",
|
|
2773
|
+
"indexmap 1.9.3",
|
|
2774
|
+
"indexmap 2.12.0",
|
|
2775
|
+
"schemars 0.9.0",
|
|
2776
|
+
"schemars 1.0.4",
|
|
2777
|
+
"serde_core",
|
|
2778
|
+
"serde_json",
|
|
2779
|
+
"serde_with_macros",
|
|
2780
|
+
"time",
|
|
2781
|
+
]
|
|
2782
|
+
|
|
2783
|
+
[[package]]
|
|
2784
|
+
name = "serde_with_macros"
|
|
2785
|
+
version = "3.15.1"
|
|
2786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2787
|
+
checksum = "b91a903660542fced4e99881aa481bdbaec1634568ee02e0b8bd57c64cb38955"
|
|
2788
|
+
dependencies = [
|
|
2789
|
+
"darling",
|
|
2790
|
+
"proc-macro2",
|
|
2791
|
+
"quote",
|
|
2792
|
+
"syn",
|
|
2793
|
+
]
|
|
2794
|
+
|
|
2795
|
+
[[package]]
|
|
2796
|
+
name = "sha2"
|
|
2797
|
+
version = "0.10.9"
|
|
2798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2800
|
+
dependencies = [
|
|
2801
|
+
"cfg-if",
|
|
2802
|
+
"cpufeatures",
|
|
2803
|
+
"digest",
|
|
2804
|
+
]
|
|
2805
|
+
|
|
2806
|
+
[[package]]
|
|
2807
|
+
name = "shlex"
|
|
2808
|
+
version = "1.3.0"
|
|
2809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2811
|
+
|
|
2812
|
+
[[package]]
|
|
2813
|
+
name = "simd-adler32"
|
|
2814
|
+
version = "0.3.7"
|
|
2815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2817
|
+
|
|
2818
|
+
[[package]]
|
|
2819
|
+
name = "simdutf8"
|
|
2820
|
+
version = "0.1.5"
|
|
2821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2822
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
2823
|
+
|
|
2824
|
+
[[package]]
|
|
2825
|
+
name = "siphasher"
|
|
2826
|
+
version = "1.0.1"
|
|
2827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2828
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2829
|
+
|
|
2830
|
+
[[package]]
|
|
2831
|
+
name = "slab"
|
|
2832
|
+
version = "0.4.11"
|
|
2833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2834
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2835
|
+
|
|
2836
|
+
[[package]]
|
|
2837
|
+
name = "smallvec"
|
|
2838
|
+
version = "1.15.1"
|
|
2839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2841
|
+
|
|
2842
|
+
[[package]]
|
|
2843
|
+
name = "snap"
|
|
2844
|
+
version = "1.1.1"
|
|
2845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
2847
|
+
|
|
2848
|
+
[[package]]
|
|
2849
|
+
name = "sqlparser"
|
|
2850
|
+
version = "0.55.0"
|
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
+
checksum = "c4521174166bac1ff04fe16ef4524c70144cd29682a45978978ca3d7f4e0be11"
|
|
2853
|
+
dependencies = [
|
|
2854
|
+
"log",
|
|
2855
|
+
"recursive",
|
|
2856
|
+
"sqlparser_derive",
|
|
2857
|
+
]
|
|
2858
|
+
|
|
2859
|
+
[[package]]
|
|
2860
|
+
name = "sqlparser"
|
|
2861
|
+
version = "0.58.0"
|
|
2862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2863
|
+
checksum = "ec4b661c54b1e4b603b37873a18c59920e4c51ea8ea2cf527d925424dbd4437c"
|
|
2864
|
+
dependencies = [
|
|
2865
|
+
"log",
|
|
2866
|
+
"recursive",
|
|
2867
|
+
"sqlparser_derive",
|
|
2868
|
+
]
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "sqlparser_derive"
|
|
2872
|
+
version = "0.3.0"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
|
|
2875
|
+
dependencies = [
|
|
2876
|
+
"proc-macro2",
|
|
2877
|
+
"quote",
|
|
2878
|
+
"syn",
|
|
2879
|
+
]
|
|
2880
|
+
|
|
2881
|
+
[[package]]
|
|
2882
|
+
name = "stable_deref_trait"
|
|
2883
|
+
version = "1.2.1"
|
|
2884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2885
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2886
|
+
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "stacker"
|
|
2889
|
+
version = "0.1.22"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"cc",
|
|
2894
|
+
"cfg-if",
|
|
2895
|
+
"libc",
|
|
2896
|
+
"psm",
|
|
2897
|
+
"windows-sys 0.59.0",
|
|
2898
|
+
]
|
|
2899
|
+
|
|
2900
|
+
[[package]]
|
|
2901
|
+
name = "strsim"
|
|
2902
|
+
version = "0.11.1"
|
|
2903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2905
|
+
|
|
2906
|
+
[[package]]
|
|
2907
|
+
name = "subtle"
|
|
2908
|
+
version = "2.6.1"
|
|
2909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2911
|
+
|
|
2912
|
+
[[package]]
|
|
2913
|
+
name = "syn"
|
|
2914
|
+
version = "2.0.108"
|
|
2915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2916
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
2917
|
+
dependencies = [
|
|
2918
|
+
"proc-macro2",
|
|
2919
|
+
"quote",
|
|
2920
|
+
"unicode-ident",
|
|
2921
|
+
]
|
|
2922
|
+
|
|
2923
|
+
[[package]]
|
|
2924
|
+
name = "synstructure"
|
|
2925
|
+
version = "0.13.2"
|
|
2926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2928
|
+
dependencies = [
|
|
2929
|
+
"proc-macro2",
|
|
2930
|
+
"quote",
|
|
2931
|
+
"syn",
|
|
2932
|
+
]
|
|
2933
|
+
|
|
2934
|
+
[[package]]
|
|
2935
|
+
name = "target-lexicon"
|
|
2936
|
+
version = "0.12.16"
|
|
2937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2939
|
+
|
|
2940
|
+
[[package]]
|
|
2941
|
+
name = "target-lexicon"
|
|
2942
|
+
version = "0.13.3"
|
|
2943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2944
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
2945
|
+
|
|
2946
|
+
[[package]]
|
|
2947
|
+
name = "tempfile"
|
|
2948
|
+
version = "3.23.0"
|
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
2951
|
+
dependencies = [
|
|
2952
|
+
"fastrand",
|
|
2953
|
+
"getrandom 0.3.4",
|
|
2954
|
+
"once_cell",
|
|
2955
|
+
"rustix",
|
|
2956
|
+
"windows-sys 0.61.2",
|
|
2957
|
+
]
|
|
2958
|
+
|
|
2959
|
+
[[package]]
|
|
2960
|
+
name = "thiserror"
|
|
2961
|
+
version = "2.0.17"
|
|
2962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2963
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
2964
|
+
dependencies = [
|
|
2965
|
+
"thiserror-impl",
|
|
2966
|
+
]
|
|
2967
|
+
|
|
2968
|
+
[[package]]
|
|
2969
|
+
name = "thiserror-impl"
|
|
2970
|
+
version = "2.0.17"
|
|
2971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2972
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
2973
|
+
dependencies = [
|
|
2974
|
+
"proc-macro2",
|
|
2975
|
+
"quote",
|
|
2976
|
+
"syn",
|
|
2977
|
+
]
|
|
2978
|
+
|
|
2979
|
+
[[package]]
|
|
2980
|
+
name = "thrift"
|
|
2981
|
+
version = "0.17.0"
|
|
2982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
2984
|
+
dependencies = [
|
|
2985
|
+
"byteorder",
|
|
2986
|
+
"integer-encoding",
|
|
2987
|
+
"ordered-float",
|
|
2988
|
+
]
|
|
2989
|
+
|
|
2990
|
+
[[package]]
|
|
2991
|
+
name = "time"
|
|
2992
|
+
version = "0.3.47"
|
|
2993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2994
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
2995
|
+
dependencies = [
|
|
2996
|
+
"deranged",
|
|
2997
|
+
"itoa",
|
|
2998
|
+
"num-conv",
|
|
2999
|
+
"powerfmt",
|
|
3000
|
+
"serde_core",
|
|
3001
|
+
"time-core",
|
|
3002
|
+
"time-macros",
|
|
3003
|
+
]
|
|
3004
|
+
|
|
3005
|
+
[[package]]
|
|
3006
|
+
name = "time-core"
|
|
3007
|
+
version = "0.1.8"
|
|
3008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
3010
|
+
|
|
3011
|
+
[[package]]
|
|
3012
|
+
name = "time-macros"
|
|
3013
|
+
version = "0.2.27"
|
|
3014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
3016
|
+
dependencies = [
|
|
3017
|
+
"num-conv",
|
|
3018
|
+
"time-core",
|
|
3019
|
+
]
|
|
3020
|
+
|
|
3021
|
+
[[package]]
|
|
3022
|
+
name = "tiny-keccak"
|
|
3023
|
+
version = "2.0.2"
|
|
3024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3025
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
3026
|
+
dependencies = [
|
|
3027
|
+
"crunchy",
|
|
3028
|
+
]
|
|
3029
|
+
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "tinystr"
|
|
3032
|
+
version = "0.8.2"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"displaydoc",
|
|
3037
|
+
"zerovec",
|
|
3038
|
+
]
|
|
3039
|
+
|
|
3040
|
+
[[package]]
|
|
3041
|
+
name = "tokio"
|
|
3042
|
+
version = "1.48.0"
|
|
3043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3044
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
3045
|
+
dependencies = [
|
|
3046
|
+
"bytes",
|
|
3047
|
+
"pin-project-lite",
|
|
3048
|
+
"tokio-macros",
|
|
3049
|
+
]
|
|
3050
|
+
|
|
3051
|
+
[[package]]
|
|
3052
|
+
name = "tokio-macros"
|
|
3053
|
+
version = "2.6.0"
|
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
3056
|
+
dependencies = [
|
|
3057
|
+
"proc-macro2",
|
|
3058
|
+
"quote",
|
|
3059
|
+
"syn",
|
|
3060
|
+
]
|
|
3061
|
+
|
|
3062
|
+
[[package]]
|
|
3063
|
+
name = "tokio-util"
|
|
3064
|
+
version = "0.7.16"
|
|
3065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3066
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
3067
|
+
dependencies = [
|
|
3068
|
+
"bytes",
|
|
3069
|
+
"futures-core",
|
|
3070
|
+
"futures-sink",
|
|
3071
|
+
"pin-project-lite",
|
|
3072
|
+
"tokio",
|
|
3073
|
+
]
|
|
3074
|
+
|
|
3075
|
+
[[package]]
|
|
3076
|
+
name = "toml_datetime"
|
|
3077
|
+
version = "0.7.3"
|
|
3078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
3080
|
+
dependencies = [
|
|
3081
|
+
"serde_core",
|
|
3082
|
+
]
|
|
3083
|
+
|
|
3084
|
+
[[package]]
|
|
3085
|
+
name = "toml_edit"
|
|
3086
|
+
version = "0.23.7"
|
|
3087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3088
|
+
checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
|
|
3089
|
+
dependencies = [
|
|
3090
|
+
"indexmap 2.12.0",
|
|
3091
|
+
"toml_datetime",
|
|
3092
|
+
"toml_parser",
|
|
3093
|
+
"winnow",
|
|
3094
|
+
]
|
|
3095
|
+
|
|
3096
|
+
[[package]]
|
|
3097
|
+
name = "toml_parser"
|
|
3098
|
+
version = "1.0.4"
|
|
3099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3100
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
3101
|
+
dependencies = [
|
|
3102
|
+
"winnow",
|
|
3103
|
+
]
|
|
3104
|
+
|
|
3105
|
+
[[package]]
|
|
3106
|
+
name = "tracing"
|
|
3107
|
+
version = "0.1.41"
|
|
3108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3109
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3110
|
+
dependencies = [
|
|
3111
|
+
"pin-project-lite",
|
|
3112
|
+
"tracing-attributes",
|
|
3113
|
+
"tracing-core",
|
|
3114
|
+
]
|
|
3115
|
+
|
|
3116
|
+
[[package]]
|
|
3117
|
+
name = "tracing-attributes"
|
|
3118
|
+
version = "0.1.30"
|
|
3119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3120
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
3121
|
+
dependencies = [
|
|
3122
|
+
"proc-macro2",
|
|
3123
|
+
"quote",
|
|
3124
|
+
"syn",
|
|
3125
|
+
]
|
|
3126
|
+
|
|
3127
|
+
[[package]]
|
|
3128
|
+
name = "tracing-core"
|
|
3129
|
+
version = "0.1.34"
|
|
3130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3131
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
3132
|
+
dependencies = [
|
|
3133
|
+
"once_cell",
|
|
3134
|
+
]
|
|
3135
|
+
|
|
3136
|
+
[[package]]
|
|
3137
|
+
name = "twox-hash"
|
|
3138
|
+
version = "2.1.2"
|
|
3139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3140
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
3141
|
+
|
|
3142
|
+
[[package]]
|
|
3143
|
+
name = "typenum"
|
|
3144
|
+
version = "1.19.0"
|
|
3145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3146
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3147
|
+
|
|
3148
|
+
[[package]]
|
|
3149
|
+
name = "unicode-ident"
|
|
3150
|
+
version = "1.0.20"
|
|
3151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
+
checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
|
|
3153
|
+
|
|
3154
|
+
[[package]]
|
|
3155
|
+
name = "unicode-segmentation"
|
|
3156
|
+
version = "1.12.0"
|
|
3157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3158
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3159
|
+
|
|
3160
|
+
[[package]]
|
|
3161
|
+
name = "unicode-width"
|
|
3162
|
+
version = "0.2.2"
|
|
3163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3164
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3165
|
+
|
|
3166
|
+
[[package]]
|
|
3167
|
+
name = "unindent"
|
|
3168
|
+
version = "0.2.4"
|
|
3169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3170
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3171
|
+
|
|
3172
|
+
[[package]]
|
|
3173
|
+
name = "untrusted"
|
|
3174
|
+
version = "0.9.0"
|
|
3175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3176
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3177
|
+
|
|
3178
|
+
[[package]]
|
|
3179
|
+
name = "url"
|
|
3180
|
+
version = "2.5.7"
|
|
3181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3182
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3183
|
+
dependencies = [
|
|
3184
|
+
"form_urlencoded",
|
|
3185
|
+
"idna",
|
|
3186
|
+
"percent-encoding",
|
|
3187
|
+
"serde",
|
|
3188
|
+
]
|
|
3189
|
+
|
|
3190
|
+
[[package]]
|
|
3191
|
+
name = "utf8_iter"
|
|
3192
|
+
version = "1.0.4"
|
|
3193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "utf8parse"
|
|
3198
|
+
version = "0.2.2"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3201
|
+
|
|
3202
|
+
[[package]]
|
|
3203
|
+
name = "uuid"
|
|
3204
|
+
version = "1.18.1"
|
|
3205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3206
|
+
checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
|
3207
|
+
dependencies = [
|
|
3208
|
+
"getrandom 0.3.4",
|
|
3209
|
+
"js-sys",
|
|
3210
|
+
"wasm-bindgen",
|
|
3211
|
+
]
|
|
3212
|
+
|
|
3213
|
+
[[package]]
|
|
3214
|
+
name = "version_check"
|
|
3215
|
+
version = "0.9.5"
|
|
3216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3217
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3218
|
+
|
|
3219
|
+
[[package]]
|
|
3220
|
+
name = "walkdir"
|
|
3221
|
+
version = "2.5.0"
|
|
3222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3223
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3224
|
+
dependencies = [
|
|
3225
|
+
"same-file",
|
|
3226
|
+
"winapi-util",
|
|
3227
|
+
]
|
|
3228
|
+
|
|
3229
|
+
[[package]]
|
|
3230
|
+
name = "wasi"
|
|
3231
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3233
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3234
|
+
|
|
3235
|
+
[[package]]
|
|
3236
|
+
name = "wasip2"
|
|
3237
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3240
|
+
dependencies = [
|
|
3241
|
+
"wit-bindgen",
|
|
3242
|
+
]
|
|
3243
|
+
|
|
3244
|
+
[[package]]
|
|
3245
|
+
name = "wasm-bindgen"
|
|
3246
|
+
version = "0.2.105"
|
|
3247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3248
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
3249
|
+
dependencies = [
|
|
3250
|
+
"cfg-if",
|
|
3251
|
+
"once_cell",
|
|
3252
|
+
"rustversion",
|
|
3253
|
+
"wasm-bindgen-macro",
|
|
3254
|
+
"wasm-bindgen-shared",
|
|
3255
|
+
]
|
|
3256
|
+
|
|
3257
|
+
[[package]]
|
|
3258
|
+
name = "wasm-bindgen-futures"
|
|
3259
|
+
version = "0.4.55"
|
|
3260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3261
|
+
checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
|
|
3262
|
+
dependencies = [
|
|
3263
|
+
"cfg-if",
|
|
3264
|
+
"js-sys",
|
|
3265
|
+
"once_cell",
|
|
3266
|
+
"wasm-bindgen",
|
|
3267
|
+
"web-sys",
|
|
3268
|
+
]
|
|
3269
|
+
|
|
3270
|
+
[[package]]
|
|
3271
|
+
name = "wasm-bindgen-macro"
|
|
3272
|
+
version = "0.2.105"
|
|
3273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3274
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
3275
|
+
dependencies = [
|
|
3276
|
+
"quote",
|
|
3277
|
+
"wasm-bindgen-macro-support",
|
|
3278
|
+
]
|
|
3279
|
+
|
|
3280
|
+
[[package]]
|
|
3281
|
+
name = "wasm-bindgen-macro-support"
|
|
3282
|
+
version = "0.2.105"
|
|
3283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3284
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
3285
|
+
dependencies = [
|
|
3286
|
+
"bumpalo",
|
|
3287
|
+
"proc-macro2",
|
|
3288
|
+
"quote",
|
|
3289
|
+
"syn",
|
|
3290
|
+
"wasm-bindgen-shared",
|
|
3291
|
+
]
|
|
3292
|
+
|
|
3293
|
+
[[package]]
|
|
3294
|
+
name = "wasm-bindgen-shared"
|
|
3295
|
+
version = "0.2.105"
|
|
3296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3297
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
3298
|
+
dependencies = [
|
|
3299
|
+
"unicode-ident",
|
|
3300
|
+
]
|
|
3301
|
+
|
|
3302
|
+
[[package]]
|
|
3303
|
+
name = "web-sys"
|
|
3304
|
+
version = "0.3.82"
|
|
3305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3306
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
3307
|
+
dependencies = [
|
|
3308
|
+
"js-sys",
|
|
3309
|
+
"wasm-bindgen",
|
|
3310
|
+
]
|
|
3311
|
+
|
|
3312
|
+
[[package]]
|
|
3313
|
+
name = "web-time"
|
|
3314
|
+
version = "1.1.0"
|
|
3315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3317
|
+
dependencies = [
|
|
3318
|
+
"js-sys",
|
|
3319
|
+
"wasm-bindgen",
|
|
3320
|
+
]
|
|
3321
|
+
|
|
3322
|
+
[[package]]
|
|
3323
|
+
name = "winapi-util"
|
|
3324
|
+
version = "0.1.11"
|
|
3325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3327
|
+
dependencies = [
|
|
3328
|
+
"windows-sys 0.61.2",
|
|
3329
|
+
]
|
|
3330
|
+
|
|
3331
|
+
[[package]]
|
|
3332
|
+
name = "windows-core"
|
|
3333
|
+
version = "0.62.2"
|
|
3334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3335
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3336
|
+
dependencies = [
|
|
3337
|
+
"windows-implement",
|
|
3338
|
+
"windows-interface",
|
|
3339
|
+
"windows-link",
|
|
3340
|
+
"windows-result",
|
|
3341
|
+
"windows-strings",
|
|
3342
|
+
]
|
|
3343
|
+
|
|
3344
|
+
[[package]]
|
|
3345
|
+
name = "windows-implement"
|
|
3346
|
+
version = "0.60.2"
|
|
3347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3348
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3349
|
+
dependencies = [
|
|
3350
|
+
"proc-macro2",
|
|
3351
|
+
"quote",
|
|
3352
|
+
"syn",
|
|
3353
|
+
]
|
|
3354
|
+
|
|
3355
|
+
[[package]]
|
|
3356
|
+
name = "windows-interface"
|
|
3357
|
+
version = "0.59.3"
|
|
3358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3359
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3360
|
+
dependencies = [
|
|
3361
|
+
"proc-macro2",
|
|
3362
|
+
"quote",
|
|
3363
|
+
"syn",
|
|
3364
|
+
]
|
|
3365
|
+
|
|
3366
|
+
[[package]]
|
|
3367
|
+
name = "windows-link"
|
|
3368
|
+
version = "0.2.1"
|
|
3369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3370
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3371
|
+
|
|
3372
|
+
[[package]]
|
|
3373
|
+
name = "windows-result"
|
|
3374
|
+
version = "0.4.1"
|
|
3375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3376
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3377
|
+
dependencies = [
|
|
3378
|
+
"windows-link",
|
|
3379
|
+
]
|
|
3380
|
+
|
|
3381
|
+
[[package]]
|
|
3382
|
+
name = "windows-strings"
|
|
3383
|
+
version = "0.5.1"
|
|
3384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3385
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3386
|
+
dependencies = [
|
|
3387
|
+
"windows-link",
|
|
3388
|
+
]
|
|
3389
|
+
|
|
3390
|
+
[[package]]
|
|
3391
|
+
name = "windows-sys"
|
|
3392
|
+
version = "0.52.0"
|
|
3393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3394
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3395
|
+
dependencies = [
|
|
3396
|
+
"windows-targets 0.52.6",
|
|
3397
|
+
]
|
|
3398
|
+
|
|
3399
|
+
[[package]]
|
|
3400
|
+
name = "windows-sys"
|
|
3401
|
+
version = "0.59.0"
|
|
3402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3403
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3404
|
+
dependencies = [
|
|
3405
|
+
"windows-targets 0.52.6",
|
|
3406
|
+
]
|
|
3407
|
+
|
|
3408
|
+
[[package]]
|
|
3409
|
+
name = "windows-sys"
|
|
3410
|
+
version = "0.60.2"
|
|
3411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3412
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3413
|
+
dependencies = [
|
|
3414
|
+
"windows-targets 0.53.5",
|
|
3415
|
+
]
|
|
3416
|
+
|
|
3417
|
+
[[package]]
|
|
3418
|
+
name = "windows-sys"
|
|
3419
|
+
version = "0.61.2"
|
|
3420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3421
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3422
|
+
dependencies = [
|
|
3423
|
+
"windows-link",
|
|
3424
|
+
]
|
|
3425
|
+
|
|
3426
|
+
[[package]]
|
|
3427
|
+
name = "windows-targets"
|
|
3428
|
+
version = "0.52.6"
|
|
3429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3430
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3431
|
+
dependencies = [
|
|
3432
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3433
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3434
|
+
"windows_i686_gnu 0.52.6",
|
|
3435
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3436
|
+
"windows_i686_msvc 0.52.6",
|
|
3437
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3438
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3439
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3440
|
+
]
|
|
3441
|
+
|
|
3442
|
+
[[package]]
|
|
3443
|
+
name = "windows-targets"
|
|
3444
|
+
version = "0.53.5"
|
|
3445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3447
|
+
dependencies = [
|
|
3448
|
+
"windows-link",
|
|
3449
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3450
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3451
|
+
"windows_i686_gnu 0.53.1",
|
|
3452
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3453
|
+
"windows_i686_msvc 0.53.1",
|
|
3454
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3455
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3456
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3457
|
+
]
|
|
3458
|
+
|
|
3459
|
+
[[package]]
|
|
3460
|
+
name = "windows_aarch64_gnullvm"
|
|
3461
|
+
version = "0.52.6"
|
|
3462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3463
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3464
|
+
|
|
3465
|
+
[[package]]
|
|
3466
|
+
name = "windows_aarch64_gnullvm"
|
|
3467
|
+
version = "0.53.1"
|
|
3468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3470
|
+
|
|
3471
|
+
[[package]]
|
|
3472
|
+
name = "windows_aarch64_msvc"
|
|
3473
|
+
version = "0.52.6"
|
|
3474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3475
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3476
|
+
|
|
3477
|
+
[[package]]
|
|
3478
|
+
name = "windows_aarch64_msvc"
|
|
3479
|
+
version = "0.53.1"
|
|
3480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3481
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3482
|
+
|
|
3483
|
+
[[package]]
|
|
3484
|
+
name = "windows_i686_gnu"
|
|
3485
|
+
version = "0.52.6"
|
|
3486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3488
|
+
|
|
3489
|
+
[[package]]
|
|
3490
|
+
name = "windows_i686_gnu"
|
|
3491
|
+
version = "0.53.1"
|
|
3492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3494
|
+
|
|
3495
|
+
[[package]]
|
|
3496
|
+
name = "windows_i686_gnullvm"
|
|
3497
|
+
version = "0.52.6"
|
|
3498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3500
|
+
|
|
3501
|
+
[[package]]
|
|
3502
|
+
name = "windows_i686_gnullvm"
|
|
3503
|
+
version = "0.53.1"
|
|
3504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3505
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3506
|
+
|
|
3507
|
+
[[package]]
|
|
3508
|
+
name = "windows_i686_msvc"
|
|
3509
|
+
version = "0.52.6"
|
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3512
|
+
|
|
3513
|
+
[[package]]
|
|
3514
|
+
name = "windows_i686_msvc"
|
|
3515
|
+
version = "0.53.1"
|
|
3516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3517
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3518
|
+
|
|
3519
|
+
[[package]]
|
|
3520
|
+
name = "windows_x86_64_gnu"
|
|
3521
|
+
version = "0.52.6"
|
|
3522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3524
|
+
|
|
3525
|
+
[[package]]
|
|
3526
|
+
name = "windows_x86_64_gnu"
|
|
3527
|
+
version = "0.53.1"
|
|
3528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3529
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3530
|
+
|
|
3531
|
+
[[package]]
|
|
3532
|
+
name = "windows_x86_64_gnullvm"
|
|
3533
|
+
version = "0.52.6"
|
|
3534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3535
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3536
|
+
|
|
3537
|
+
[[package]]
|
|
3538
|
+
name = "windows_x86_64_gnullvm"
|
|
3539
|
+
version = "0.53.1"
|
|
3540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3542
|
+
|
|
3543
|
+
[[package]]
|
|
3544
|
+
name = "windows_x86_64_msvc"
|
|
3545
|
+
version = "0.52.6"
|
|
3546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3547
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3548
|
+
|
|
3549
|
+
[[package]]
|
|
3550
|
+
name = "windows_x86_64_msvc"
|
|
3551
|
+
version = "0.53.1"
|
|
3552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3554
|
+
|
|
3555
|
+
[[package]]
|
|
3556
|
+
name = "winnow"
|
|
3557
|
+
version = "0.7.13"
|
|
3558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
3560
|
+
dependencies = [
|
|
3561
|
+
"memchr",
|
|
3562
|
+
]
|
|
3563
|
+
|
|
3564
|
+
[[package]]
|
|
3565
|
+
name = "wit-bindgen"
|
|
3566
|
+
version = "0.46.0"
|
|
3567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3568
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
3569
|
+
|
|
3570
|
+
[[package]]
|
|
3571
|
+
name = "wren-core"
|
|
3572
|
+
version = "0.1.0"
|
|
3573
|
+
dependencies = [
|
|
3574
|
+
"async-trait",
|
|
3575
|
+
"csv",
|
|
3576
|
+
"datafusion",
|
|
3577
|
+
"env_logger",
|
|
3578
|
+
"itertools",
|
|
3579
|
+
"log",
|
|
3580
|
+
"parking_lot",
|
|
3581
|
+
"petgraph",
|
|
3582
|
+
"petgraph-evcxr",
|
|
3583
|
+
"regex",
|
|
3584
|
+
"serde",
|
|
3585
|
+
"serde_json",
|
|
3586
|
+
"serde_with",
|
|
3587
|
+
"tokio",
|
|
3588
|
+
"wren-core-base",
|
|
3589
|
+
]
|
|
3590
|
+
|
|
3591
|
+
[[package]]
|
|
3592
|
+
name = "wren-core-base"
|
|
3593
|
+
version = "0.1.0"
|
|
3594
|
+
dependencies = [
|
|
3595
|
+
"pyo3",
|
|
3596
|
+
"serde",
|
|
3597
|
+
"serde_json",
|
|
3598
|
+
"serde_with",
|
|
3599
|
+
"sqlparser 0.58.0",
|
|
3600
|
+
"wren-manifest-macro",
|
|
3601
|
+
]
|
|
3602
|
+
|
|
3603
|
+
[[package]]
|
|
3604
|
+
name = "wren-core-py"
|
|
3605
|
+
version = "0.1.0"
|
|
3606
|
+
dependencies = [
|
|
3607
|
+
"base64",
|
|
3608
|
+
"csv",
|
|
3609
|
+
"env_logger",
|
|
3610
|
+
"log",
|
|
3611
|
+
"pyo3",
|
|
3612
|
+
"pyo3-build-config 0.23.5",
|
|
3613
|
+
"rstest",
|
|
3614
|
+
"serde",
|
|
3615
|
+
"serde_json",
|
|
3616
|
+
"thiserror",
|
|
3617
|
+
"tokio",
|
|
3618
|
+
"wren-core",
|
|
3619
|
+
"wren-core-base",
|
|
3620
|
+
]
|
|
3621
|
+
|
|
3622
|
+
[[package]]
|
|
3623
|
+
name = "wren-manifest-macro"
|
|
3624
|
+
version = "0.1.0"
|
|
3625
|
+
dependencies = [
|
|
3626
|
+
"quote",
|
|
3627
|
+
"syn",
|
|
3628
|
+
]
|
|
3629
|
+
|
|
3630
|
+
[[package]]
|
|
3631
|
+
name = "writeable"
|
|
3632
|
+
version = "0.6.2"
|
|
3633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3634
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3635
|
+
|
|
3636
|
+
[[package]]
|
|
3637
|
+
name = "xz2"
|
|
3638
|
+
version = "0.1.7"
|
|
3639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3640
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
3641
|
+
dependencies = [
|
|
3642
|
+
"lzma-sys",
|
|
3643
|
+
]
|
|
3644
|
+
|
|
3645
|
+
[[package]]
|
|
3646
|
+
name = "yoke"
|
|
3647
|
+
version = "0.8.1"
|
|
3648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3649
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
3650
|
+
dependencies = [
|
|
3651
|
+
"stable_deref_trait",
|
|
3652
|
+
"yoke-derive",
|
|
3653
|
+
"zerofrom",
|
|
3654
|
+
]
|
|
3655
|
+
|
|
3656
|
+
[[package]]
|
|
3657
|
+
name = "yoke-derive"
|
|
3658
|
+
version = "0.8.1"
|
|
3659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3660
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
3661
|
+
dependencies = [
|
|
3662
|
+
"proc-macro2",
|
|
3663
|
+
"quote",
|
|
3664
|
+
"syn",
|
|
3665
|
+
"synstructure",
|
|
3666
|
+
]
|
|
3667
|
+
|
|
3668
|
+
[[package]]
|
|
3669
|
+
name = "zerocopy"
|
|
3670
|
+
version = "0.8.27"
|
|
3671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3672
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
3673
|
+
dependencies = [
|
|
3674
|
+
"zerocopy-derive",
|
|
3675
|
+
]
|
|
3676
|
+
|
|
3677
|
+
[[package]]
|
|
3678
|
+
name = "zerocopy-derive"
|
|
3679
|
+
version = "0.8.27"
|
|
3680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3681
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
3682
|
+
dependencies = [
|
|
3683
|
+
"proc-macro2",
|
|
3684
|
+
"quote",
|
|
3685
|
+
"syn",
|
|
3686
|
+
]
|
|
3687
|
+
|
|
3688
|
+
[[package]]
|
|
3689
|
+
name = "zerofrom"
|
|
3690
|
+
version = "0.1.6"
|
|
3691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3693
|
+
dependencies = [
|
|
3694
|
+
"zerofrom-derive",
|
|
3695
|
+
]
|
|
3696
|
+
|
|
3697
|
+
[[package]]
|
|
3698
|
+
name = "zerofrom-derive"
|
|
3699
|
+
version = "0.1.6"
|
|
3700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3702
|
+
dependencies = [
|
|
3703
|
+
"proc-macro2",
|
|
3704
|
+
"quote",
|
|
3705
|
+
"syn",
|
|
3706
|
+
"synstructure",
|
|
3707
|
+
]
|
|
3708
|
+
|
|
3709
|
+
[[package]]
|
|
3710
|
+
name = "zerotrie"
|
|
3711
|
+
version = "0.2.3"
|
|
3712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
3714
|
+
dependencies = [
|
|
3715
|
+
"displaydoc",
|
|
3716
|
+
"yoke",
|
|
3717
|
+
"zerofrom",
|
|
3718
|
+
]
|
|
3719
|
+
|
|
3720
|
+
[[package]]
|
|
3721
|
+
name = "zerovec"
|
|
3722
|
+
version = "0.11.5"
|
|
3723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3724
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
3725
|
+
dependencies = [
|
|
3726
|
+
"yoke",
|
|
3727
|
+
"zerofrom",
|
|
3728
|
+
"zerovec-derive",
|
|
3729
|
+
]
|
|
3730
|
+
|
|
3731
|
+
[[package]]
|
|
3732
|
+
name = "zerovec-derive"
|
|
3733
|
+
version = "0.11.2"
|
|
3734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
3736
|
+
dependencies = [
|
|
3737
|
+
"proc-macro2",
|
|
3738
|
+
"quote",
|
|
3739
|
+
"syn",
|
|
3740
|
+
]
|
|
3741
|
+
|
|
3742
|
+
[[package]]
|
|
3743
|
+
name = "zlib-rs"
|
|
3744
|
+
version = "0.5.2"
|
|
3745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3746
|
+
checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
|
|
3747
|
+
|
|
3748
|
+
[[package]]
|
|
3749
|
+
name = "zstd"
|
|
3750
|
+
version = "0.13.3"
|
|
3751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3752
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3753
|
+
dependencies = [
|
|
3754
|
+
"zstd-safe",
|
|
3755
|
+
]
|
|
3756
|
+
|
|
3757
|
+
[[package]]
|
|
3758
|
+
name = "zstd-safe"
|
|
3759
|
+
version = "7.2.4"
|
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3762
|
+
dependencies = [
|
|
3763
|
+
"zstd-sys",
|
|
3764
|
+
]
|
|
3765
|
+
|
|
3766
|
+
[[package]]
|
|
3767
|
+
name = "zstd-sys"
|
|
3768
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3770
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3771
|
+
dependencies = [
|
|
3772
|
+
"cc",
|
|
3773
|
+
"pkg-config",
|
|
3774
|
+
]
|