h5i-db 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.
- h5i_db-0.1.0/Cargo.lock +4369 -0
- h5i_db-0.1.0/Cargo.toml +122 -0
- h5i_db-0.1.0/PKG-INFO +11 -0
- h5i_db-0.1.0/README.md +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/Cargo.toml +35 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/backend.rs +438 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/backend_object.rs +248 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/catalog.rs +110 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/database.rs +2256 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/error.rs +235 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/evolution.rs +239 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/incremental.rs +99 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/layout.rs +126 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/lib.rs +43 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/manifest.rs +263 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/plan.rs +555 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/policy.rs +103 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/retention.rs +211 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/segment.rs +1030 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/snapshot.rs +106 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/spec.rs +172 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/tail.rs +135 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/transaction.rs +220 -0
- h5i_db-0.1.0/crates/h5i-db-core/src/util.rs +101 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/durability.rs +461 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/edge_cases.rs +400 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/generate-golden.sh +74 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/FORMAT +6 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/catalog/tables/32c24bab4fc808da8ac15891b55a17242176dbe12ff7d4b7facdffd03710b194.json +7 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/catalog/tables/a301fe72d5aec299c4f10ba0768e65f4821f465f00ac906c0829a0ea5a5fe0a3.json +7 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/snapshots/68ca9baf17c67ef7b4560a4455bacf8dbf296e2a8598fd98604d81532b9c2185.json +18 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/3cf9c66a-e413-4733-8f21-60e7482410b4/HEAD +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/3cf9c66a-e413-4733-8f21-60e7482410b4/manifests/000000000000.json +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/3cf9c66a-e413-4733-8f21-60e7482410b4/manifests/000000000001.json +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/3cf9c66a-e413-4733-8f21-60e7482410b4/segments/f236f2bb-55c7-44e2-9bef-2d20d6e64c25.parquet +0 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/3cf9c66a-e413-4733-8f21-60e7482410b4/spec/00000001.json +18 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/HEAD +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/manifests/000000000000.json +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/manifests/000000000001.json +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/manifests/000000000002.json +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/manifests/000000000003.json +1 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/plans/905438df-9f98-4a82-9ba0-1d7718a0e8b6.json +97 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/segments/0cc8fbf6-145e-4fff-94ef-bdc680497319.parquet +0 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/segments/60e9ad30-70d4-4c08-805c-85c6ee8ad6df.parquet +0 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/segments/88a90cb7-2114-4796-bbf1-1e7811d407a7.parquet +0 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/segments/dcaacaa5-5e82-4886-a8e1-a893694f09af.parquet +0 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/fixtures/golden-v1/tables/701147a8-f7e7-4998-91f2-7cb94fdf2252/spec/00000001.json +18 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/format_compat.rs +117 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/integration.rs +902 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/plans.rs +296 -0
- h5i_db-0.1.0/crates/h5i-db-core/tests/roadmap_features.rs +247 -0
- h5i_db-0.1.0/crates/h5i-db-observability/Cargo.toml +16 -0
- h5i_db-0.1.0/crates/h5i-db-observability/src/lib.rs +211 -0
- h5i_db-0.1.0/crates/h5i-db-python/Cargo.toml +26 -0
- h5i_db-0.1.0/crates/h5i-db-python/README.md +1 -0
- h5i_db-0.1.0/crates/h5i-db-python/python/tests/test_bindings.py +140 -0
- h5i_db-0.1.0/crates/h5i-db-python/src/lib.rs +805 -0
- h5i_db-0.1.0/crates/h5i-db-query/Cargo.toml +38 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/aggregate_state.rs +766 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/asof.rs +1323 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/finance.rs +308 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/functions.rs +600 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/gapfill.rs +251 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/lib.rs +37 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/metrics.rs +410 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/predicate_cache.rs +574 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/provider.rs +367 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/pruning.rs +171 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/session.rs +617 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/sidecar.rs +24 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/tail.rs +175 -0
- h5i_db-0.1.0/crates/h5i-db-query/src/udtf.rs +131 -0
- h5i_db-0.1.0/crates/h5i-db-query/tests/asof_perf.rs +598 -0
- h5i_db-0.1.0/crates/h5i-db-query/tests/query.rs +868 -0
- h5i_db-0.1.0/crates/h5i-db-query/tests/query_misc.rs +996 -0
- h5i_db-0.1.0/pyproject.toml +25 -0
- h5i_db-0.1.0/python/h5i_db/__init__.py +341 -0
h5i_db-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,4369 @@
|
|
|
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.4"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
|
|
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 = "1.0.0"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
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.14"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anstyle-parse"
|
|
87
|
+
version = "1.0.0"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"utf8parse",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "anstyle-query"
|
|
96
|
+
version = "1.1.5"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"windows-sys 0.61.2",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "anstyle-wincon"
|
|
105
|
+
version = "3.0.11"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"anstyle",
|
|
110
|
+
"once_cell_polyfill",
|
|
111
|
+
"windows-sys 0.61.2",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "arrayref"
|
|
116
|
+
version = "0.3.9"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "arrayvec"
|
|
122
|
+
version = "0.7.8"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "arrow"
|
|
128
|
+
version = "58.3.0"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "378530e55cd479eda3c14eb345310799717e6f76d0c332041e8487022166b471"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"arrow-arith",
|
|
133
|
+
"arrow-array",
|
|
134
|
+
"arrow-buffer",
|
|
135
|
+
"arrow-cast",
|
|
136
|
+
"arrow-csv",
|
|
137
|
+
"arrow-data",
|
|
138
|
+
"arrow-ipc",
|
|
139
|
+
"arrow-json",
|
|
140
|
+
"arrow-ord",
|
|
141
|
+
"arrow-row",
|
|
142
|
+
"arrow-schema",
|
|
143
|
+
"arrow-select",
|
|
144
|
+
"arrow-string",
|
|
145
|
+
]
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "arrow-arith"
|
|
149
|
+
version = "58.3.0"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "a0ab212d2c1886e802f51c5212d78ebbcbb0bec980fff9dadc1eb8d45cd0b738"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"arrow-array",
|
|
154
|
+
"arrow-buffer",
|
|
155
|
+
"arrow-data",
|
|
156
|
+
"arrow-schema",
|
|
157
|
+
"chrono",
|
|
158
|
+
"num-traits",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "arrow-array"
|
|
163
|
+
version = "58.3.0"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "cfd33d3e92f207444098c75b42de99d329562be0cf686b307b097cc52b4e999e"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"ahash",
|
|
168
|
+
"arrow-buffer",
|
|
169
|
+
"arrow-data",
|
|
170
|
+
"arrow-schema",
|
|
171
|
+
"chrono",
|
|
172
|
+
"chrono-tz",
|
|
173
|
+
"half",
|
|
174
|
+
"hashbrown 0.17.1",
|
|
175
|
+
"num-complex",
|
|
176
|
+
"num-integer",
|
|
177
|
+
"num-traits",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "arrow-buffer"
|
|
182
|
+
version = "58.3.0"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "0c6cd424c2693bcdbc150d843dc9d4d137dd2de4782ce6df491ad11a3a0416c0"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"bytes",
|
|
187
|
+
"half",
|
|
188
|
+
"num-bigint",
|
|
189
|
+
"num-traits",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "arrow-cast"
|
|
194
|
+
version = "58.3.0"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "4c5aefb56a2c02e9e2b30746241058b85f8983f0fcff2ba0c6d09006e1cded7f"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"arrow-array",
|
|
199
|
+
"arrow-buffer",
|
|
200
|
+
"arrow-data",
|
|
201
|
+
"arrow-ord",
|
|
202
|
+
"arrow-schema",
|
|
203
|
+
"arrow-select",
|
|
204
|
+
"atoi",
|
|
205
|
+
"base64",
|
|
206
|
+
"chrono",
|
|
207
|
+
"comfy-table",
|
|
208
|
+
"half",
|
|
209
|
+
"lexical-core",
|
|
210
|
+
"num-traits",
|
|
211
|
+
"ryu",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "arrow-csv"
|
|
216
|
+
version = "58.3.0"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "e94e8cf7e517657a52b91ea1263acf38c4ca62a84655d72458a3359b12ab97de"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"arrow-array",
|
|
221
|
+
"arrow-cast",
|
|
222
|
+
"arrow-schema",
|
|
223
|
+
"chrono",
|
|
224
|
+
"csv",
|
|
225
|
+
"csv-core",
|
|
226
|
+
"regex",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "arrow-data"
|
|
231
|
+
version = "58.3.0"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "3c88210023a2bfee1896af366309a3028fc3bcbd6515fa29a7990ee1baa08ee0"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"arrow-buffer",
|
|
236
|
+
"arrow-schema",
|
|
237
|
+
"half",
|
|
238
|
+
"num-integer",
|
|
239
|
+
"num-traits",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "arrow-ipc"
|
|
244
|
+
version = "58.3.0"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "238438f0834483703d88896db6fe5a7138b2230debc31b34c0336c2996e3c64f"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"arrow-array",
|
|
249
|
+
"arrow-buffer",
|
|
250
|
+
"arrow-data",
|
|
251
|
+
"arrow-schema",
|
|
252
|
+
"arrow-select",
|
|
253
|
+
"flatbuffers",
|
|
254
|
+
"lz4_flex",
|
|
255
|
+
"zstd",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "arrow-json"
|
|
260
|
+
version = "58.3.0"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "205ca2119e6d679d5c133c6f30e68f027738d95ed948cf77677ea69c7800036b"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"arrow-array",
|
|
265
|
+
"arrow-buffer",
|
|
266
|
+
"arrow-cast",
|
|
267
|
+
"arrow-ord",
|
|
268
|
+
"arrow-schema",
|
|
269
|
+
"arrow-select",
|
|
270
|
+
"chrono",
|
|
271
|
+
"half",
|
|
272
|
+
"indexmap",
|
|
273
|
+
"itoa",
|
|
274
|
+
"lexical-core",
|
|
275
|
+
"memchr",
|
|
276
|
+
"num-traits",
|
|
277
|
+
"ryu",
|
|
278
|
+
"serde_core",
|
|
279
|
+
"serde_json",
|
|
280
|
+
"simdutf8",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "arrow-ord"
|
|
285
|
+
version = "58.3.0"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "1bffd8fd2579286a5d63bac898159873e5094a79009940bcb42bbfce4f19f1d0"
|
|
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 = "58.3.0"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "bab5994731204603c73ba69267616c50f80780774c6bb0476f1f830625115e0c"
|
|
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 = "58.3.0"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "f633dbfdf39c039ada1bf9e34c694816eb71fbb7dc78f613993b7245e078a1ed"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"serde",
|
|
316
|
+
"serde_core",
|
|
317
|
+
"serde_json",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "arrow-select"
|
|
322
|
+
version = "58.3.0"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "8cd065c54172ac787cf3f2f8d4107e0d3fdc26edba76fdf4f4cc170258942222"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"ahash",
|
|
327
|
+
"arrow-array",
|
|
328
|
+
"arrow-buffer",
|
|
329
|
+
"arrow-data",
|
|
330
|
+
"arrow-schema",
|
|
331
|
+
"num-traits",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "arrow-string"
|
|
336
|
+
version = "58.3.0"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "29dd7cda3ab9692f43a2e4acc444d760cc17b12bb6d8232ddf64e9bab7c06b42"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"arrow-array",
|
|
341
|
+
"arrow-buffer",
|
|
342
|
+
"arrow-data",
|
|
343
|
+
"arrow-schema",
|
|
344
|
+
"arrow-select",
|
|
345
|
+
"memchr",
|
|
346
|
+
"num-traits",
|
|
347
|
+
"regex",
|
|
348
|
+
"regex-syntax",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "async-trait"
|
|
353
|
+
version = "0.1.91"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"proc-macro2",
|
|
358
|
+
"quote",
|
|
359
|
+
"syn 3.0.3",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "atoi"
|
|
364
|
+
version = "2.0.0"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"num-traits",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "atomic-waker"
|
|
373
|
+
version = "1.1.2"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "autocfg"
|
|
379
|
+
version = "1.5.1"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "aws-lc-rs"
|
|
385
|
+
version = "1.17.3"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"aws-lc-sys",
|
|
390
|
+
"zeroize",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "aws-lc-sys"
|
|
395
|
+
version = "0.43.0"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"cc",
|
|
400
|
+
"cmake",
|
|
401
|
+
"dunce",
|
|
402
|
+
"fs_extra",
|
|
403
|
+
"pkg-config",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "axum"
|
|
408
|
+
version = "0.8.9"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"axum-core",
|
|
413
|
+
"bytes",
|
|
414
|
+
"form_urlencoded",
|
|
415
|
+
"futures-util",
|
|
416
|
+
"http",
|
|
417
|
+
"http-body",
|
|
418
|
+
"http-body-util",
|
|
419
|
+
"hyper",
|
|
420
|
+
"hyper-util",
|
|
421
|
+
"itoa",
|
|
422
|
+
"matchit",
|
|
423
|
+
"memchr",
|
|
424
|
+
"mime",
|
|
425
|
+
"percent-encoding",
|
|
426
|
+
"pin-project-lite",
|
|
427
|
+
"serde_core",
|
|
428
|
+
"serde_json",
|
|
429
|
+
"serde_path_to_error",
|
|
430
|
+
"serde_urlencoded",
|
|
431
|
+
"sync_wrapper",
|
|
432
|
+
"tokio",
|
|
433
|
+
"tower",
|
|
434
|
+
"tower-layer",
|
|
435
|
+
"tower-service",
|
|
436
|
+
"tracing",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "axum-core"
|
|
441
|
+
version = "0.5.6"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"bytes",
|
|
446
|
+
"futures-core",
|
|
447
|
+
"http",
|
|
448
|
+
"http-body",
|
|
449
|
+
"http-body-util",
|
|
450
|
+
"mime",
|
|
451
|
+
"pin-project-lite",
|
|
452
|
+
"sync_wrapper",
|
|
453
|
+
"tower-layer",
|
|
454
|
+
"tower-service",
|
|
455
|
+
"tracing",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "base64"
|
|
460
|
+
version = "0.22.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "bigdecimal"
|
|
466
|
+
version = "0.4.10"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"autocfg",
|
|
471
|
+
"libm",
|
|
472
|
+
"num-bigint",
|
|
473
|
+
"num-integer",
|
|
474
|
+
"num-traits",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "bitflags"
|
|
479
|
+
version = "2.13.1"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "blake3"
|
|
485
|
+
version = "1.8.5"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"arrayref",
|
|
490
|
+
"arrayvec",
|
|
491
|
+
"cc",
|
|
492
|
+
"cfg-if",
|
|
493
|
+
"constant_time_eq",
|
|
494
|
+
"cpufeatures",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "block-buffer"
|
|
499
|
+
version = "0.12.1"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"hybrid-array",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "brotli"
|
|
508
|
+
version = "8.0.4"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"alloc-no-stdlib",
|
|
513
|
+
"alloc-stdlib",
|
|
514
|
+
"brotli-decompressor",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "brotli-decompressor"
|
|
519
|
+
version = "5.0.3"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"alloc-no-stdlib",
|
|
524
|
+
"alloc-stdlib",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "bumpalo"
|
|
529
|
+
version = "3.20.3"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "byteorder"
|
|
535
|
+
version = "1.5.0"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "bytes"
|
|
541
|
+
version = "1.12.1"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "cc"
|
|
547
|
+
version = "1.3.0"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"find-msvc-tools",
|
|
552
|
+
"jobserver",
|
|
553
|
+
"libc",
|
|
554
|
+
"shlex",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "cfg-if"
|
|
559
|
+
version = "1.0.4"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "cfg_aliases"
|
|
565
|
+
version = "0.2.2"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "chacha20"
|
|
571
|
+
version = "0.10.1"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"cfg-if",
|
|
576
|
+
"cpufeatures",
|
|
577
|
+
"rand_core 0.10.1",
|
|
578
|
+
]
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "chrono"
|
|
582
|
+
version = "0.4.45"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"iana-time-zone",
|
|
587
|
+
"num-traits",
|
|
588
|
+
"serde",
|
|
589
|
+
"windows-link",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "chrono-tz"
|
|
594
|
+
version = "0.10.4"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"chrono",
|
|
599
|
+
"phf",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "clap"
|
|
604
|
+
version = "4.6.4"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"clap_builder",
|
|
609
|
+
"clap_derive",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "clap_builder"
|
|
614
|
+
version = "4.6.2"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"anstream",
|
|
619
|
+
"anstyle",
|
|
620
|
+
"clap_lex",
|
|
621
|
+
"strsim",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "clap_derive"
|
|
626
|
+
version = "4.6.4"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"heck",
|
|
631
|
+
"proc-macro2",
|
|
632
|
+
"quote",
|
|
633
|
+
"syn 3.0.3",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "clap_lex"
|
|
638
|
+
version = "1.1.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "cmake"
|
|
644
|
+
version = "0.1.58"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"cc",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "colorchoice"
|
|
653
|
+
version = "1.0.5"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "combine"
|
|
659
|
+
version = "4.6.7"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"bytes",
|
|
664
|
+
"memchr",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "comfy-table"
|
|
669
|
+
version = "7.2.2"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"crossterm",
|
|
674
|
+
"unicode-segmentation",
|
|
675
|
+
"unicode-width",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "const-random"
|
|
680
|
+
version = "0.1.18"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"const-random-macro",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "const-random-macro"
|
|
689
|
+
version = "0.1.16"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"getrandom 0.2.17",
|
|
694
|
+
"once_cell",
|
|
695
|
+
"tiny-keccak",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "constant_time_eq"
|
|
700
|
+
version = "0.4.2"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "core-foundation"
|
|
706
|
+
version = "0.10.1"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"core-foundation-sys",
|
|
711
|
+
"libc",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "core-foundation-sys"
|
|
716
|
+
version = "0.8.7"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "cpufeatures"
|
|
722
|
+
version = "0.3.0"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"libc",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "crc"
|
|
731
|
+
version = "3.3.0"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"crc-catalog",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "crc-catalog"
|
|
740
|
+
version = "2.5.0"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "crc-fast"
|
|
746
|
+
version = "1.9.0"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "2fd92aca2c6001b1bf5ba0ff84ee74ec8501b52bbef0cac80bf25a6c1d87a83d"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"crc",
|
|
751
|
+
"digest 0.10.7",
|
|
752
|
+
"rustversion",
|
|
753
|
+
"spin",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "crc32fast"
|
|
758
|
+
version = "1.5.0"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"cfg-if",
|
|
763
|
+
]
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "crossbeam-utils"
|
|
767
|
+
version = "0.8.22"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "crossterm"
|
|
773
|
+
version = "0.29.0"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"bitflags",
|
|
778
|
+
"crossterm_winapi",
|
|
779
|
+
"document-features",
|
|
780
|
+
"parking_lot",
|
|
781
|
+
"rustix",
|
|
782
|
+
"winapi",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "crossterm_winapi"
|
|
787
|
+
version = "0.9.1"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
790
|
+
dependencies = [
|
|
791
|
+
"winapi",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "crunchy"
|
|
796
|
+
version = "0.2.4"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "crypto-common"
|
|
802
|
+
version = "0.1.7"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"generic-array",
|
|
807
|
+
"typenum",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "crypto-common"
|
|
812
|
+
version = "0.2.2"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"hybrid-array",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "csv"
|
|
821
|
+
version = "1.4.0"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"csv-core",
|
|
826
|
+
"itoa",
|
|
827
|
+
"ryu",
|
|
828
|
+
"serde_core",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "csv-core"
|
|
833
|
+
version = "0.1.13"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"memchr",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "dashmap"
|
|
842
|
+
version = "6.2.1"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"cfg-if",
|
|
847
|
+
"crossbeam-utils",
|
|
848
|
+
"hashbrown 0.14.5",
|
|
849
|
+
"lock_api",
|
|
850
|
+
"once_cell",
|
|
851
|
+
"parking_lot_core",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "datafusion"
|
|
856
|
+
version = "54.1.0"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "754ef4e8f073922a26f5b23133b9db4829342362b09be0bc94309cf261c2f098"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"arrow",
|
|
861
|
+
"arrow-schema",
|
|
862
|
+
"async-trait",
|
|
863
|
+
"chrono",
|
|
864
|
+
"datafusion-catalog",
|
|
865
|
+
"datafusion-catalog-listing",
|
|
866
|
+
"datafusion-common",
|
|
867
|
+
"datafusion-common-runtime",
|
|
868
|
+
"datafusion-datasource",
|
|
869
|
+
"datafusion-datasource-arrow",
|
|
870
|
+
"datafusion-datasource-csv",
|
|
871
|
+
"datafusion-datasource-json",
|
|
872
|
+
"datafusion-datasource-parquet",
|
|
873
|
+
"datafusion-execution",
|
|
874
|
+
"datafusion-expr",
|
|
875
|
+
"datafusion-expr-common",
|
|
876
|
+
"datafusion-functions",
|
|
877
|
+
"datafusion-functions-aggregate",
|
|
878
|
+
"datafusion-functions-nested",
|
|
879
|
+
"datafusion-functions-table",
|
|
880
|
+
"datafusion-functions-window",
|
|
881
|
+
"datafusion-optimizer",
|
|
882
|
+
"datafusion-physical-expr",
|
|
883
|
+
"datafusion-physical-expr-adapter",
|
|
884
|
+
"datafusion-physical-expr-common",
|
|
885
|
+
"datafusion-physical-optimizer",
|
|
886
|
+
"datafusion-physical-plan",
|
|
887
|
+
"datafusion-session",
|
|
888
|
+
"datafusion-sql",
|
|
889
|
+
"futures",
|
|
890
|
+
"indexmap",
|
|
891
|
+
"itertools 0.14.0",
|
|
892
|
+
"log",
|
|
893
|
+
"object_store 0.13.2",
|
|
894
|
+
"parking_lot",
|
|
895
|
+
"parquet",
|
|
896
|
+
"sqlparser",
|
|
897
|
+
"tempfile",
|
|
898
|
+
"tokio",
|
|
899
|
+
"url",
|
|
900
|
+
"uuid",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "datafusion-catalog"
|
|
905
|
+
version = "54.1.0"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "06afd1e38dd27bbb1258685a1fc6524df6aff4e07b25b393a47de59635178d99"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"arrow",
|
|
910
|
+
"async-trait",
|
|
911
|
+
"dashmap",
|
|
912
|
+
"datafusion-common",
|
|
913
|
+
"datafusion-common-runtime",
|
|
914
|
+
"datafusion-datasource",
|
|
915
|
+
"datafusion-execution",
|
|
916
|
+
"datafusion-expr",
|
|
917
|
+
"datafusion-physical-expr",
|
|
918
|
+
"datafusion-physical-plan",
|
|
919
|
+
"datafusion-session",
|
|
920
|
+
"futures",
|
|
921
|
+
"itertools 0.14.0",
|
|
922
|
+
"log",
|
|
923
|
+
"object_store 0.13.2",
|
|
924
|
+
"parking_lot",
|
|
925
|
+
"tokio",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "datafusion-catalog-listing"
|
|
930
|
+
version = "54.1.0"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "f0668fb32c12065ec242be0e5b4bc62bd7a06a0be3ecd83791ef877e4be67e02"
|
|
933
|
+
dependencies = [
|
|
934
|
+
"arrow",
|
|
935
|
+
"async-trait",
|
|
936
|
+
"datafusion-catalog",
|
|
937
|
+
"datafusion-common",
|
|
938
|
+
"datafusion-datasource",
|
|
939
|
+
"datafusion-execution",
|
|
940
|
+
"datafusion-expr",
|
|
941
|
+
"datafusion-physical-expr",
|
|
942
|
+
"datafusion-physical-expr-adapter",
|
|
943
|
+
"datafusion-physical-expr-common",
|
|
944
|
+
"datafusion-physical-plan",
|
|
945
|
+
"futures",
|
|
946
|
+
"itertools 0.14.0",
|
|
947
|
+
"log",
|
|
948
|
+
"object_store 0.13.2",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "datafusion-common"
|
|
953
|
+
version = "54.1.0"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "ca43b263cdff57042cfa8fb817fb3469f4878933380dccff25f5e793580abbf9"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"arrow",
|
|
958
|
+
"arrow-ipc",
|
|
959
|
+
"arrow-schema",
|
|
960
|
+
"chrono",
|
|
961
|
+
"foldhash 0.2.0",
|
|
962
|
+
"half",
|
|
963
|
+
"hashbrown 0.17.1",
|
|
964
|
+
"indexmap",
|
|
965
|
+
"itertools 0.14.0",
|
|
966
|
+
"libc",
|
|
967
|
+
"log",
|
|
968
|
+
"object_store 0.13.2",
|
|
969
|
+
"parquet",
|
|
970
|
+
"sqlparser",
|
|
971
|
+
"tokio",
|
|
972
|
+
"uuid",
|
|
973
|
+
"web-time",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "datafusion-common-runtime"
|
|
978
|
+
version = "54.1.0"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "05f0ba2b864792bdca4d76c59a1de0ab6e1b61946596b9936888dbd6360035f2"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"futures",
|
|
983
|
+
"log",
|
|
984
|
+
"tokio",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "datafusion-datasource"
|
|
989
|
+
version = "54.1.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "b840a8bce0bcbf5afad02946d438591e7c373f7afccaf3d874c04485772514dd"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"arrow",
|
|
994
|
+
"async-trait",
|
|
995
|
+
"bytes",
|
|
996
|
+
"chrono",
|
|
997
|
+
"datafusion-common",
|
|
998
|
+
"datafusion-common-runtime",
|
|
999
|
+
"datafusion-execution",
|
|
1000
|
+
"datafusion-expr",
|
|
1001
|
+
"datafusion-physical-expr",
|
|
1002
|
+
"datafusion-physical-expr-adapter",
|
|
1003
|
+
"datafusion-physical-expr-common",
|
|
1004
|
+
"datafusion-physical-plan",
|
|
1005
|
+
"datafusion-session",
|
|
1006
|
+
"futures",
|
|
1007
|
+
"glob",
|
|
1008
|
+
"itertools 0.14.0",
|
|
1009
|
+
"log",
|
|
1010
|
+
"object_store 0.13.2",
|
|
1011
|
+
"parking_lot",
|
|
1012
|
+
"rand 0.9.5",
|
|
1013
|
+
"tokio",
|
|
1014
|
+
"url",
|
|
1015
|
+
]
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "datafusion-datasource-arrow"
|
|
1019
|
+
version = "54.1.0"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "a24cc0b9cf6e367f27f27406eff13abf48a11b72446aaa40b3105c0ded5c17d9"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"arrow",
|
|
1024
|
+
"arrow-ipc",
|
|
1025
|
+
"async-trait",
|
|
1026
|
+
"bytes",
|
|
1027
|
+
"datafusion-common",
|
|
1028
|
+
"datafusion-common-runtime",
|
|
1029
|
+
"datafusion-datasource",
|
|
1030
|
+
"datafusion-execution",
|
|
1031
|
+
"datafusion-expr",
|
|
1032
|
+
"datafusion-physical-expr-common",
|
|
1033
|
+
"datafusion-physical-plan",
|
|
1034
|
+
"datafusion-session",
|
|
1035
|
+
"futures",
|
|
1036
|
+
"itertools 0.14.0",
|
|
1037
|
+
"object_store 0.13.2",
|
|
1038
|
+
"tokio",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "datafusion-datasource-csv"
|
|
1043
|
+
version = "54.1.0"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "e1abe56b2a7a2d1d6de5117dd1a203181e267f28529faa5da546947621b697d7"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"arrow",
|
|
1048
|
+
"async-trait",
|
|
1049
|
+
"bytes",
|
|
1050
|
+
"datafusion-common",
|
|
1051
|
+
"datafusion-common-runtime",
|
|
1052
|
+
"datafusion-datasource",
|
|
1053
|
+
"datafusion-execution",
|
|
1054
|
+
"datafusion-expr",
|
|
1055
|
+
"datafusion-physical-expr-common",
|
|
1056
|
+
"datafusion-physical-plan",
|
|
1057
|
+
"datafusion-session",
|
|
1058
|
+
"futures",
|
|
1059
|
+
"object_store 0.13.2",
|
|
1060
|
+
"regex",
|
|
1061
|
+
"tokio",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "datafusion-datasource-json"
|
|
1066
|
+
version = "54.1.0"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "9c3e467f0611ad7bdd5aad17c63c9bb6182d04e5282e5496d897ea2b49c024ba"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"arrow",
|
|
1071
|
+
"async-trait",
|
|
1072
|
+
"bytes",
|
|
1073
|
+
"datafusion-common",
|
|
1074
|
+
"datafusion-common-runtime",
|
|
1075
|
+
"datafusion-datasource",
|
|
1076
|
+
"datafusion-execution",
|
|
1077
|
+
"datafusion-expr",
|
|
1078
|
+
"datafusion-physical-expr-common",
|
|
1079
|
+
"datafusion-physical-plan",
|
|
1080
|
+
"datafusion-session",
|
|
1081
|
+
"futures",
|
|
1082
|
+
"object_store 0.13.2",
|
|
1083
|
+
"tokio",
|
|
1084
|
+
"tokio-stream",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "datafusion-datasource-parquet"
|
|
1089
|
+
version = "54.1.0"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "4cc35b92cd560082155e80d9c826929c852d3c51543f4affd3a51c464a0aab3a"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"arrow",
|
|
1094
|
+
"async-trait",
|
|
1095
|
+
"bytes",
|
|
1096
|
+
"datafusion-common",
|
|
1097
|
+
"datafusion-common-runtime",
|
|
1098
|
+
"datafusion-datasource",
|
|
1099
|
+
"datafusion-execution",
|
|
1100
|
+
"datafusion-expr",
|
|
1101
|
+
"datafusion-functions",
|
|
1102
|
+
"datafusion-functions-aggregate-common",
|
|
1103
|
+
"datafusion-physical-expr",
|
|
1104
|
+
"datafusion-physical-expr-adapter",
|
|
1105
|
+
"datafusion-physical-expr-common",
|
|
1106
|
+
"datafusion-physical-plan",
|
|
1107
|
+
"datafusion-pruning",
|
|
1108
|
+
"datafusion-session",
|
|
1109
|
+
"futures",
|
|
1110
|
+
"itertools 0.14.0",
|
|
1111
|
+
"log",
|
|
1112
|
+
"object_store 0.13.2",
|
|
1113
|
+
"parking_lot",
|
|
1114
|
+
"parquet",
|
|
1115
|
+
"tokio",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "datafusion-doc"
|
|
1120
|
+
version = "54.1.0"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "d69bb69d8769e34f76839c960dbde24c1ac0c885a79b6c3c2287bdc56ec67891"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "datafusion-execution"
|
|
1126
|
+
version = "54.1.0"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "d8eac0a09bc8d263f52025cad9e001da4d8138d633fa288edda4d06b1772eae6"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"arrow",
|
|
1131
|
+
"arrow-buffer",
|
|
1132
|
+
"async-trait",
|
|
1133
|
+
"dashmap",
|
|
1134
|
+
"datafusion-common",
|
|
1135
|
+
"datafusion-expr",
|
|
1136
|
+
"datafusion-physical-expr-common",
|
|
1137
|
+
"futures",
|
|
1138
|
+
"log",
|
|
1139
|
+
"object_store 0.13.2",
|
|
1140
|
+
"parking_lot",
|
|
1141
|
+
"rand 0.9.5",
|
|
1142
|
+
"tempfile",
|
|
1143
|
+
"url",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "datafusion-expr"
|
|
1148
|
+
version = "54.1.0"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "eeb14d374767ee0fc62dc79a5ba8bcf8a63c14e993c7d992d0e63adfa23d77d3"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"arrow",
|
|
1153
|
+
"arrow-schema",
|
|
1154
|
+
"async-trait",
|
|
1155
|
+
"chrono",
|
|
1156
|
+
"datafusion-common",
|
|
1157
|
+
"datafusion-doc",
|
|
1158
|
+
"datafusion-expr-common",
|
|
1159
|
+
"datafusion-functions-aggregate-common",
|
|
1160
|
+
"datafusion-functions-window-common",
|
|
1161
|
+
"datafusion-physical-expr-common",
|
|
1162
|
+
"indexmap",
|
|
1163
|
+
"itertools 0.14.0",
|
|
1164
|
+
"serde_json",
|
|
1165
|
+
"sqlparser",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "datafusion-expr-common"
|
|
1170
|
+
version = "54.1.0"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "b7b19a8c95522bee8cbb313d74263b85e355d2b52f42e67ef5694bf5de9e9356"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"arrow",
|
|
1175
|
+
"datafusion-common",
|
|
1176
|
+
"indexmap",
|
|
1177
|
+
"itertools 0.14.0",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "datafusion-functions"
|
|
1182
|
+
version = "54.1.0"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "5f64c983bbbdcb729d921a2b2ac3375598719b5cc0c30345ad664936f3176fc7"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"arrow",
|
|
1187
|
+
"arrow-buffer",
|
|
1188
|
+
"base64",
|
|
1189
|
+
"chrono",
|
|
1190
|
+
"chrono-tz",
|
|
1191
|
+
"datafusion-common",
|
|
1192
|
+
"datafusion-doc",
|
|
1193
|
+
"datafusion-execution",
|
|
1194
|
+
"datafusion-expr",
|
|
1195
|
+
"datafusion-expr-common",
|
|
1196
|
+
"datafusion-macros",
|
|
1197
|
+
"datafusion-physical-expr-common",
|
|
1198
|
+
"hex",
|
|
1199
|
+
"itertools 0.14.0",
|
|
1200
|
+
"log",
|
|
1201
|
+
"memchr",
|
|
1202
|
+
"num-traits",
|
|
1203
|
+
"rand 0.9.5",
|
|
1204
|
+
"regex",
|
|
1205
|
+
"uuid",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "datafusion-functions-aggregate"
|
|
1210
|
+
version = "54.1.0"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "89bc17041e424a47ed062f43df24d84aab8b57c4c3221e5c1a5eef46d6c5718b"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"arrow",
|
|
1215
|
+
"datafusion-common",
|
|
1216
|
+
"datafusion-doc",
|
|
1217
|
+
"datafusion-execution",
|
|
1218
|
+
"datafusion-expr",
|
|
1219
|
+
"datafusion-functions-aggregate-common",
|
|
1220
|
+
"datafusion-macros",
|
|
1221
|
+
"datafusion-physical-expr",
|
|
1222
|
+
"datafusion-physical-expr-common",
|
|
1223
|
+
"foldhash 0.2.0",
|
|
1224
|
+
"half",
|
|
1225
|
+
"log",
|
|
1226
|
+
"num-traits",
|
|
1227
|
+
]
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "datafusion-functions-aggregate-common"
|
|
1231
|
+
version = "54.1.0"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "97dd2a9e865c6108059f5b37b77934f84b50bfb108f837bd0e5c9536e03f0545"
|
|
1234
|
+
dependencies = [
|
|
1235
|
+
"arrow",
|
|
1236
|
+
"datafusion-common",
|
|
1237
|
+
"datafusion-expr-common",
|
|
1238
|
+
"datafusion-physical-expr-common",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "datafusion-functions-nested"
|
|
1243
|
+
version = "54.1.0"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "75f0bdfeef16d96417b9632ef855645376b242e9006a126dfd0bedfc54a93f5f"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"arrow",
|
|
1248
|
+
"arrow-ord",
|
|
1249
|
+
"datafusion-common",
|
|
1250
|
+
"datafusion-doc",
|
|
1251
|
+
"datafusion-execution",
|
|
1252
|
+
"datafusion-expr",
|
|
1253
|
+
"datafusion-expr-common",
|
|
1254
|
+
"datafusion-functions",
|
|
1255
|
+
"datafusion-functions-aggregate",
|
|
1256
|
+
"datafusion-functions-aggregate-common",
|
|
1257
|
+
"datafusion-macros",
|
|
1258
|
+
"datafusion-physical-expr-common",
|
|
1259
|
+
"hashbrown 0.17.1",
|
|
1260
|
+
"itertools 0.14.0",
|
|
1261
|
+
"itoa",
|
|
1262
|
+
"log",
|
|
1263
|
+
"memchr",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "datafusion-functions-table"
|
|
1268
|
+
version = "54.1.0"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "f4e4941673c917819616877e9993da4503e4f4739812be0bc32c5356184c6383"
|
|
1271
|
+
dependencies = [
|
|
1272
|
+
"arrow",
|
|
1273
|
+
"async-trait",
|
|
1274
|
+
"datafusion-catalog",
|
|
1275
|
+
"datafusion-common",
|
|
1276
|
+
"datafusion-expr",
|
|
1277
|
+
"datafusion-physical-expr",
|
|
1278
|
+
"datafusion-physical-plan",
|
|
1279
|
+
"parking_lot",
|
|
1280
|
+
]
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "datafusion-functions-window"
|
|
1284
|
+
version = "54.1.0"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "12dd2e16c12b84b6f6b41b19f55b366dd1c46876bb35b86896c6349067379e8d"
|
|
1287
|
+
dependencies = [
|
|
1288
|
+
"arrow",
|
|
1289
|
+
"datafusion-common",
|
|
1290
|
+
"datafusion-doc",
|
|
1291
|
+
"datafusion-expr",
|
|
1292
|
+
"datafusion-functions-window-common",
|
|
1293
|
+
"datafusion-macros",
|
|
1294
|
+
"datafusion-physical-expr",
|
|
1295
|
+
"datafusion-physical-expr-common",
|
|
1296
|
+
"log",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "datafusion-functions-window-common"
|
|
1301
|
+
version = "54.1.0"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "4cdc5e4b6f8b6ef823cc1c761f85088ad4c884fe8df64df3cbcc6b2b84698441"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"datafusion-common",
|
|
1306
|
+
"datafusion-physical-expr-common",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "datafusion-macros"
|
|
1311
|
+
version = "54.1.0"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "1a3614234dd93578c92428cb4f408e020874f0d2b7e6c90c928d9d28b5df2ceb"
|
|
1314
|
+
dependencies = [
|
|
1315
|
+
"datafusion-doc",
|
|
1316
|
+
"quote",
|
|
1317
|
+
"syn 2.0.119",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "datafusion-optimizer"
|
|
1322
|
+
version = "54.1.0"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "a0635620b050b81bb92764e99250868f654e2cd5ad1bece413283b3f73c83179"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"arrow",
|
|
1327
|
+
"chrono",
|
|
1328
|
+
"datafusion-common",
|
|
1329
|
+
"datafusion-expr",
|
|
1330
|
+
"datafusion-expr-common",
|
|
1331
|
+
"datafusion-physical-expr",
|
|
1332
|
+
"indexmap",
|
|
1333
|
+
"itertools 0.14.0",
|
|
1334
|
+
"log",
|
|
1335
|
+
"regex",
|
|
1336
|
+
"regex-syntax",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "datafusion-physical-expr"
|
|
1341
|
+
version = "54.1.0"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "8cabf7a86eb70b816729e33c81bf7767c936ee1226f607a114f5dac2decac8d0"
|
|
1344
|
+
dependencies = [
|
|
1345
|
+
"arrow",
|
|
1346
|
+
"datafusion-common",
|
|
1347
|
+
"datafusion-expr",
|
|
1348
|
+
"datafusion-expr-common",
|
|
1349
|
+
"datafusion-functions-aggregate-common",
|
|
1350
|
+
"datafusion-physical-expr-common",
|
|
1351
|
+
"half",
|
|
1352
|
+
"hashbrown 0.17.1",
|
|
1353
|
+
"indexmap",
|
|
1354
|
+
"itertools 0.14.0",
|
|
1355
|
+
"parking_lot",
|
|
1356
|
+
"petgraph",
|
|
1357
|
+
"tokio",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "datafusion-physical-expr-adapter"
|
|
1362
|
+
version = "54.1.0"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "de222e04f7e6744501555a54ab0abe26bfdfebee380af79a9bdc175704246859"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"arrow",
|
|
1367
|
+
"datafusion-common",
|
|
1368
|
+
"datafusion-expr",
|
|
1369
|
+
"datafusion-functions",
|
|
1370
|
+
"datafusion-physical-expr",
|
|
1371
|
+
"datafusion-physical-expr-common",
|
|
1372
|
+
"itertools 0.14.0",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "datafusion-physical-expr-common"
|
|
1377
|
+
version = "54.1.0"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "72d0d0057fc5a502d45c870cb6d47c66eb7bdd5edb1bd71ad6f3f724975ac2a8"
|
|
1380
|
+
dependencies = [
|
|
1381
|
+
"arrow",
|
|
1382
|
+
"chrono",
|
|
1383
|
+
"datafusion-common",
|
|
1384
|
+
"datafusion-expr-common",
|
|
1385
|
+
"hashbrown 0.17.1",
|
|
1386
|
+
"indexmap",
|
|
1387
|
+
"itertools 0.14.0",
|
|
1388
|
+
"parking_lot",
|
|
1389
|
+
"pin-project",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "datafusion-physical-optimizer"
|
|
1394
|
+
version = "54.1.0"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "86046eed10950c5f9aaed9acfd148e9bd2e1dfdfe4f9aef607d1447b271e4183"
|
|
1397
|
+
dependencies = [
|
|
1398
|
+
"arrow",
|
|
1399
|
+
"datafusion-common",
|
|
1400
|
+
"datafusion-execution",
|
|
1401
|
+
"datafusion-expr",
|
|
1402
|
+
"datafusion-expr-common",
|
|
1403
|
+
"datafusion-physical-expr",
|
|
1404
|
+
"datafusion-physical-expr-common",
|
|
1405
|
+
"datafusion-physical-plan",
|
|
1406
|
+
"datafusion-pruning",
|
|
1407
|
+
"itertools 0.14.0",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "datafusion-physical-plan"
|
|
1412
|
+
version = "54.1.0"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "9bc84da934c903407ba297971ebcc020c4c1a38aafd765d6c144c76eff3fa6a1"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"arrow",
|
|
1417
|
+
"arrow-data",
|
|
1418
|
+
"arrow-ipc",
|
|
1419
|
+
"arrow-ord",
|
|
1420
|
+
"arrow-schema",
|
|
1421
|
+
"async-trait",
|
|
1422
|
+
"datafusion-common",
|
|
1423
|
+
"datafusion-common-runtime",
|
|
1424
|
+
"datafusion-execution",
|
|
1425
|
+
"datafusion-expr",
|
|
1426
|
+
"datafusion-functions",
|
|
1427
|
+
"datafusion-functions-aggregate-common",
|
|
1428
|
+
"datafusion-functions-window-common",
|
|
1429
|
+
"datafusion-physical-expr",
|
|
1430
|
+
"datafusion-physical-expr-common",
|
|
1431
|
+
"futures",
|
|
1432
|
+
"half",
|
|
1433
|
+
"hashbrown 0.17.1",
|
|
1434
|
+
"indexmap",
|
|
1435
|
+
"itertools 0.14.0",
|
|
1436
|
+
"log",
|
|
1437
|
+
"num-traits",
|
|
1438
|
+
"parking_lot",
|
|
1439
|
+
"pin-project-lite",
|
|
1440
|
+
"tokio",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "datafusion-pruning"
|
|
1445
|
+
version = "54.1.0"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "eb63eeac6de19be40f487b65dd84e546195f783c5a9928618e0c4f2a3569b0d7"
|
|
1448
|
+
dependencies = [
|
|
1449
|
+
"arrow",
|
|
1450
|
+
"datafusion-common",
|
|
1451
|
+
"datafusion-datasource",
|
|
1452
|
+
"datafusion-expr-common",
|
|
1453
|
+
"datafusion-physical-expr",
|
|
1454
|
+
"datafusion-physical-expr-common",
|
|
1455
|
+
"datafusion-physical-plan",
|
|
1456
|
+
"log",
|
|
1457
|
+
]
|
|
1458
|
+
|
|
1459
|
+
[[package]]
|
|
1460
|
+
name = "datafusion-session"
|
|
1461
|
+
version = "54.1.0"
|
|
1462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
+
checksum = "5f961d209177f91bd014db5cbb2c33b7d28a2597b9003e77f17aeb712964315a"
|
|
1464
|
+
dependencies = [
|
|
1465
|
+
"async-trait",
|
|
1466
|
+
"datafusion-common",
|
|
1467
|
+
"datafusion-execution",
|
|
1468
|
+
"datafusion-expr",
|
|
1469
|
+
"datafusion-physical-plan",
|
|
1470
|
+
"parking_lot",
|
|
1471
|
+
]
|
|
1472
|
+
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "datafusion-sql"
|
|
1475
|
+
version = "54.1.0"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "b1d71cb454da682b2af7488e1fc1ddd72ee1b28f19297b8ccad73f0a21ee9a69"
|
|
1478
|
+
dependencies = [
|
|
1479
|
+
"arrow",
|
|
1480
|
+
"bigdecimal",
|
|
1481
|
+
"chrono",
|
|
1482
|
+
"datafusion-common",
|
|
1483
|
+
"datafusion-expr",
|
|
1484
|
+
"datafusion-functions-nested",
|
|
1485
|
+
"indexmap",
|
|
1486
|
+
"log",
|
|
1487
|
+
"regex",
|
|
1488
|
+
"sqlparser",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "digest"
|
|
1493
|
+
version = "0.10.7"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"crypto-common 0.1.7",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "digest"
|
|
1502
|
+
version = "0.11.3"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1505
|
+
dependencies = [
|
|
1506
|
+
"block-buffer",
|
|
1507
|
+
"crypto-common 0.2.2",
|
|
1508
|
+
]
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "displaydoc"
|
|
1512
|
+
version = "0.2.6"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
1515
|
+
dependencies = [
|
|
1516
|
+
"proc-macro2",
|
|
1517
|
+
"quote",
|
|
1518
|
+
"syn 2.0.119",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "document-features"
|
|
1523
|
+
version = "0.2.12"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"litrs",
|
|
1528
|
+
]
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "dunce"
|
|
1532
|
+
version = "1.0.5"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "either"
|
|
1538
|
+
version = "1.16.0"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "equivalent"
|
|
1544
|
+
version = "1.0.2"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "errno"
|
|
1550
|
+
version = "0.3.14"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"libc",
|
|
1555
|
+
"windows-sys 0.61.2",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "fastrand"
|
|
1560
|
+
version = "2.5.0"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "find-msvc-tools"
|
|
1566
|
+
version = "0.1.9"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "fixedbitset"
|
|
1572
|
+
version = "0.5.7"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "flatbuffers"
|
|
1578
|
+
version = "25.12.19"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"bitflags",
|
|
1583
|
+
"rustc_version",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "flate2"
|
|
1588
|
+
version = "1.1.9"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"miniz_oxide",
|
|
1593
|
+
"zlib-rs",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "fnv"
|
|
1598
|
+
version = "1.0.7"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "foldhash"
|
|
1604
|
+
version = "0.1.5"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "foldhash"
|
|
1610
|
+
version = "0.2.0"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1613
|
+
|
|
1614
|
+
[[package]]
|
|
1615
|
+
name = "form_urlencoded"
|
|
1616
|
+
version = "1.2.2"
|
|
1617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1618
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1619
|
+
dependencies = [
|
|
1620
|
+
"percent-encoding",
|
|
1621
|
+
]
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "fs4"
|
|
1625
|
+
version = "0.13.1"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
|
|
1628
|
+
dependencies = [
|
|
1629
|
+
"rustix",
|
|
1630
|
+
"windows-sys 0.59.0",
|
|
1631
|
+
]
|
|
1632
|
+
|
|
1633
|
+
[[package]]
|
|
1634
|
+
name = "fs_extra"
|
|
1635
|
+
version = "1.3.0"
|
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
1638
|
+
|
|
1639
|
+
[[package]]
|
|
1640
|
+
name = "futures"
|
|
1641
|
+
version = "0.3.33"
|
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
+
checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
|
|
1644
|
+
dependencies = [
|
|
1645
|
+
"futures-channel",
|
|
1646
|
+
"futures-core",
|
|
1647
|
+
"futures-executor",
|
|
1648
|
+
"futures-io",
|
|
1649
|
+
"futures-sink",
|
|
1650
|
+
"futures-task",
|
|
1651
|
+
"futures-util",
|
|
1652
|
+
]
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "futures-channel"
|
|
1656
|
+
version = "0.3.33"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
1659
|
+
dependencies = [
|
|
1660
|
+
"futures-core",
|
|
1661
|
+
"futures-sink",
|
|
1662
|
+
]
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "futures-core"
|
|
1666
|
+
version = "0.3.33"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "futures-executor"
|
|
1672
|
+
version = "0.3.33"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
|
|
1675
|
+
dependencies = [
|
|
1676
|
+
"futures-core",
|
|
1677
|
+
"futures-task",
|
|
1678
|
+
"futures-util",
|
|
1679
|
+
]
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "futures-io"
|
|
1683
|
+
version = "0.3.33"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "futures-macro"
|
|
1689
|
+
version = "0.3.33"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"proc-macro2",
|
|
1694
|
+
"quote",
|
|
1695
|
+
"syn 2.0.119",
|
|
1696
|
+
]
|
|
1697
|
+
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "futures-sink"
|
|
1700
|
+
version = "0.3.33"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "futures-task"
|
|
1706
|
+
version = "0.3.33"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
1709
|
+
|
|
1710
|
+
[[package]]
|
|
1711
|
+
name = "futures-util"
|
|
1712
|
+
version = "0.3.33"
|
|
1713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
1715
|
+
dependencies = [
|
|
1716
|
+
"futures-channel",
|
|
1717
|
+
"futures-core",
|
|
1718
|
+
"futures-io",
|
|
1719
|
+
"futures-macro",
|
|
1720
|
+
"futures-sink",
|
|
1721
|
+
"futures-task",
|
|
1722
|
+
"memchr",
|
|
1723
|
+
"pin-project-lite",
|
|
1724
|
+
"slab",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "generic-array"
|
|
1729
|
+
version = "0.14.7"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"typenum",
|
|
1734
|
+
"version_check",
|
|
1735
|
+
]
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "getrandom"
|
|
1739
|
+
version = "0.2.17"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"cfg-if",
|
|
1744
|
+
"js-sys",
|
|
1745
|
+
"libc",
|
|
1746
|
+
"wasi",
|
|
1747
|
+
"wasm-bindgen",
|
|
1748
|
+
]
|
|
1749
|
+
|
|
1750
|
+
[[package]]
|
|
1751
|
+
name = "getrandom"
|
|
1752
|
+
version = "0.3.4"
|
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1755
|
+
dependencies = [
|
|
1756
|
+
"cfg-if",
|
|
1757
|
+
"libc",
|
|
1758
|
+
"r-efi 5.3.0",
|
|
1759
|
+
"wasip2",
|
|
1760
|
+
]
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "getrandom"
|
|
1764
|
+
version = "0.4.3"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1767
|
+
dependencies = [
|
|
1768
|
+
"cfg-if",
|
|
1769
|
+
"js-sys",
|
|
1770
|
+
"libc",
|
|
1771
|
+
"r-efi 6.0.0",
|
|
1772
|
+
"rand_core 0.10.1",
|
|
1773
|
+
"wasm-bindgen",
|
|
1774
|
+
]
|
|
1775
|
+
|
|
1776
|
+
[[package]]
|
|
1777
|
+
name = "glob"
|
|
1778
|
+
version = "0.3.4"
|
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "h2"
|
|
1784
|
+
version = "0.4.14"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
1787
|
+
dependencies = [
|
|
1788
|
+
"atomic-waker",
|
|
1789
|
+
"bytes",
|
|
1790
|
+
"fnv",
|
|
1791
|
+
"futures-core",
|
|
1792
|
+
"futures-sink",
|
|
1793
|
+
"http",
|
|
1794
|
+
"indexmap",
|
|
1795
|
+
"slab",
|
|
1796
|
+
"tokio",
|
|
1797
|
+
"tokio-util",
|
|
1798
|
+
"tracing",
|
|
1799
|
+
]
|
|
1800
|
+
|
|
1801
|
+
[[package]]
|
|
1802
|
+
name = "h5i-db-bench"
|
|
1803
|
+
version = "0.1.0"
|
|
1804
|
+
dependencies = [
|
|
1805
|
+
"arrow",
|
|
1806
|
+
"chrono",
|
|
1807
|
+
"clap",
|
|
1808
|
+
"datafusion",
|
|
1809
|
+
"futures",
|
|
1810
|
+
"h5i-db-core",
|
|
1811
|
+
"h5i-db-query",
|
|
1812
|
+
"rand 0.9.5",
|
|
1813
|
+
"serde",
|
|
1814
|
+
"serde_json",
|
|
1815
|
+
"tempfile",
|
|
1816
|
+
"tokio",
|
|
1817
|
+
]
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "h5i-db-cli"
|
|
1821
|
+
version = "0.1.0"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"arrow",
|
|
1824
|
+
"bytes",
|
|
1825
|
+
"chrono",
|
|
1826
|
+
"clap",
|
|
1827
|
+
"comfy-table",
|
|
1828
|
+
"datafusion",
|
|
1829
|
+
"futures",
|
|
1830
|
+
"h5i-db-core",
|
|
1831
|
+
"h5i-db-query",
|
|
1832
|
+
"h5i-db-ui",
|
|
1833
|
+
"humantime",
|
|
1834
|
+
"parquet",
|
|
1835
|
+
"serde",
|
|
1836
|
+
"serde_json",
|
|
1837
|
+
"tempfile",
|
|
1838
|
+
"tokio",
|
|
1839
|
+
"tokio-util",
|
|
1840
|
+
"tracing",
|
|
1841
|
+
"tracing-subscriber",
|
|
1842
|
+
"uuid",
|
|
1843
|
+
]
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "h5i-db-core"
|
|
1847
|
+
version = "0.1.0"
|
|
1848
|
+
dependencies = [
|
|
1849
|
+
"arrow",
|
|
1850
|
+
"arrow-schema",
|
|
1851
|
+
"async-trait",
|
|
1852
|
+
"base64",
|
|
1853
|
+
"blake3",
|
|
1854
|
+
"bytes",
|
|
1855
|
+
"chrono",
|
|
1856
|
+
"fs4",
|
|
1857
|
+
"futures",
|
|
1858
|
+
"object_store 0.13.2",
|
|
1859
|
+
"parquet",
|
|
1860
|
+
"rand 0.9.5",
|
|
1861
|
+
"serde",
|
|
1862
|
+
"serde_json",
|
|
1863
|
+
"tempfile",
|
|
1864
|
+
"thiserror",
|
|
1865
|
+
"tokio",
|
|
1866
|
+
"tracing",
|
|
1867
|
+
"url",
|
|
1868
|
+
"uuid",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "h5i-db-observability"
|
|
1873
|
+
version = "0.1.0"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"blake3",
|
|
1876
|
+
"serde",
|
|
1877
|
+
"serde_json",
|
|
1878
|
+
"uuid",
|
|
1879
|
+
]
|
|
1880
|
+
|
|
1881
|
+
[[package]]
|
|
1882
|
+
name = "h5i-db-python"
|
|
1883
|
+
version = "0.1.0"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"arrow",
|
|
1886
|
+
"chrono",
|
|
1887
|
+
"futures",
|
|
1888
|
+
"h5i-db-core",
|
|
1889
|
+
"h5i-db-query",
|
|
1890
|
+
"pyo3",
|
|
1891
|
+
"serde",
|
|
1892
|
+
"serde_json",
|
|
1893
|
+
"tokio",
|
|
1894
|
+
"uuid",
|
|
1895
|
+
]
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "h5i-db-query"
|
|
1899
|
+
version = "0.1.0"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"arrow",
|
|
1902
|
+
"async-trait",
|
|
1903
|
+
"blake3",
|
|
1904
|
+
"bytes",
|
|
1905
|
+
"chrono",
|
|
1906
|
+
"chrono-tz",
|
|
1907
|
+
"datafusion",
|
|
1908
|
+
"datafusion-datasource-parquet",
|
|
1909
|
+
"datafusion-pruning",
|
|
1910
|
+
"futures",
|
|
1911
|
+
"h5i-db-core",
|
|
1912
|
+
"h5i-db-observability",
|
|
1913
|
+
"object_store 0.13.2",
|
|
1914
|
+
"parquet",
|
|
1915
|
+
"rand 0.9.5",
|
|
1916
|
+
"serde",
|
|
1917
|
+
"serde_json",
|
|
1918
|
+
"tempfile",
|
|
1919
|
+
"tokio",
|
|
1920
|
+
"tracing",
|
|
1921
|
+
"url",
|
|
1922
|
+
"uuid",
|
|
1923
|
+
]
|
|
1924
|
+
|
|
1925
|
+
[[package]]
|
|
1926
|
+
name = "h5i-db-ui"
|
|
1927
|
+
version = "0.1.0"
|
|
1928
|
+
dependencies = [
|
|
1929
|
+
"arrow",
|
|
1930
|
+
"axum",
|
|
1931
|
+
"base64",
|
|
1932
|
+
"chrono",
|
|
1933
|
+
"h5i-db-core",
|
|
1934
|
+
"h5i-db-query",
|
|
1935
|
+
"http-body-util",
|
|
1936
|
+
"serde",
|
|
1937
|
+
"serde_json",
|
|
1938
|
+
"tempfile",
|
|
1939
|
+
"tokio",
|
|
1940
|
+
"tower",
|
|
1941
|
+
"tower-http",
|
|
1942
|
+
"tracing",
|
|
1943
|
+
"uuid",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "half"
|
|
1948
|
+
version = "2.7.1"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"cfg-if",
|
|
1953
|
+
"crunchy",
|
|
1954
|
+
"num-traits",
|
|
1955
|
+
"zerocopy",
|
|
1956
|
+
]
|
|
1957
|
+
|
|
1958
|
+
[[package]]
|
|
1959
|
+
name = "hashbrown"
|
|
1960
|
+
version = "0.14.5"
|
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "hashbrown"
|
|
1966
|
+
version = "0.15.5"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"foldhash 0.1.5",
|
|
1971
|
+
]
|
|
1972
|
+
|
|
1973
|
+
[[package]]
|
|
1974
|
+
name = "hashbrown"
|
|
1975
|
+
version = "0.17.1"
|
|
1976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1978
|
+
dependencies = [
|
|
1979
|
+
"allocator-api2",
|
|
1980
|
+
"equivalent",
|
|
1981
|
+
"foldhash 0.2.0",
|
|
1982
|
+
]
|
|
1983
|
+
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "heck"
|
|
1986
|
+
version = "0.5.0"
|
|
1987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1989
|
+
|
|
1990
|
+
[[package]]
|
|
1991
|
+
name = "hex"
|
|
1992
|
+
version = "0.4.3"
|
|
1993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1995
|
+
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "http"
|
|
1998
|
+
version = "1.4.2"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
2001
|
+
dependencies = [
|
|
2002
|
+
"bytes",
|
|
2003
|
+
"itoa",
|
|
2004
|
+
]
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "http-body"
|
|
2008
|
+
version = "1.1.0"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
2011
|
+
dependencies = [
|
|
2012
|
+
"bytes",
|
|
2013
|
+
"http",
|
|
2014
|
+
]
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "http-body-util"
|
|
2018
|
+
version = "0.1.4"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"bytes",
|
|
2023
|
+
"futures-core",
|
|
2024
|
+
"http",
|
|
2025
|
+
"http-body",
|
|
2026
|
+
"pin-project-lite",
|
|
2027
|
+
]
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "httparse"
|
|
2031
|
+
version = "1.10.1"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "httpdate"
|
|
2037
|
+
version = "1.0.3"
|
|
2038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "humantime"
|
|
2043
|
+
version = "2.4.0"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "hybrid-array"
|
|
2049
|
+
version = "0.4.13"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
|
|
2052
|
+
dependencies = [
|
|
2053
|
+
"typenum",
|
|
2054
|
+
]
|
|
2055
|
+
|
|
2056
|
+
[[package]]
|
|
2057
|
+
name = "hyper"
|
|
2058
|
+
version = "1.11.0"
|
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
+
checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
|
|
2061
|
+
dependencies = [
|
|
2062
|
+
"atomic-waker",
|
|
2063
|
+
"bytes",
|
|
2064
|
+
"futures-channel",
|
|
2065
|
+
"futures-core",
|
|
2066
|
+
"h2",
|
|
2067
|
+
"http",
|
|
2068
|
+
"http-body",
|
|
2069
|
+
"httparse",
|
|
2070
|
+
"httpdate",
|
|
2071
|
+
"itoa",
|
|
2072
|
+
"pin-project-lite",
|
|
2073
|
+
"smallvec",
|
|
2074
|
+
"tokio",
|
|
2075
|
+
"want",
|
|
2076
|
+
]
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "hyper-rustls"
|
|
2080
|
+
version = "0.27.9"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
2083
|
+
dependencies = [
|
|
2084
|
+
"http",
|
|
2085
|
+
"hyper",
|
|
2086
|
+
"hyper-util",
|
|
2087
|
+
"rustls",
|
|
2088
|
+
"tokio",
|
|
2089
|
+
"tokio-rustls",
|
|
2090
|
+
"tower-service",
|
|
2091
|
+
]
|
|
2092
|
+
|
|
2093
|
+
[[package]]
|
|
2094
|
+
name = "hyper-util"
|
|
2095
|
+
version = "0.1.20"
|
|
2096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
2098
|
+
dependencies = [
|
|
2099
|
+
"base64",
|
|
2100
|
+
"bytes",
|
|
2101
|
+
"futures-channel",
|
|
2102
|
+
"futures-util",
|
|
2103
|
+
"http",
|
|
2104
|
+
"http-body",
|
|
2105
|
+
"hyper",
|
|
2106
|
+
"ipnet",
|
|
2107
|
+
"libc",
|
|
2108
|
+
"percent-encoding",
|
|
2109
|
+
"pin-project-lite",
|
|
2110
|
+
"socket2",
|
|
2111
|
+
"tokio",
|
|
2112
|
+
"tower-service",
|
|
2113
|
+
"tracing",
|
|
2114
|
+
]
|
|
2115
|
+
|
|
2116
|
+
[[package]]
|
|
2117
|
+
name = "iana-time-zone"
|
|
2118
|
+
version = "0.1.65"
|
|
2119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
2121
|
+
dependencies = [
|
|
2122
|
+
"android_system_properties",
|
|
2123
|
+
"core-foundation-sys",
|
|
2124
|
+
"iana-time-zone-haiku",
|
|
2125
|
+
"js-sys",
|
|
2126
|
+
"log",
|
|
2127
|
+
"wasm-bindgen",
|
|
2128
|
+
"windows-core",
|
|
2129
|
+
]
|
|
2130
|
+
|
|
2131
|
+
[[package]]
|
|
2132
|
+
name = "iana-time-zone-haiku"
|
|
2133
|
+
version = "0.1.2"
|
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
2136
|
+
dependencies = [
|
|
2137
|
+
"cc",
|
|
2138
|
+
]
|
|
2139
|
+
|
|
2140
|
+
[[package]]
|
|
2141
|
+
name = "icu_collections"
|
|
2142
|
+
version = "2.2.0"
|
|
2143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2144
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
2145
|
+
dependencies = [
|
|
2146
|
+
"displaydoc",
|
|
2147
|
+
"potential_utf",
|
|
2148
|
+
"utf8_iter",
|
|
2149
|
+
"yoke",
|
|
2150
|
+
"zerofrom",
|
|
2151
|
+
"zerovec",
|
|
2152
|
+
]
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "icu_locale_core"
|
|
2156
|
+
version = "2.2.0"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
2159
|
+
dependencies = [
|
|
2160
|
+
"displaydoc",
|
|
2161
|
+
"litemap",
|
|
2162
|
+
"tinystr",
|
|
2163
|
+
"writeable",
|
|
2164
|
+
"zerovec",
|
|
2165
|
+
]
|
|
2166
|
+
|
|
2167
|
+
[[package]]
|
|
2168
|
+
name = "icu_normalizer"
|
|
2169
|
+
version = "2.2.0"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
2172
|
+
dependencies = [
|
|
2173
|
+
"icu_collections",
|
|
2174
|
+
"icu_normalizer_data",
|
|
2175
|
+
"icu_properties",
|
|
2176
|
+
"icu_provider",
|
|
2177
|
+
"smallvec",
|
|
2178
|
+
"zerovec",
|
|
2179
|
+
]
|
|
2180
|
+
|
|
2181
|
+
[[package]]
|
|
2182
|
+
name = "icu_normalizer_data"
|
|
2183
|
+
version = "2.2.0"
|
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "icu_properties"
|
|
2189
|
+
version = "2.2.0"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
2192
|
+
dependencies = [
|
|
2193
|
+
"icu_collections",
|
|
2194
|
+
"icu_locale_core",
|
|
2195
|
+
"icu_properties_data",
|
|
2196
|
+
"icu_provider",
|
|
2197
|
+
"zerotrie",
|
|
2198
|
+
"zerovec",
|
|
2199
|
+
]
|
|
2200
|
+
|
|
2201
|
+
[[package]]
|
|
2202
|
+
name = "icu_properties_data"
|
|
2203
|
+
version = "2.2.0"
|
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
2206
|
+
|
|
2207
|
+
[[package]]
|
|
2208
|
+
name = "icu_provider"
|
|
2209
|
+
version = "2.2.0"
|
|
2210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2211
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
2212
|
+
dependencies = [
|
|
2213
|
+
"displaydoc",
|
|
2214
|
+
"icu_locale_core",
|
|
2215
|
+
"writeable",
|
|
2216
|
+
"yoke",
|
|
2217
|
+
"zerofrom",
|
|
2218
|
+
"zerotrie",
|
|
2219
|
+
"zerovec",
|
|
2220
|
+
]
|
|
2221
|
+
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "idna"
|
|
2224
|
+
version = "1.1.0"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
2227
|
+
dependencies = [
|
|
2228
|
+
"idna_adapter",
|
|
2229
|
+
"smallvec",
|
|
2230
|
+
"utf8_iter",
|
|
2231
|
+
]
|
|
2232
|
+
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "idna_adapter"
|
|
2235
|
+
version = "1.2.2"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"icu_normalizer",
|
|
2240
|
+
"icu_properties",
|
|
2241
|
+
]
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "indexmap"
|
|
2245
|
+
version = "2.14.0"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"equivalent",
|
|
2250
|
+
"hashbrown 0.17.1",
|
|
2251
|
+
]
|
|
2252
|
+
|
|
2253
|
+
[[package]]
|
|
2254
|
+
name = "integer-encoding"
|
|
2255
|
+
version = "3.0.4"
|
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
2258
|
+
|
|
2259
|
+
[[package]]
|
|
2260
|
+
name = "ipnet"
|
|
2261
|
+
version = "2.12.0"
|
|
2262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2263
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "is_terminal_polyfill"
|
|
2267
|
+
version = "1.70.2"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "itertools"
|
|
2273
|
+
version = "0.14.0"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"either",
|
|
2278
|
+
]
|
|
2279
|
+
|
|
2280
|
+
[[package]]
|
|
2281
|
+
name = "itertools"
|
|
2282
|
+
version = "0.15.0"
|
|
2283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
2285
|
+
dependencies = [
|
|
2286
|
+
"either",
|
|
2287
|
+
]
|
|
2288
|
+
|
|
2289
|
+
[[package]]
|
|
2290
|
+
name = "itoa"
|
|
2291
|
+
version = "1.0.18"
|
|
2292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
2294
|
+
|
|
2295
|
+
[[package]]
|
|
2296
|
+
name = "jni"
|
|
2297
|
+
version = "0.22.4"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
2300
|
+
dependencies = [
|
|
2301
|
+
"cfg-if",
|
|
2302
|
+
"combine",
|
|
2303
|
+
"jni-macros",
|
|
2304
|
+
"jni-sys",
|
|
2305
|
+
"log",
|
|
2306
|
+
"simd_cesu8",
|
|
2307
|
+
"thiserror",
|
|
2308
|
+
"walkdir",
|
|
2309
|
+
"windows-link",
|
|
2310
|
+
]
|
|
2311
|
+
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "jni-macros"
|
|
2314
|
+
version = "0.22.4"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
2317
|
+
dependencies = [
|
|
2318
|
+
"proc-macro2",
|
|
2319
|
+
"quote",
|
|
2320
|
+
"rustc_version",
|
|
2321
|
+
"simd_cesu8",
|
|
2322
|
+
"syn 2.0.119",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "jni-sys"
|
|
2327
|
+
version = "0.4.1"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
2330
|
+
dependencies = [
|
|
2331
|
+
"jni-sys-macros",
|
|
2332
|
+
]
|
|
2333
|
+
|
|
2334
|
+
[[package]]
|
|
2335
|
+
name = "jni-sys-macros"
|
|
2336
|
+
version = "0.4.1"
|
|
2337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
2339
|
+
dependencies = [
|
|
2340
|
+
"quote",
|
|
2341
|
+
"syn 2.0.119",
|
|
2342
|
+
]
|
|
2343
|
+
|
|
2344
|
+
[[package]]
|
|
2345
|
+
name = "jobserver"
|
|
2346
|
+
version = "0.1.35"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
2349
|
+
dependencies = [
|
|
2350
|
+
"getrandom 0.4.3",
|
|
2351
|
+
"libc",
|
|
2352
|
+
]
|
|
2353
|
+
|
|
2354
|
+
[[package]]
|
|
2355
|
+
name = "js-sys"
|
|
2356
|
+
version = "0.3.103"
|
|
2357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2358
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
2359
|
+
dependencies = [
|
|
2360
|
+
"cfg-if",
|
|
2361
|
+
"futures-util",
|
|
2362
|
+
"wasm-bindgen",
|
|
2363
|
+
]
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "lazy_static"
|
|
2367
|
+
version = "1.5.0"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "lexical-core"
|
|
2373
|
+
version = "1.0.6"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
2376
|
+
dependencies = [
|
|
2377
|
+
"lexical-parse-float",
|
|
2378
|
+
"lexical-parse-integer",
|
|
2379
|
+
"lexical-util",
|
|
2380
|
+
"lexical-write-float",
|
|
2381
|
+
"lexical-write-integer",
|
|
2382
|
+
]
|
|
2383
|
+
|
|
2384
|
+
[[package]]
|
|
2385
|
+
name = "lexical-parse-float"
|
|
2386
|
+
version = "1.0.6"
|
|
2387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
2389
|
+
dependencies = [
|
|
2390
|
+
"lexical-parse-integer",
|
|
2391
|
+
"lexical-util",
|
|
2392
|
+
]
|
|
2393
|
+
|
|
2394
|
+
[[package]]
|
|
2395
|
+
name = "lexical-parse-integer"
|
|
2396
|
+
version = "1.0.6"
|
|
2397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
2399
|
+
dependencies = [
|
|
2400
|
+
"lexical-util",
|
|
2401
|
+
]
|
|
2402
|
+
|
|
2403
|
+
[[package]]
|
|
2404
|
+
name = "lexical-util"
|
|
2405
|
+
version = "1.0.7"
|
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
2408
|
+
|
|
2409
|
+
[[package]]
|
|
2410
|
+
name = "lexical-write-float"
|
|
2411
|
+
version = "1.0.6"
|
|
2412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
2414
|
+
dependencies = [
|
|
2415
|
+
"lexical-util",
|
|
2416
|
+
"lexical-write-integer",
|
|
2417
|
+
]
|
|
2418
|
+
|
|
2419
|
+
[[package]]
|
|
2420
|
+
name = "lexical-write-integer"
|
|
2421
|
+
version = "1.0.6"
|
|
2422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
2424
|
+
dependencies = [
|
|
2425
|
+
"lexical-util",
|
|
2426
|
+
]
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "libc"
|
|
2430
|
+
version = "0.2.189"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
2433
|
+
|
|
2434
|
+
[[package]]
|
|
2435
|
+
name = "libm"
|
|
2436
|
+
version = "0.2.16"
|
|
2437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
2439
|
+
|
|
2440
|
+
[[package]]
|
|
2441
|
+
name = "linux-raw-sys"
|
|
2442
|
+
version = "0.12.1"
|
|
2443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2444
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
2445
|
+
|
|
2446
|
+
[[package]]
|
|
2447
|
+
name = "litemap"
|
|
2448
|
+
version = "0.8.2"
|
|
2449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
2451
|
+
|
|
2452
|
+
[[package]]
|
|
2453
|
+
name = "litrs"
|
|
2454
|
+
version = "1.0.0"
|
|
2455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
2457
|
+
|
|
2458
|
+
[[package]]
|
|
2459
|
+
name = "lock_api"
|
|
2460
|
+
version = "0.4.14"
|
|
2461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2462
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
2463
|
+
dependencies = [
|
|
2464
|
+
"scopeguard",
|
|
2465
|
+
]
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "log"
|
|
2469
|
+
version = "0.4.33"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "lru-slab"
|
|
2475
|
+
version = "0.1.2"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
2478
|
+
|
|
2479
|
+
[[package]]
|
|
2480
|
+
name = "lz4_flex"
|
|
2481
|
+
version = "0.13.1"
|
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
+
checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e"
|
|
2484
|
+
dependencies = [
|
|
2485
|
+
"twox-hash",
|
|
2486
|
+
]
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "matchers"
|
|
2490
|
+
version = "0.2.0"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2493
|
+
dependencies = [
|
|
2494
|
+
"regex-automata",
|
|
2495
|
+
]
|
|
2496
|
+
|
|
2497
|
+
[[package]]
|
|
2498
|
+
name = "matchit"
|
|
2499
|
+
version = "0.8.4"
|
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2501
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
2502
|
+
|
|
2503
|
+
[[package]]
|
|
2504
|
+
name = "md-5"
|
|
2505
|
+
version = "0.11.0"
|
|
2506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
|
+
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
2508
|
+
dependencies = [
|
|
2509
|
+
"cfg-if",
|
|
2510
|
+
"digest 0.11.3",
|
|
2511
|
+
]
|
|
2512
|
+
|
|
2513
|
+
[[package]]
|
|
2514
|
+
name = "memchr"
|
|
2515
|
+
version = "2.8.3"
|
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
2518
|
+
|
|
2519
|
+
[[package]]
|
|
2520
|
+
name = "mime"
|
|
2521
|
+
version = "0.3.17"
|
|
2522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2524
|
+
|
|
2525
|
+
[[package]]
|
|
2526
|
+
name = "miniz_oxide"
|
|
2527
|
+
version = "0.8.9"
|
|
2528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2529
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2530
|
+
dependencies = [
|
|
2531
|
+
"adler2",
|
|
2532
|
+
"simd-adler32",
|
|
2533
|
+
]
|
|
2534
|
+
|
|
2535
|
+
[[package]]
|
|
2536
|
+
name = "mio"
|
|
2537
|
+
version = "1.2.2"
|
|
2538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
2540
|
+
dependencies = [
|
|
2541
|
+
"libc",
|
|
2542
|
+
"wasi",
|
|
2543
|
+
"windows-sys 0.61.2",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "nix"
|
|
2548
|
+
version = "0.31.3"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
2551
|
+
dependencies = [
|
|
2552
|
+
"bitflags",
|
|
2553
|
+
"cfg-if",
|
|
2554
|
+
"cfg_aliases",
|
|
2555
|
+
"libc",
|
|
2556
|
+
]
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "nu-ansi-term"
|
|
2560
|
+
version = "0.50.3"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2563
|
+
dependencies = [
|
|
2564
|
+
"windows-sys 0.61.2",
|
|
2565
|
+
]
|
|
2566
|
+
|
|
2567
|
+
[[package]]
|
|
2568
|
+
name = "num-bigint"
|
|
2569
|
+
version = "0.4.8"
|
|
2570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
2572
|
+
dependencies = [
|
|
2573
|
+
"num-integer",
|
|
2574
|
+
"num-traits",
|
|
2575
|
+
]
|
|
2576
|
+
|
|
2577
|
+
[[package]]
|
|
2578
|
+
name = "num-complex"
|
|
2579
|
+
version = "0.4.6"
|
|
2580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2581
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
2582
|
+
dependencies = [
|
|
2583
|
+
"num-traits",
|
|
2584
|
+
]
|
|
2585
|
+
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "num-integer"
|
|
2588
|
+
version = "0.1.46"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2591
|
+
dependencies = [
|
|
2592
|
+
"num-traits",
|
|
2593
|
+
]
|
|
2594
|
+
|
|
2595
|
+
[[package]]
|
|
2596
|
+
name = "num-traits"
|
|
2597
|
+
version = "0.2.19"
|
|
2598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2599
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2600
|
+
dependencies = [
|
|
2601
|
+
"autocfg",
|
|
2602
|
+
"libm",
|
|
2603
|
+
]
|
|
2604
|
+
|
|
2605
|
+
[[package]]
|
|
2606
|
+
name = "object_store"
|
|
2607
|
+
version = "0.13.2"
|
|
2608
|
+
dependencies = [
|
|
2609
|
+
"object_store 0.14.1",
|
|
2610
|
+
]
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "object_store"
|
|
2614
|
+
version = "0.14.1"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "d354792e39fa5f0009e47623cf8b15b099bf9a652fa55c6f817fe28ac84fea50"
|
|
2617
|
+
dependencies = [
|
|
2618
|
+
"async-trait",
|
|
2619
|
+
"aws-lc-rs",
|
|
2620
|
+
"base64",
|
|
2621
|
+
"bytes",
|
|
2622
|
+
"chrono",
|
|
2623
|
+
"crc-fast",
|
|
2624
|
+
"form_urlencoded",
|
|
2625
|
+
"futures-channel",
|
|
2626
|
+
"futures-core",
|
|
2627
|
+
"futures-util",
|
|
2628
|
+
"http",
|
|
2629
|
+
"http-body-util",
|
|
2630
|
+
"humantime",
|
|
2631
|
+
"hyper",
|
|
2632
|
+
"itertools 0.15.0",
|
|
2633
|
+
"md-5",
|
|
2634
|
+
"nix",
|
|
2635
|
+
"parking_lot",
|
|
2636
|
+
"percent-encoding",
|
|
2637
|
+
"quick-xml",
|
|
2638
|
+
"rand 0.10.2",
|
|
2639
|
+
"reqwest",
|
|
2640
|
+
"rustls-pki-types",
|
|
2641
|
+
"serde",
|
|
2642
|
+
"serde_json",
|
|
2643
|
+
"serde_urlencoded",
|
|
2644
|
+
"thiserror",
|
|
2645
|
+
"tokio",
|
|
2646
|
+
"tracing",
|
|
2647
|
+
"url",
|
|
2648
|
+
"walkdir",
|
|
2649
|
+
"wasm-bindgen-futures",
|
|
2650
|
+
"web-time",
|
|
2651
|
+
"windows-sys 0.61.2",
|
|
2652
|
+
]
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "once_cell"
|
|
2656
|
+
version = "1.21.4"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "once_cell_polyfill"
|
|
2662
|
+
version = "1.70.2"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2665
|
+
|
|
2666
|
+
[[package]]
|
|
2667
|
+
name = "openssl-probe"
|
|
2668
|
+
version = "0.2.1"
|
|
2669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2670
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
2671
|
+
|
|
2672
|
+
[[package]]
|
|
2673
|
+
name = "ordered-float"
|
|
2674
|
+
version = "2.10.1"
|
|
2675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2676
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
2677
|
+
dependencies = [
|
|
2678
|
+
"num-traits",
|
|
2679
|
+
]
|
|
2680
|
+
|
|
2681
|
+
[[package]]
|
|
2682
|
+
name = "parking_lot"
|
|
2683
|
+
version = "0.12.5"
|
|
2684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2685
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2686
|
+
dependencies = [
|
|
2687
|
+
"lock_api",
|
|
2688
|
+
"parking_lot_core",
|
|
2689
|
+
]
|
|
2690
|
+
|
|
2691
|
+
[[package]]
|
|
2692
|
+
name = "parking_lot_core"
|
|
2693
|
+
version = "0.9.12"
|
|
2694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2695
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2696
|
+
dependencies = [
|
|
2697
|
+
"cfg-if",
|
|
2698
|
+
"libc",
|
|
2699
|
+
"redox_syscall",
|
|
2700
|
+
"smallvec",
|
|
2701
|
+
"windows-link",
|
|
2702
|
+
]
|
|
2703
|
+
|
|
2704
|
+
[[package]]
|
|
2705
|
+
name = "parquet"
|
|
2706
|
+
version = "58.3.0"
|
|
2707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
+
checksum = "5dafa7d01085b62a47dd0c1829550a0a36710ea9c4fe358a05a85477cec8a908"
|
|
2709
|
+
dependencies = [
|
|
2710
|
+
"ahash",
|
|
2711
|
+
"arrow-array",
|
|
2712
|
+
"arrow-buffer",
|
|
2713
|
+
"arrow-data",
|
|
2714
|
+
"arrow-ipc",
|
|
2715
|
+
"arrow-schema",
|
|
2716
|
+
"arrow-select",
|
|
2717
|
+
"base64",
|
|
2718
|
+
"brotli",
|
|
2719
|
+
"bytes",
|
|
2720
|
+
"chrono",
|
|
2721
|
+
"crc32fast",
|
|
2722
|
+
"flate2",
|
|
2723
|
+
"futures",
|
|
2724
|
+
"half",
|
|
2725
|
+
"hashbrown 0.17.1",
|
|
2726
|
+
"lz4_flex",
|
|
2727
|
+
"num-bigint",
|
|
2728
|
+
"num-integer",
|
|
2729
|
+
"num-traits",
|
|
2730
|
+
"object_store 0.13.2",
|
|
2731
|
+
"paste",
|
|
2732
|
+
"seq-macro",
|
|
2733
|
+
"simdutf8",
|
|
2734
|
+
"snap",
|
|
2735
|
+
"thrift",
|
|
2736
|
+
"tokio",
|
|
2737
|
+
"twox-hash",
|
|
2738
|
+
"zstd",
|
|
2739
|
+
]
|
|
2740
|
+
|
|
2741
|
+
[[package]]
|
|
2742
|
+
name = "paste"
|
|
2743
|
+
version = "1.0.15"
|
|
2744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2746
|
+
|
|
2747
|
+
[[package]]
|
|
2748
|
+
name = "percent-encoding"
|
|
2749
|
+
version = "2.3.2"
|
|
2750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2751
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2752
|
+
|
|
2753
|
+
[[package]]
|
|
2754
|
+
name = "petgraph"
|
|
2755
|
+
version = "0.8.3"
|
|
2756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2757
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
2758
|
+
dependencies = [
|
|
2759
|
+
"fixedbitset",
|
|
2760
|
+
"hashbrown 0.15.5",
|
|
2761
|
+
"indexmap",
|
|
2762
|
+
"serde",
|
|
2763
|
+
]
|
|
2764
|
+
|
|
2765
|
+
[[package]]
|
|
2766
|
+
name = "phf"
|
|
2767
|
+
version = "0.12.1"
|
|
2768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
2770
|
+
dependencies = [
|
|
2771
|
+
"phf_shared",
|
|
2772
|
+
]
|
|
2773
|
+
|
|
2774
|
+
[[package]]
|
|
2775
|
+
name = "phf_shared"
|
|
2776
|
+
version = "0.12.1"
|
|
2777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2778
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
2779
|
+
dependencies = [
|
|
2780
|
+
"siphasher",
|
|
2781
|
+
]
|
|
2782
|
+
|
|
2783
|
+
[[package]]
|
|
2784
|
+
name = "pin-project"
|
|
2785
|
+
version = "1.1.13"
|
|
2786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2787
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
2788
|
+
dependencies = [
|
|
2789
|
+
"pin-project-internal",
|
|
2790
|
+
]
|
|
2791
|
+
|
|
2792
|
+
[[package]]
|
|
2793
|
+
name = "pin-project-internal"
|
|
2794
|
+
version = "1.1.13"
|
|
2795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
2797
|
+
dependencies = [
|
|
2798
|
+
"proc-macro2",
|
|
2799
|
+
"quote",
|
|
2800
|
+
"syn 2.0.119",
|
|
2801
|
+
]
|
|
2802
|
+
|
|
2803
|
+
[[package]]
|
|
2804
|
+
name = "pin-project-lite"
|
|
2805
|
+
version = "0.2.17"
|
|
2806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2807
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2808
|
+
|
|
2809
|
+
[[package]]
|
|
2810
|
+
name = "pkg-config"
|
|
2811
|
+
version = "0.3.33"
|
|
2812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2813
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2814
|
+
|
|
2815
|
+
[[package]]
|
|
2816
|
+
name = "portable-atomic"
|
|
2817
|
+
version = "1.14.0"
|
|
2818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
2820
|
+
|
|
2821
|
+
[[package]]
|
|
2822
|
+
name = "potential_utf"
|
|
2823
|
+
version = "0.1.5"
|
|
2824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2825
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2826
|
+
dependencies = [
|
|
2827
|
+
"zerovec",
|
|
2828
|
+
]
|
|
2829
|
+
|
|
2830
|
+
[[package]]
|
|
2831
|
+
name = "ppv-lite86"
|
|
2832
|
+
version = "0.2.21"
|
|
2833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2834
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2835
|
+
dependencies = [
|
|
2836
|
+
"zerocopy",
|
|
2837
|
+
]
|
|
2838
|
+
|
|
2839
|
+
[[package]]
|
|
2840
|
+
name = "proc-macro2"
|
|
2841
|
+
version = "1.0.107"
|
|
2842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
2844
|
+
dependencies = [
|
|
2845
|
+
"unicode-ident",
|
|
2846
|
+
]
|
|
2847
|
+
|
|
2848
|
+
[[package]]
|
|
2849
|
+
name = "pyo3"
|
|
2850
|
+
version = "0.29.0"
|
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
2853
|
+
dependencies = [
|
|
2854
|
+
"libc",
|
|
2855
|
+
"once_cell",
|
|
2856
|
+
"portable-atomic",
|
|
2857
|
+
"pyo3-build-config",
|
|
2858
|
+
"pyo3-ffi",
|
|
2859
|
+
"pyo3-macros",
|
|
2860
|
+
]
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "pyo3-build-config"
|
|
2864
|
+
version = "0.29.0"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
2867
|
+
dependencies = [
|
|
2868
|
+
"target-lexicon",
|
|
2869
|
+
]
|
|
2870
|
+
|
|
2871
|
+
[[package]]
|
|
2872
|
+
name = "pyo3-ffi"
|
|
2873
|
+
version = "0.29.0"
|
|
2874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2875
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
2876
|
+
dependencies = [
|
|
2877
|
+
"libc",
|
|
2878
|
+
"pyo3-build-config",
|
|
2879
|
+
]
|
|
2880
|
+
|
|
2881
|
+
[[package]]
|
|
2882
|
+
name = "pyo3-macros"
|
|
2883
|
+
version = "0.29.0"
|
|
2884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2885
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
2886
|
+
dependencies = [
|
|
2887
|
+
"proc-macro2",
|
|
2888
|
+
"pyo3-macros-backend",
|
|
2889
|
+
"quote",
|
|
2890
|
+
"syn 2.0.119",
|
|
2891
|
+
]
|
|
2892
|
+
|
|
2893
|
+
[[package]]
|
|
2894
|
+
name = "pyo3-macros-backend"
|
|
2895
|
+
version = "0.29.0"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
2898
|
+
dependencies = [
|
|
2899
|
+
"heck",
|
|
2900
|
+
"proc-macro2",
|
|
2901
|
+
"quote",
|
|
2902
|
+
"syn 2.0.119",
|
|
2903
|
+
]
|
|
2904
|
+
|
|
2905
|
+
[[package]]
|
|
2906
|
+
name = "quick-xml"
|
|
2907
|
+
version = "0.41.0"
|
|
2908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
+
checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
|
|
2910
|
+
dependencies = [
|
|
2911
|
+
"memchr",
|
|
2912
|
+
"serde",
|
|
2913
|
+
]
|
|
2914
|
+
|
|
2915
|
+
[[package]]
|
|
2916
|
+
name = "quinn"
|
|
2917
|
+
version = "0.11.11"
|
|
2918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
+
checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
|
|
2920
|
+
dependencies = [
|
|
2921
|
+
"bytes",
|
|
2922
|
+
"cfg_aliases",
|
|
2923
|
+
"pin-project-lite",
|
|
2924
|
+
"quinn-proto",
|
|
2925
|
+
"quinn-udp",
|
|
2926
|
+
"rustc-hash",
|
|
2927
|
+
"rustls",
|
|
2928
|
+
"socket2",
|
|
2929
|
+
"thiserror",
|
|
2930
|
+
"tokio",
|
|
2931
|
+
"tracing",
|
|
2932
|
+
"web-time",
|
|
2933
|
+
]
|
|
2934
|
+
|
|
2935
|
+
[[package]]
|
|
2936
|
+
name = "quinn-proto"
|
|
2937
|
+
version = "0.11.16"
|
|
2938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2939
|
+
checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
|
|
2940
|
+
dependencies = [
|
|
2941
|
+
"aws-lc-rs",
|
|
2942
|
+
"bytes",
|
|
2943
|
+
"getrandom 0.4.3",
|
|
2944
|
+
"lru-slab",
|
|
2945
|
+
"rand 0.10.2",
|
|
2946
|
+
"rand_pcg",
|
|
2947
|
+
"ring",
|
|
2948
|
+
"rustc-hash",
|
|
2949
|
+
"rustls",
|
|
2950
|
+
"rustls-pki-types",
|
|
2951
|
+
"slab",
|
|
2952
|
+
"thiserror",
|
|
2953
|
+
"tinyvec",
|
|
2954
|
+
"tracing",
|
|
2955
|
+
"web-time",
|
|
2956
|
+
]
|
|
2957
|
+
|
|
2958
|
+
[[package]]
|
|
2959
|
+
name = "quinn-udp"
|
|
2960
|
+
version = "0.5.15"
|
|
2961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
+
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
2963
|
+
dependencies = [
|
|
2964
|
+
"cfg_aliases",
|
|
2965
|
+
"libc",
|
|
2966
|
+
"once_cell",
|
|
2967
|
+
"socket2",
|
|
2968
|
+
"tracing",
|
|
2969
|
+
"windows-sys 0.61.2",
|
|
2970
|
+
]
|
|
2971
|
+
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "quote"
|
|
2974
|
+
version = "1.0.47"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
2977
|
+
dependencies = [
|
|
2978
|
+
"proc-macro2",
|
|
2979
|
+
]
|
|
2980
|
+
|
|
2981
|
+
[[package]]
|
|
2982
|
+
name = "r-efi"
|
|
2983
|
+
version = "5.3.0"
|
|
2984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2985
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "r-efi"
|
|
2989
|
+
version = "6.0.0"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2992
|
+
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "rand"
|
|
2995
|
+
version = "0.9.5"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
2998
|
+
dependencies = [
|
|
2999
|
+
"rand_chacha",
|
|
3000
|
+
"rand_core 0.9.5",
|
|
3001
|
+
]
|
|
3002
|
+
|
|
3003
|
+
[[package]]
|
|
3004
|
+
name = "rand"
|
|
3005
|
+
version = "0.10.2"
|
|
3006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
3008
|
+
dependencies = [
|
|
3009
|
+
"chacha20",
|
|
3010
|
+
"getrandom 0.4.3",
|
|
3011
|
+
"rand_core 0.10.1",
|
|
3012
|
+
]
|
|
3013
|
+
|
|
3014
|
+
[[package]]
|
|
3015
|
+
name = "rand_chacha"
|
|
3016
|
+
version = "0.9.0"
|
|
3017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
3019
|
+
dependencies = [
|
|
3020
|
+
"ppv-lite86",
|
|
3021
|
+
"rand_core 0.9.5",
|
|
3022
|
+
]
|
|
3023
|
+
|
|
3024
|
+
[[package]]
|
|
3025
|
+
name = "rand_core"
|
|
3026
|
+
version = "0.9.5"
|
|
3027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3028
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
3029
|
+
dependencies = [
|
|
3030
|
+
"getrandom 0.3.4",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
3033
|
+
[[package]]
|
|
3034
|
+
name = "rand_core"
|
|
3035
|
+
version = "0.10.1"
|
|
3036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3037
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3038
|
+
|
|
3039
|
+
[[package]]
|
|
3040
|
+
name = "rand_pcg"
|
|
3041
|
+
version = "0.10.2"
|
|
3042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3043
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
3044
|
+
dependencies = [
|
|
3045
|
+
"rand_core 0.10.1",
|
|
3046
|
+
]
|
|
3047
|
+
|
|
3048
|
+
[[package]]
|
|
3049
|
+
name = "redox_syscall"
|
|
3050
|
+
version = "0.5.18"
|
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3053
|
+
dependencies = [
|
|
3054
|
+
"bitflags",
|
|
3055
|
+
]
|
|
3056
|
+
|
|
3057
|
+
[[package]]
|
|
3058
|
+
name = "regex"
|
|
3059
|
+
version = "1.13.1"
|
|
3060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3061
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
3062
|
+
dependencies = [
|
|
3063
|
+
"aho-corasick",
|
|
3064
|
+
"memchr",
|
|
3065
|
+
"regex-automata",
|
|
3066
|
+
"regex-syntax",
|
|
3067
|
+
]
|
|
3068
|
+
|
|
3069
|
+
[[package]]
|
|
3070
|
+
name = "regex-automata"
|
|
3071
|
+
version = "0.4.16"
|
|
3072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3073
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
3074
|
+
dependencies = [
|
|
3075
|
+
"aho-corasick",
|
|
3076
|
+
"memchr",
|
|
3077
|
+
"regex-syntax",
|
|
3078
|
+
]
|
|
3079
|
+
|
|
3080
|
+
[[package]]
|
|
3081
|
+
name = "regex-syntax"
|
|
3082
|
+
version = "0.8.11"
|
|
3083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3084
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
3085
|
+
|
|
3086
|
+
[[package]]
|
|
3087
|
+
name = "reqwest"
|
|
3088
|
+
version = "0.13.4"
|
|
3089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3090
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
3091
|
+
dependencies = [
|
|
3092
|
+
"base64",
|
|
3093
|
+
"bytes",
|
|
3094
|
+
"futures-core",
|
|
3095
|
+
"futures-util",
|
|
3096
|
+
"h2",
|
|
3097
|
+
"http",
|
|
3098
|
+
"http-body",
|
|
3099
|
+
"http-body-util",
|
|
3100
|
+
"hyper",
|
|
3101
|
+
"hyper-rustls",
|
|
3102
|
+
"hyper-util",
|
|
3103
|
+
"js-sys",
|
|
3104
|
+
"log",
|
|
3105
|
+
"percent-encoding",
|
|
3106
|
+
"pin-project-lite",
|
|
3107
|
+
"quinn",
|
|
3108
|
+
"rustls",
|
|
3109
|
+
"rustls-pki-types",
|
|
3110
|
+
"rustls-platform-verifier",
|
|
3111
|
+
"sync_wrapper",
|
|
3112
|
+
"tokio",
|
|
3113
|
+
"tokio-rustls",
|
|
3114
|
+
"tokio-util",
|
|
3115
|
+
"tower",
|
|
3116
|
+
"tower-http",
|
|
3117
|
+
"tower-service",
|
|
3118
|
+
"url",
|
|
3119
|
+
"wasm-bindgen",
|
|
3120
|
+
"wasm-bindgen-futures",
|
|
3121
|
+
"wasm-streams",
|
|
3122
|
+
"web-sys",
|
|
3123
|
+
]
|
|
3124
|
+
|
|
3125
|
+
[[package]]
|
|
3126
|
+
name = "ring"
|
|
3127
|
+
version = "0.17.14"
|
|
3128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
3130
|
+
dependencies = [
|
|
3131
|
+
"cc",
|
|
3132
|
+
"cfg-if",
|
|
3133
|
+
"getrandom 0.2.17",
|
|
3134
|
+
"libc",
|
|
3135
|
+
"untrusted",
|
|
3136
|
+
"windows-sys 0.52.0",
|
|
3137
|
+
]
|
|
3138
|
+
|
|
3139
|
+
[[package]]
|
|
3140
|
+
name = "rustc-hash"
|
|
3141
|
+
version = "2.1.3"
|
|
3142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
3144
|
+
|
|
3145
|
+
[[package]]
|
|
3146
|
+
name = "rustc_version"
|
|
3147
|
+
version = "0.4.1"
|
|
3148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3150
|
+
dependencies = [
|
|
3151
|
+
"semver",
|
|
3152
|
+
]
|
|
3153
|
+
|
|
3154
|
+
[[package]]
|
|
3155
|
+
name = "rustix"
|
|
3156
|
+
version = "1.1.4"
|
|
3157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3158
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
3159
|
+
dependencies = [
|
|
3160
|
+
"bitflags",
|
|
3161
|
+
"errno",
|
|
3162
|
+
"libc",
|
|
3163
|
+
"linux-raw-sys",
|
|
3164
|
+
"windows-sys 0.61.2",
|
|
3165
|
+
]
|
|
3166
|
+
|
|
3167
|
+
[[package]]
|
|
3168
|
+
name = "rustls"
|
|
3169
|
+
version = "0.23.42"
|
|
3170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3171
|
+
checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
|
|
3172
|
+
dependencies = [
|
|
3173
|
+
"aws-lc-rs",
|
|
3174
|
+
"once_cell",
|
|
3175
|
+
"rustls-pki-types",
|
|
3176
|
+
"rustls-webpki",
|
|
3177
|
+
"subtle",
|
|
3178
|
+
"zeroize",
|
|
3179
|
+
]
|
|
3180
|
+
|
|
3181
|
+
[[package]]
|
|
3182
|
+
name = "rustls-native-certs"
|
|
3183
|
+
version = "0.8.4"
|
|
3184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3185
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
3186
|
+
dependencies = [
|
|
3187
|
+
"openssl-probe",
|
|
3188
|
+
"rustls-pki-types",
|
|
3189
|
+
"schannel",
|
|
3190
|
+
"security-framework",
|
|
3191
|
+
]
|
|
3192
|
+
|
|
3193
|
+
[[package]]
|
|
3194
|
+
name = "rustls-pki-types"
|
|
3195
|
+
version = "1.15.0"
|
|
3196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3197
|
+
checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
|
|
3198
|
+
dependencies = [
|
|
3199
|
+
"web-time",
|
|
3200
|
+
"zeroize",
|
|
3201
|
+
]
|
|
3202
|
+
|
|
3203
|
+
[[package]]
|
|
3204
|
+
name = "rustls-platform-verifier"
|
|
3205
|
+
version = "0.7.0"
|
|
3206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3207
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
3208
|
+
dependencies = [
|
|
3209
|
+
"core-foundation",
|
|
3210
|
+
"core-foundation-sys",
|
|
3211
|
+
"jni",
|
|
3212
|
+
"log",
|
|
3213
|
+
"once_cell",
|
|
3214
|
+
"rustls",
|
|
3215
|
+
"rustls-native-certs",
|
|
3216
|
+
"rustls-platform-verifier-android",
|
|
3217
|
+
"rustls-webpki",
|
|
3218
|
+
"security-framework",
|
|
3219
|
+
"security-framework-sys",
|
|
3220
|
+
"webpki-root-certs",
|
|
3221
|
+
"windows-sys 0.61.2",
|
|
3222
|
+
]
|
|
3223
|
+
|
|
3224
|
+
[[package]]
|
|
3225
|
+
name = "rustls-platform-verifier-android"
|
|
3226
|
+
version = "0.1.1"
|
|
3227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
3229
|
+
|
|
3230
|
+
[[package]]
|
|
3231
|
+
name = "rustls-webpki"
|
|
3232
|
+
version = "0.103.13"
|
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
3235
|
+
dependencies = [
|
|
3236
|
+
"aws-lc-rs",
|
|
3237
|
+
"ring",
|
|
3238
|
+
"rustls-pki-types",
|
|
3239
|
+
"untrusted",
|
|
3240
|
+
]
|
|
3241
|
+
|
|
3242
|
+
[[package]]
|
|
3243
|
+
name = "rustversion"
|
|
3244
|
+
version = "1.0.23"
|
|
3245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
3247
|
+
|
|
3248
|
+
[[package]]
|
|
3249
|
+
name = "ryu"
|
|
3250
|
+
version = "1.0.23"
|
|
3251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
3253
|
+
|
|
3254
|
+
[[package]]
|
|
3255
|
+
name = "same-file"
|
|
3256
|
+
version = "1.0.6"
|
|
3257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3258
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3259
|
+
dependencies = [
|
|
3260
|
+
"winapi-util",
|
|
3261
|
+
]
|
|
3262
|
+
|
|
3263
|
+
[[package]]
|
|
3264
|
+
name = "schannel"
|
|
3265
|
+
version = "0.1.29"
|
|
3266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
3268
|
+
dependencies = [
|
|
3269
|
+
"windows-sys 0.61.2",
|
|
3270
|
+
]
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "scopeguard"
|
|
3274
|
+
version = "1.2.0"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3277
|
+
|
|
3278
|
+
[[package]]
|
|
3279
|
+
name = "security-framework"
|
|
3280
|
+
version = "3.7.0"
|
|
3281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3282
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
3283
|
+
dependencies = [
|
|
3284
|
+
"bitflags",
|
|
3285
|
+
"core-foundation",
|
|
3286
|
+
"core-foundation-sys",
|
|
3287
|
+
"libc",
|
|
3288
|
+
"security-framework-sys",
|
|
3289
|
+
]
|
|
3290
|
+
|
|
3291
|
+
[[package]]
|
|
3292
|
+
name = "security-framework-sys"
|
|
3293
|
+
version = "2.17.0"
|
|
3294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3295
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
3296
|
+
dependencies = [
|
|
3297
|
+
"core-foundation-sys",
|
|
3298
|
+
"libc",
|
|
3299
|
+
]
|
|
3300
|
+
|
|
3301
|
+
[[package]]
|
|
3302
|
+
name = "semver"
|
|
3303
|
+
version = "1.0.28"
|
|
3304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3305
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
3306
|
+
|
|
3307
|
+
[[package]]
|
|
3308
|
+
name = "seq-macro"
|
|
3309
|
+
version = "0.3.6"
|
|
3310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3311
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "serde"
|
|
3315
|
+
version = "1.0.229"
|
|
3316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
3318
|
+
dependencies = [
|
|
3319
|
+
"serde_core",
|
|
3320
|
+
"serde_derive",
|
|
3321
|
+
]
|
|
3322
|
+
|
|
3323
|
+
[[package]]
|
|
3324
|
+
name = "serde_core"
|
|
3325
|
+
version = "1.0.229"
|
|
3326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3327
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
3328
|
+
dependencies = [
|
|
3329
|
+
"serde_derive",
|
|
3330
|
+
]
|
|
3331
|
+
|
|
3332
|
+
[[package]]
|
|
3333
|
+
name = "serde_derive"
|
|
3334
|
+
version = "1.0.229"
|
|
3335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3336
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
3337
|
+
dependencies = [
|
|
3338
|
+
"proc-macro2",
|
|
3339
|
+
"quote",
|
|
3340
|
+
"syn 3.0.3",
|
|
3341
|
+
]
|
|
3342
|
+
|
|
3343
|
+
[[package]]
|
|
3344
|
+
name = "serde_json"
|
|
3345
|
+
version = "1.0.151"
|
|
3346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
3348
|
+
dependencies = [
|
|
3349
|
+
"indexmap",
|
|
3350
|
+
"itoa",
|
|
3351
|
+
"memchr",
|
|
3352
|
+
"serde",
|
|
3353
|
+
"serde_core",
|
|
3354
|
+
"zmij",
|
|
3355
|
+
]
|
|
3356
|
+
|
|
3357
|
+
[[package]]
|
|
3358
|
+
name = "serde_path_to_error"
|
|
3359
|
+
version = "0.1.20"
|
|
3360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3361
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
3362
|
+
dependencies = [
|
|
3363
|
+
"itoa",
|
|
3364
|
+
"serde",
|
|
3365
|
+
"serde_core",
|
|
3366
|
+
]
|
|
3367
|
+
|
|
3368
|
+
[[package]]
|
|
3369
|
+
name = "serde_urlencoded"
|
|
3370
|
+
version = "0.7.1"
|
|
3371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3372
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3373
|
+
dependencies = [
|
|
3374
|
+
"form_urlencoded",
|
|
3375
|
+
"itoa",
|
|
3376
|
+
"ryu",
|
|
3377
|
+
"serde",
|
|
3378
|
+
]
|
|
3379
|
+
|
|
3380
|
+
[[package]]
|
|
3381
|
+
name = "sharded-slab"
|
|
3382
|
+
version = "0.1.7"
|
|
3383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3384
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3385
|
+
dependencies = [
|
|
3386
|
+
"lazy_static",
|
|
3387
|
+
]
|
|
3388
|
+
|
|
3389
|
+
[[package]]
|
|
3390
|
+
name = "shlex"
|
|
3391
|
+
version = "2.0.1"
|
|
3392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3393
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
3394
|
+
|
|
3395
|
+
[[package]]
|
|
3396
|
+
name = "signal-hook-registry"
|
|
3397
|
+
version = "1.4.8"
|
|
3398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3399
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
3400
|
+
dependencies = [
|
|
3401
|
+
"errno",
|
|
3402
|
+
"libc",
|
|
3403
|
+
]
|
|
3404
|
+
|
|
3405
|
+
[[package]]
|
|
3406
|
+
name = "simd-adler32"
|
|
3407
|
+
version = "0.3.10"
|
|
3408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3409
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
3410
|
+
|
|
3411
|
+
[[package]]
|
|
3412
|
+
name = "simd_cesu8"
|
|
3413
|
+
version = "1.2.0"
|
|
3414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
|
+
checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
|
|
3416
|
+
dependencies = [
|
|
3417
|
+
"rustc_version",
|
|
3418
|
+
"simdutf8",
|
|
3419
|
+
]
|
|
3420
|
+
|
|
3421
|
+
[[package]]
|
|
3422
|
+
name = "simdutf8"
|
|
3423
|
+
version = "0.1.5"
|
|
3424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3425
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3426
|
+
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "siphasher"
|
|
3429
|
+
version = "1.0.3"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
3432
|
+
|
|
3433
|
+
[[package]]
|
|
3434
|
+
name = "slab"
|
|
3435
|
+
version = "0.4.12"
|
|
3436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3437
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3438
|
+
|
|
3439
|
+
[[package]]
|
|
3440
|
+
name = "smallvec"
|
|
3441
|
+
version = "1.15.2"
|
|
3442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
3444
|
+
|
|
3445
|
+
[[package]]
|
|
3446
|
+
name = "snap"
|
|
3447
|
+
version = "1.1.2"
|
|
3448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3449
|
+
checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886"
|
|
3450
|
+
|
|
3451
|
+
[[package]]
|
|
3452
|
+
name = "socket2"
|
|
3453
|
+
version = "0.6.5"
|
|
3454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3455
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
3456
|
+
dependencies = [
|
|
3457
|
+
"libc",
|
|
3458
|
+
"windows-sys 0.61.2",
|
|
3459
|
+
]
|
|
3460
|
+
|
|
3461
|
+
[[package]]
|
|
3462
|
+
name = "spin"
|
|
3463
|
+
version = "0.10.1"
|
|
3464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3465
|
+
checksum = "023a211cb3138dbc438680b32560ad89f699977624c9f8dbb95a47d5b4c07dd3"
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "sqlparser"
|
|
3469
|
+
version = "0.62.0"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "13c6d1b651dc4edf07eead2a0c6c78016ce971bc2c10da5266861b13f25e7cec"
|
|
3472
|
+
dependencies = [
|
|
3473
|
+
"log",
|
|
3474
|
+
"sqlparser_derive",
|
|
3475
|
+
]
|
|
3476
|
+
|
|
3477
|
+
[[package]]
|
|
3478
|
+
name = "sqlparser_derive"
|
|
3479
|
+
version = "0.5.0"
|
|
3480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3481
|
+
checksum = "a6dd45d8fc1c79299bfbb7190e42ccbbdf6a5f52e4a6ad98d92357ea965bd289"
|
|
3482
|
+
dependencies = [
|
|
3483
|
+
"proc-macro2",
|
|
3484
|
+
"quote",
|
|
3485
|
+
"syn 2.0.119",
|
|
3486
|
+
]
|
|
3487
|
+
|
|
3488
|
+
[[package]]
|
|
3489
|
+
name = "stable_deref_trait"
|
|
3490
|
+
version = "1.2.1"
|
|
3491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3493
|
+
|
|
3494
|
+
[[package]]
|
|
3495
|
+
name = "strsim"
|
|
3496
|
+
version = "0.11.1"
|
|
3497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3498
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3499
|
+
|
|
3500
|
+
[[package]]
|
|
3501
|
+
name = "subtle"
|
|
3502
|
+
version = "2.6.1"
|
|
3503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3504
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3505
|
+
|
|
3506
|
+
[[package]]
|
|
3507
|
+
name = "syn"
|
|
3508
|
+
version = "2.0.119"
|
|
3509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
3511
|
+
dependencies = [
|
|
3512
|
+
"proc-macro2",
|
|
3513
|
+
"quote",
|
|
3514
|
+
"unicode-ident",
|
|
3515
|
+
]
|
|
3516
|
+
|
|
3517
|
+
[[package]]
|
|
3518
|
+
name = "syn"
|
|
3519
|
+
version = "3.0.3"
|
|
3520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3521
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
3522
|
+
dependencies = [
|
|
3523
|
+
"proc-macro2",
|
|
3524
|
+
"quote",
|
|
3525
|
+
"unicode-ident",
|
|
3526
|
+
]
|
|
3527
|
+
|
|
3528
|
+
[[package]]
|
|
3529
|
+
name = "sync_wrapper"
|
|
3530
|
+
version = "1.0.2"
|
|
3531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3532
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3533
|
+
dependencies = [
|
|
3534
|
+
"futures-core",
|
|
3535
|
+
]
|
|
3536
|
+
|
|
3537
|
+
[[package]]
|
|
3538
|
+
name = "synstructure"
|
|
3539
|
+
version = "0.13.2"
|
|
3540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3542
|
+
dependencies = [
|
|
3543
|
+
"proc-macro2",
|
|
3544
|
+
"quote",
|
|
3545
|
+
"syn 2.0.119",
|
|
3546
|
+
]
|
|
3547
|
+
|
|
3548
|
+
[[package]]
|
|
3549
|
+
name = "target-lexicon"
|
|
3550
|
+
version = "0.13.5"
|
|
3551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
3553
|
+
|
|
3554
|
+
[[package]]
|
|
3555
|
+
name = "tempfile"
|
|
3556
|
+
version = "3.27.0"
|
|
3557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3558
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3559
|
+
dependencies = [
|
|
3560
|
+
"fastrand",
|
|
3561
|
+
"getrandom 0.3.4",
|
|
3562
|
+
"once_cell",
|
|
3563
|
+
"rustix",
|
|
3564
|
+
"windows-sys 0.61.2",
|
|
3565
|
+
]
|
|
3566
|
+
|
|
3567
|
+
[[package]]
|
|
3568
|
+
name = "thiserror"
|
|
3569
|
+
version = "2.0.19"
|
|
3570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
3572
|
+
dependencies = [
|
|
3573
|
+
"thiserror-impl",
|
|
3574
|
+
]
|
|
3575
|
+
|
|
3576
|
+
[[package]]
|
|
3577
|
+
name = "thiserror-impl"
|
|
3578
|
+
version = "2.0.19"
|
|
3579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3580
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
3581
|
+
dependencies = [
|
|
3582
|
+
"proc-macro2",
|
|
3583
|
+
"quote",
|
|
3584
|
+
"syn 3.0.3",
|
|
3585
|
+
]
|
|
3586
|
+
|
|
3587
|
+
[[package]]
|
|
3588
|
+
name = "thread_local"
|
|
3589
|
+
version = "1.1.10"
|
|
3590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
+
checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
|
|
3592
|
+
dependencies = [
|
|
3593
|
+
"cfg-if",
|
|
3594
|
+
]
|
|
3595
|
+
|
|
3596
|
+
[[package]]
|
|
3597
|
+
name = "thrift"
|
|
3598
|
+
version = "0.17.0"
|
|
3599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3600
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
3601
|
+
dependencies = [
|
|
3602
|
+
"byteorder",
|
|
3603
|
+
"integer-encoding",
|
|
3604
|
+
"ordered-float",
|
|
3605
|
+
]
|
|
3606
|
+
|
|
3607
|
+
[[package]]
|
|
3608
|
+
name = "tiny-keccak"
|
|
3609
|
+
version = "2.0.2"
|
|
3610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
3612
|
+
dependencies = [
|
|
3613
|
+
"crunchy",
|
|
3614
|
+
]
|
|
3615
|
+
|
|
3616
|
+
[[package]]
|
|
3617
|
+
name = "tinystr"
|
|
3618
|
+
version = "0.8.3"
|
|
3619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3620
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3621
|
+
dependencies = [
|
|
3622
|
+
"displaydoc",
|
|
3623
|
+
"zerovec",
|
|
3624
|
+
]
|
|
3625
|
+
|
|
3626
|
+
[[package]]
|
|
3627
|
+
name = "tinyvec"
|
|
3628
|
+
version = "1.12.0"
|
|
3629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3630
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
3631
|
+
dependencies = [
|
|
3632
|
+
"tinyvec_macros",
|
|
3633
|
+
]
|
|
3634
|
+
|
|
3635
|
+
[[package]]
|
|
3636
|
+
name = "tinyvec_macros"
|
|
3637
|
+
version = "0.1.1"
|
|
3638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3639
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3640
|
+
|
|
3641
|
+
[[package]]
|
|
3642
|
+
name = "tokio"
|
|
3643
|
+
version = "1.53.1"
|
|
3644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3645
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
3646
|
+
dependencies = [
|
|
3647
|
+
"bytes",
|
|
3648
|
+
"libc",
|
|
3649
|
+
"mio",
|
|
3650
|
+
"pin-project-lite",
|
|
3651
|
+
"signal-hook-registry",
|
|
3652
|
+
"socket2",
|
|
3653
|
+
"tokio-macros",
|
|
3654
|
+
"windows-sys 0.61.2",
|
|
3655
|
+
]
|
|
3656
|
+
|
|
3657
|
+
[[package]]
|
|
3658
|
+
name = "tokio-macros"
|
|
3659
|
+
version = "2.7.1"
|
|
3660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
+
checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
|
|
3662
|
+
dependencies = [
|
|
3663
|
+
"proc-macro2",
|
|
3664
|
+
"quote",
|
|
3665
|
+
"syn 2.0.119",
|
|
3666
|
+
]
|
|
3667
|
+
|
|
3668
|
+
[[package]]
|
|
3669
|
+
name = "tokio-rustls"
|
|
3670
|
+
version = "0.26.4"
|
|
3671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3672
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3673
|
+
dependencies = [
|
|
3674
|
+
"rustls",
|
|
3675
|
+
"tokio",
|
|
3676
|
+
]
|
|
3677
|
+
|
|
3678
|
+
[[package]]
|
|
3679
|
+
name = "tokio-stream"
|
|
3680
|
+
version = "0.1.18"
|
|
3681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3682
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
3683
|
+
dependencies = [
|
|
3684
|
+
"futures-core",
|
|
3685
|
+
"pin-project-lite",
|
|
3686
|
+
"tokio",
|
|
3687
|
+
"tokio-util",
|
|
3688
|
+
]
|
|
3689
|
+
|
|
3690
|
+
[[package]]
|
|
3691
|
+
name = "tokio-util"
|
|
3692
|
+
version = "0.7.19"
|
|
3693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3694
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
3695
|
+
dependencies = [
|
|
3696
|
+
"bytes",
|
|
3697
|
+
"futures-core",
|
|
3698
|
+
"futures-sink",
|
|
3699
|
+
"libc",
|
|
3700
|
+
"pin-project-lite",
|
|
3701
|
+
"tokio",
|
|
3702
|
+
]
|
|
3703
|
+
|
|
3704
|
+
[[package]]
|
|
3705
|
+
name = "tower"
|
|
3706
|
+
version = "0.5.3"
|
|
3707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3708
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
3709
|
+
dependencies = [
|
|
3710
|
+
"futures-core",
|
|
3711
|
+
"futures-util",
|
|
3712
|
+
"pin-project-lite",
|
|
3713
|
+
"sync_wrapper",
|
|
3714
|
+
"tokio",
|
|
3715
|
+
"tokio-util",
|
|
3716
|
+
"tower-layer",
|
|
3717
|
+
"tower-service",
|
|
3718
|
+
"tracing",
|
|
3719
|
+
]
|
|
3720
|
+
|
|
3721
|
+
[[package]]
|
|
3722
|
+
name = "tower-http"
|
|
3723
|
+
version = "0.6.11"
|
|
3724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
3726
|
+
dependencies = [
|
|
3727
|
+
"bitflags",
|
|
3728
|
+
"bytes",
|
|
3729
|
+
"futures-util",
|
|
3730
|
+
"http",
|
|
3731
|
+
"http-body",
|
|
3732
|
+
"pin-project-lite",
|
|
3733
|
+
"tower",
|
|
3734
|
+
"tower-layer",
|
|
3735
|
+
"tower-service",
|
|
3736
|
+
"tracing",
|
|
3737
|
+
"url",
|
|
3738
|
+
]
|
|
3739
|
+
|
|
3740
|
+
[[package]]
|
|
3741
|
+
name = "tower-layer"
|
|
3742
|
+
version = "0.3.3"
|
|
3743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3744
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3745
|
+
|
|
3746
|
+
[[package]]
|
|
3747
|
+
name = "tower-service"
|
|
3748
|
+
version = "0.3.3"
|
|
3749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3750
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3751
|
+
|
|
3752
|
+
[[package]]
|
|
3753
|
+
name = "tracing"
|
|
3754
|
+
version = "0.1.44"
|
|
3755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3756
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3757
|
+
dependencies = [
|
|
3758
|
+
"log",
|
|
3759
|
+
"pin-project-lite",
|
|
3760
|
+
"tracing-attributes",
|
|
3761
|
+
"tracing-core",
|
|
3762
|
+
]
|
|
3763
|
+
|
|
3764
|
+
[[package]]
|
|
3765
|
+
name = "tracing-attributes"
|
|
3766
|
+
version = "0.1.31"
|
|
3767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3768
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3769
|
+
dependencies = [
|
|
3770
|
+
"proc-macro2",
|
|
3771
|
+
"quote",
|
|
3772
|
+
"syn 2.0.119",
|
|
3773
|
+
]
|
|
3774
|
+
|
|
3775
|
+
[[package]]
|
|
3776
|
+
name = "tracing-core"
|
|
3777
|
+
version = "0.1.36"
|
|
3778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3780
|
+
dependencies = [
|
|
3781
|
+
"once_cell",
|
|
3782
|
+
"valuable",
|
|
3783
|
+
]
|
|
3784
|
+
|
|
3785
|
+
[[package]]
|
|
3786
|
+
name = "tracing-log"
|
|
3787
|
+
version = "0.2.0"
|
|
3788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3789
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3790
|
+
dependencies = [
|
|
3791
|
+
"log",
|
|
3792
|
+
"once_cell",
|
|
3793
|
+
"tracing-core",
|
|
3794
|
+
]
|
|
3795
|
+
|
|
3796
|
+
[[package]]
|
|
3797
|
+
name = "tracing-subscriber"
|
|
3798
|
+
version = "0.3.23"
|
|
3799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3800
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
3801
|
+
dependencies = [
|
|
3802
|
+
"matchers",
|
|
3803
|
+
"nu-ansi-term",
|
|
3804
|
+
"once_cell",
|
|
3805
|
+
"regex-automata",
|
|
3806
|
+
"sharded-slab",
|
|
3807
|
+
"smallvec",
|
|
3808
|
+
"thread_local",
|
|
3809
|
+
"tracing",
|
|
3810
|
+
"tracing-core",
|
|
3811
|
+
"tracing-log",
|
|
3812
|
+
]
|
|
3813
|
+
|
|
3814
|
+
[[package]]
|
|
3815
|
+
name = "try-lock"
|
|
3816
|
+
version = "0.2.5"
|
|
3817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3818
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3819
|
+
|
|
3820
|
+
[[package]]
|
|
3821
|
+
name = "twox-hash"
|
|
3822
|
+
version = "2.1.3"
|
|
3823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3824
|
+
checksum = "8464ec13c3691491391d9fce00f6416c9a48e46972f72d7865688be2080192c9"
|
|
3825
|
+
|
|
3826
|
+
[[package]]
|
|
3827
|
+
name = "typenum"
|
|
3828
|
+
version = "1.20.1"
|
|
3829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3830
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
3831
|
+
|
|
3832
|
+
[[package]]
|
|
3833
|
+
name = "unicode-ident"
|
|
3834
|
+
version = "1.0.24"
|
|
3835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3836
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3837
|
+
|
|
3838
|
+
[[package]]
|
|
3839
|
+
name = "unicode-segmentation"
|
|
3840
|
+
version = "1.13.3"
|
|
3841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3842
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
3843
|
+
|
|
3844
|
+
[[package]]
|
|
3845
|
+
name = "unicode-width"
|
|
3846
|
+
version = "0.2.2"
|
|
3847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3849
|
+
|
|
3850
|
+
[[package]]
|
|
3851
|
+
name = "untrusted"
|
|
3852
|
+
version = "0.9.0"
|
|
3853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3854
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3855
|
+
|
|
3856
|
+
[[package]]
|
|
3857
|
+
name = "url"
|
|
3858
|
+
version = "2.5.8"
|
|
3859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3860
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3861
|
+
dependencies = [
|
|
3862
|
+
"form_urlencoded",
|
|
3863
|
+
"idna",
|
|
3864
|
+
"percent-encoding",
|
|
3865
|
+
"serde",
|
|
3866
|
+
]
|
|
3867
|
+
|
|
3868
|
+
[[package]]
|
|
3869
|
+
name = "utf8_iter"
|
|
3870
|
+
version = "1.0.4"
|
|
3871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3872
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3873
|
+
|
|
3874
|
+
[[package]]
|
|
3875
|
+
name = "utf8parse"
|
|
3876
|
+
version = "0.2.2"
|
|
3877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3878
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3879
|
+
|
|
3880
|
+
[[package]]
|
|
3881
|
+
name = "uuid"
|
|
3882
|
+
version = "1.24.0"
|
|
3883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
|
+
checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
|
|
3885
|
+
dependencies = [
|
|
3886
|
+
"getrandom 0.4.3",
|
|
3887
|
+
"js-sys",
|
|
3888
|
+
"serde_core",
|
|
3889
|
+
"wasm-bindgen",
|
|
3890
|
+
]
|
|
3891
|
+
|
|
3892
|
+
[[package]]
|
|
3893
|
+
name = "valuable"
|
|
3894
|
+
version = "0.1.1"
|
|
3895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3896
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3897
|
+
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "version_check"
|
|
3900
|
+
version = "0.9.5"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3903
|
+
|
|
3904
|
+
[[package]]
|
|
3905
|
+
name = "walkdir"
|
|
3906
|
+
version = "2.5.0"
|
|
3907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3908
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3909
|
+
dependencies = [
|
|
3910
|
+
"same-file",
|
|
3911
|
+
"winapi-util",
|
|
3912
|
+
]
|
|
3913
|
+
|
|
3914
|
+
[[package]]
|
|
3915
|
+
name = "want"
|
|
3916
|
+
version = "0.3.1"
|
|
3917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3918
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3919
|
+
dependencies = [
|
|
3920
|
+
"try-lock",
|
|
3921
|
+
]
|
|
3922
|
+
|
|
3923
|
+
[[package]]
|
|
3924
|
+
name = "wasi"
|
|
3925
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3927
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3928
|
+
|
|
3929
|
+
[[package]]
|
|
3930
|
+
name = "wasip2"
|
|
3931
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3933
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3934
|
+
dependencies = [
|
|
3935
|
+
"wit-bindgen",
|
|
3936
|
+
]
|
|
3937
|
+
|
|
3938
|
+
[[package]]
|
|
3939
|
+
name = "wasm-bindgen"
|
|
3940
|
+
version = "0.2.126"
|
|
3941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3942
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
3943
|
+
dependencies = [
|
|
3944
|
+
"cfg-if",
|
|
3945
|
+
"once_cell",
|
|
3946
|
+
"rustversion",
|
|
3947
|
+
"wasm-bindgen-macro",
|
|
3948
|
+
"wasm-bindgen-shared",
|
|
3949
|
+
]
|
|
3950
|
+
|
|
3951
|
+
[[package]]
|
|
3952
|
+
name = "wasm-bindgen-futures"
|
|
3953
|
+
version = "0.4.76"
|
|
3954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3955
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
3956
|
+
dependencies = [
|
|
3957
|
+
"js-sys",
|
|
3958
|
+
"wasm-bindgen",
|
|
3959
|
+
]
|
|
3960
|
+
|
|
3961
|
+
[[package]]
|
|
3962
|
+
name = "wasm-bindgen-macro"
|
|
3963
|
+
version = "0.2.126"
|
|
3964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3965
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
3966
|
+
dependencies = [
|
|
3967
|
+
"quote",
|
|
3968
|
+
"wasm-bindgen-macro-support",
|
|
3969
|
+
]
|
|
3970
|
+
|
|
3971
|
+
[[package]]
|
|
3972
|
+
name = "wasm-bindgen-macro-support"
|
|
3973
|
+
version = "0.2.126"
|
|
3974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3975
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
3976
|
+
dependencies = [
|
|
3977
|
+
"bumpalo",
|
|
3978
|
+
"proc-macro2",
|
|
3979
|
+
"quote",
|
|
3980
|
+
"syn 2.0.119",
|
|
3981
|
+
"wasm-bindgen-shared",
|
|
3982
|
+
]
|
|
3983
|
+
|
|
3984
|
+
[[package]]
|
|
3985
|
+
name = "wasm-bindgen-shared"
|
|
3986
|
+
version = "0.2.126"
|
|
3987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3988
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
3989
|
+
dependencies = [
|
|
3990
|
+
"unicode-ident",
|
|
3991
|
+
]
|
|
3992
|
+
|
|
3993
|
+
[[package]]
|
|
3994
|
+
name = "wasm-streams"
|
|
3995
|
+
version = "0.5.0"
|
|
3996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3997
|
+
checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
|
|
3998
|
+
dependencies = [
|
|
3999
|
+
"futures-util",
|
|
4000
|
+
"js-sys",
|
|
4001
|
+
"wasm-bindgen",
|
|
4002
|
+
"wasm-bindgen-futures",
|
|
4003
|
+
"web-sys",
|
|
4004
|
+
]
|
|
4005
|
+
|
|
4006
|
+
[[package]]
|
|
4007
|
+
name = "web-sys"
|
|
4008
|
+
version = "0.3.103"
|
|
4009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4010
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
4011
|
+
dependencies = [
|
|
4012
|
+
"js-sys",
|
|
4013
|
+
"wasm-bindgen",
|
|
4014
|
+
]
|
|
4015
|
+
|
|
4016
|
+
[[package]]
|
|
4017
|
+
name = "web-time"
|
|
4018
|
+
version = "1.1.0"
|
|
4019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4020
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4021
|
+
dependencies = [
|
|
4022
|
+
"js-sys",
|
|
4023
|
+
"wasm-bindgen",
|
|
4024
|
+
]
|
|
4025
|
+
|
|
4026
|
+
[[package]]
|
|
4027
|
+
name = "webpki-root-certs"
|
|
4028
|
+
version = "1.0.9"
|
|
4029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
+
checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
|
|
4031
|
+
dependencies = [
|
|
4032
|
+
"rustls-pki-types",
|
|
4033
|
+
]
|
|
4034
|
+
|
|
4035
|
+
[[package]]
|
|
4036
|
+
name = "winapi"
|
|
4037
|
+
version = "0.3.9"
|
|
4038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4039
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4040
|
+
dependencies = [
|
|
4041
|
+
"winapi-i686-pc-windows-gnu",
|
|
4042
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
4043
|
+
]
|
|
4044
|
+
|
|
4045
|
+
[[package]]
|
|
4046
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
4047
|
+
version = "0.4.0"
|
|
4048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4049
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4050
|
+
|
|
4051
|
+
[[package]]
|
|
4052
|
+
name = "winapi-util"
|
|
4053
|
+
version = "0.1.11"
|
|
4054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4055
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4056
|
+
dependencies = [
|
|
4057
|
+
"windows-sys 0.61.2",
|
|
4058
|
+
]
|
|
4059
|
+
|
|
4060
|
+
[[package]]
|
|
4061
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
4062
|
+
version = "0.4.0"
|
|
4063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4064
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4065
|
+
|
|
4066
|
+
[[package]]
|
|
4067
|
+
name = "windows-core"
|
|
4068
|
+
version = "0.62.2"
|
|
4069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4070
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4071
|
+
dependencies = [
|
|
4072
|
+
"windows-implement",
|
|
4073
|
+
"windows-interface",
|
|
4074
|
+
"windows-link",
|
|
4075
|
+
"windows-result",
|
|
4076
|
+
"windows-strings",
|
|
4077
|
+
]
|
|
4078
|
+
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "windows-implement"
|
|
4081
|
+
version = "0.60.2"
|
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4084
|
+
dependencies = [
|
|
4085
|
+
"proc-macro2",
|
|
4086
|
+
"quote",
|
|
4087
|
+
"syn 2.0.119",
|
|
4088
|
+
]
|
|
4089
|
+
|
|
4090
|
+
[[package]]
|
|
4091
|
+
name = "windows-interface"
|
|
4092
|
+
version = "0.59.3"
|
|
4093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4094
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4095
|
+
dependencies = [
|
|
4096
|
+
"proc-macro2",
|
|
4097
|
+
"quote",
|
|
4098
|
+
"syn 2.0.119",
|
|
4099
|
+
]
|
|
4100
|
+
|
|
4101
|
+
[[package]]
|
|
4102
|
+
name = "windows-link"
|
|
4103
|
+
version = "0.2.1"
|
|
4104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4105
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4106
|
+
|
|
4107
|
+
[[package]]
|
|
4108
|
+
name = "windows-result"
|
|
4109
|
+
version = "0.4.1"
|
|
4110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4111
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4112
|
+
dependencies = [
|
|
4113
|
+
"windows-link",
|
|
4114
|
+
]
|
|
4115
|
+
|
|
4116
|
+
[[package]]
|
|
4117
|
+
name = "windows-strings"
|
|
4118
|
+
version = "0.5.1"
|
|
4119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4120
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4121
|
+
dependencies = [
|
|
4122
|
+
"windows-link",
|
|
4123
|
+
]
|
|
4124
|
+
|
|
4125
|
+
[[package]]
|
|
4126
|
+
name = "windows-sys"
|
|
4127
|
+
version = "0.52.0"
|
|
4128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4130
|
+
dependencies = [
|
|
4131
|
+
"windows-targets",
|
|
4132
|
+
]
|
|
4133
|
+
|
|
4134
|
+
[[package]]
|
|
4135
|
+
name = "windows-sys"
|
|
4136
|
+
version = "0.59.0"
|
|
4137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4138
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4139
|
+
dependencies = [
|
|
4140
|
+
"windows-targets",
|
|
4141
|
+
]
|
|
4142
|
+
|
|
4143
|
+
[[package]]
|
|
4144
|
+
name = "windows-sys"
|
|
4145
|
+
version = "0.61.2"
|
|
4146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4148
|
+
dependencies = [
|
|
4149
|
+
"windows-link",
|
|
4150
|
+
]
|
|
4151
|
+
|
|
4152
|
+
[[package]]
|
|
4153
|
+
name = "windows-targets"
|
|
4154
|
+
version = "0.52.6"
|
|
4155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4156
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4157
|
+
dependencies = [
|
|
4158
|
+
"windows_aarch64_gnullvm",
|
|
4159
|
+
"windows_aarch64_msvc",
|
|
4160
|
+
"windows_i686_gnu",
|
|
4161
|
+
"windows_i686_gnullvm",
|
|
4162
|
+
"windows_i686_msvc",
|
|
4163
|
+
"windows_x86_64_gnu",
|
|
4164
|
+
"windows_x86_64_gnullvm",
|
|
4165
|
+
"windows_x86_64_msvc",
|
|
4166
|
+
]
|
|
4167
|
+
|
|
4168
|
+
[[package]]
|
|
4169
|
+
name = "windows_aarch64_gnullvm"
|
|
4170
|
+
version = "0.52.6"
|
|
4171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4172
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4173
|
+
|
|
4174
|
+
[[package]]
|
|
4175
|
+
name = "windows_aarch64_msvc"
|
|
4176
|
+
version = "0.52.6"
|
|
4177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4178
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4179
|
+
|
|
4180
|
+
[[package]]
|
|
4181
|
+
name = "windows_i686_gnu"
|
|
4182
|
+
version = "0.52.6"
|
|
4183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4184
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4185
|
+
|
|
4186
|
+
[[package]]
|
|
4187
|
+
name = "windows_i686_gnullvm"
|
|
4188
|
+
version = "0.52.6"
|
|
4189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4190
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4191
|
+
|
|
4192
|
+
[[package]]
|
|
4193
|
+
name = "windows_i686_msvc"
|
|
4194
|
+
version = "0.52.6"
|
|
4195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4196
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4197
|
+
|
|
4198
|
+
[[package]]
|
|
4199
|
+
name = "windows_x86_64_gnu"
|
|
4200
|
+
version = "0.52.6"
|
|
4201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4202
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4203
|
+
|
|
4204
|
+
[[package]]
|
|
4205
|
+
name = "windows_x86_64_gnullvm"
|
|
4206
|
+
version = "0.52.6"
|
|
4207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4208
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4209
|
+
|
|
4210
|
+
[[package]]
|
|
4211
|
+
name = "windows_x86_64_msvc"
|
|
4212
|
+
version = "0.52.6"
|
|
4213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4214
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4215
|
+
|
|
4216
|
+
[[package]]
|
|
4217
|
+
name = "wit-bindgen"
|
|
4218
|
+
version = "0.57.1"
|
|
4219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4220
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
4221
|
+
|
|
4222
|
+
[[package]]
|
|
4223
|
+
name = "writeable"
|
|
4224
|
+
version = "0.6.3"
|
|
4225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4226
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
4227
|
+
|
|
4228
|
+
[[package]]
|
|
4229
|
+
name = "yoke"
|
|
4230
|
+
version = "0.8.3"
|
|
4231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4232
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
4233
|
+
dependencies = [
|
|
4234
|
+
"stable_deref_trait",
|
|
4235
|
+
"yoke-derive",
|
|
4236
|
+
"zerofrom",
|
|
4237
|
+
]
|
|
4238
|
+
|
|
4239
|
+
[[package]]
|
|
4240
|
+
name = "yoke-derive"
|
|
4241
|
+
version = "0.8.2"
|
|
4242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4243
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
4244
|
+
dependencies = [
|
|
4245
|
+
"proc-macro2",
|
|
4246
|
+
"quote",
|
|
4247
|
+
"syn 2.0.119",
|
|
4248
|
+
"synstructure",
|
|
4249
|
+
]
|
|
4250
|
+
|
|
4251
|
+
[[package]]
|
|
4252
|
+
name = "zerocopy"
|
|
4253
|
+
version = "0.8.55"
|
|
4254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4255
|
+
checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
|
|
4256
|
+
dependencies = [
|
|
4257
|
+
"zerocopy-derive",
|
|
4258
|
+
]
|
|
4259
|
+
|
|
4260
|
+
[[package]]
|
|
4261
|
+
name = "zerocopy-derive"
|
|
4262
|
+
version = "0.8.55"
|
|
4263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4264
|
+
checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
|
|
4265
|
+
dependencies = [
|
|
4266
|
+
"proc-macro2",
|
|
4267
|
+
"quote",
|
|
4268
|
+
"syn 2.0.119",
|
|
4269
|
+
]
|
|
4270
|
+
|
|
4271
|
+
[[package]]
|
|
4272
|
+
name = "zerofrom"
|
|
4273
|
+
version = "0.1.8"
|
|
4274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4275
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
4276
|
+
dependencies = [
|
|
4277
|
+
"zerofrom-derive",
|
|
4278
|
+
]
|
|
4279
|
+
|
|
4280
|
+
[[package]]
|
|
4281
|
+
name = "zerofrom-derive"
|
|
4282
|
+
version = "0.1.7"
|
|
4283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4284
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
4285
|
+
dependencies = [
|
|
4286
|
+
"proc-macro2",
|
|
4287
|
+
"quote",
|
|
4288
|
+
"syn 2.0.119",
|
|
4289
|
+
"synstructure",
|
|
4290
|
+
]
|
|
4291
|
+
|
|
4292
|
+
[[package]]
|
|
4293
|
+
name = "zeroize"
|
|
4294
|
+
version = "1.9.0"
|
|
4295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4296
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
4297
|
+
|
|
4298
|
+
[[package]]
|
|
4299
|
+
name = "zerotrie"
|
|
4300
|
+
version = "0.2.4"
|
|
4301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4302
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
4303
|
+
dependencies = [
|
|
4304
|
+
"displaydoc",
|
|
4305
|
+
"yoke",
|
|
4306
|
+
"zerofrom",
|
|
4307
|
+
]
|
|
4308
|
+
|
|
4309
|
+
[[package]]
|
|
4310
|
+
name = "zerovec"
|
|
4311
|
+
version = "0.11.6"
|
|
4312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4313
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
4314
|
+
dependencies = [
|
|
4315
|
+
"yoke",
|
|
4316
|
+
"zerofrom",
|
|
4317
|
+
"zerovec-derive",
|
|
4318
|
+
]
|
|
4319
|
+
|
|
4320
|
+
[[package]]
|
|
4321
|
+
name = "zerovec-derive"
|
|
4322
|
+
version = "0.11.3"
|
|
4323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4324
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
4325
|
+
dependencies = [
|
|
4326
|
+
"proc-macro2",
|
|
4327
|
+
"quote",
|
|
4328
|
+
"syn 2.0.119",
|
|
4329
|
+
]
|
|
4330
|
+
|
|
4331
|
+
[[package]]
|
|
4332
|
+
name = "zlib-rs"
|
|
4333
|
+
version = "0.6.6"
|
|
4334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4335
|
+
checksum = "b142a20ec14a91d5bc708c1dc21b080c550113d8aa77afa29635673a65dd02c5"
|
|
4336
|
+
|
|
4337
|
+
[[package]]
|
|
4338
|
+
name = "zmij"
|
|
4339
|
+
version = "1.0.23"
|
|
4340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4341
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
4342
|
+
|
|
4343
|
+
[[package]]
|
|
4344
|
+
name = "zstd"
|
|
4345
|
+
version = "0.13.3"
|
|
4346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4347
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4348
|
+
dependencies = [
|
|
4349
|
+
"zstd-safe",
|
|
4350
|
+
]
|
|
4351
|
+
|
|
4352
|
+
[[package]]
|
|
4353
|
+
name = "zstd-safe"
|
|
4354
|
+
version = "7.2.4"
|
|
4355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4356
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4357
|
+
dependencies = [
|
|
4358
|
+
"zstd-sys",
|
|
4359
|
+
]
|
|
4360
|
+
|
|
4361
|
+
[[package]]
|
|
4362
|
+
name = "zstd-sys"
|
|
4363
|
+
version = "2.0.16+zstd.1.5.7"
|
|
4364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4365
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
4366
|
+
dependencies = [
|
|
4367
|
+
"cc",
|
|
4368
|
+
"pkg-config",
|
|
4369
|
+
]
|