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