wavecord 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wavecord-1.1.0/Cargo.lock +2081 -0
- wavecord-1.1.0/Cargo.toml +27 -0
- wavecord-1.1.0/LICENSE +21 -0
- wavecord-1.1.0/PKG-INFO +237 -0
- wavecord-1.1.0/README.md +191 -0
- wavecord-1.1.0/crates/wavecord-core/Cargo.toml +26 -0
- wavecord-1.1.0/crates/wavecord-core/benches/parse.rs +48 -0
- wavecord-1.1.0/crates/wavecord-core/src/error.rs +36 -0
- wavecord-1.1.0/crates/wavecord-core/src/lib.rs +88 -0
- wavecord-1.1.0/crates/wavecord-core/src/model/events.rs +113 -0
- wavecord-1.1.0/crates/wavecord-core/src/model/load.rs +63 -0
- wavecord-1.1.0/crates/wavecord-core/src/model/mod.rs +19 -0
- wavecord-1.1.0/crates/wavecord-core/src/model/player.rs +112 -0
- wavecord-1.1.0/crates/wavecord-core/src/model/stats.rs +43 -0
- wavecord-1.1.0/crates/wavecord-core/src/model/tests.rs +342 -0
- wavecord-1.1.0/crates/wavecord-core/src/model/track.rs +37 -0
- wavecord-1.1.0/crates/wavecord-core/src/node.rs +749 -0
- wavecord-1.1.0/crates/wavecord-core/src/protocol/mod.rs +42 -0
- wavecord-1.1.0/crates/wavecord-core/src/protocol/v3.rs +258 -0
- wavecord-1.1.0/crates/wavecord-core/src/rest.rs +176 -0
- wavecord-1.1.0/crates/wavecord-core/src/ws.rs +45 -0
- wavecord-1.1.0/crates/wavecord-py/Cargo.toml +21 -0
- wavecord-1.1.0/crates/wavecord-py/src/lib.rs +495 -0
- wavecord-1.1.0/pyproject.toml +66 -0
- wavecord-1.1.0/python/wavecord/__init__.py +31 -0
- wavecord-1.1.0/python/wavecord/_wavecord.pyi +77 -0
- wavecord-1.1.0/python/wavecord/adapters/__init__.py +7 -0
- wavecord-1.1.0/python/wavecord/adapters/_base.py +56 -0
- wavecord-1.1.0/python/wavecord/adapters/discordpy.py +11 -0
- wavecord-1.1.0/python/wavecord/adapters/disnake.py +11 -0
- wavecord-1.1.0/python/wavecord/adapters/forwarder.py +45 -0
- wavecord-1.1.0/python/wavecord/adapters/nextcord.py +11 -0
- wavecord-1.1.0/python/wavecord/adapters/pycord.py +11 -0
- wavecord-1.1.0/python/wavecord/dispatcher.py +108 -0
- wavecord-1.1.0/python/wavecord/events.py +157 -0
- wavecord-1.1.0/python/wavecord/failover.py +96 -0
- wavecord-1.1.0/python/wavecord/filters.py +55 -0
- wavecord-1.1.0/python/wavecord/metrics.py +65 -0
- wavecord-1.1.0/python/wavecord/player.py +61 -0
- wavecord-1.1.0/python/wavecord/pool.py +134 -0
- wavecord-1.1.0/python/wavecord/py.typed +0 -0
- wavecord-1.1.0/python/wavecord/queue.py +98 -0
- wavecord-1.1.0/python/wavecord/sources.py +45 -0
|
@@ -0,0 +1,2081 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anes"
|
|
16
|
+
version = "0.1.6"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.14"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "atomic-waker"
|
|
28
|
+
version = "1.1.2"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "autocfg"
|
|
34
|
+
version = "1.5.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "base64"
|
|
40
|
+
version = "0.22.1"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "bitflags"
|
|
46
|
+
version = "2.13.1"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "block-buffer"
|
|
52
|
+
version = "0.10.4"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"generic-array",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "bumpalo"
|
|
61
|
+
version = "3.20.3"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "byteorder"
|
|
67
|
+
version = "1.5.0"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "bytes"
|
|
73
|
+
version = "1.12.1"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "cast"
|
|
79
|
+
version = "0.3.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "cc"
|
|
85
|
+
version = "1.4.0"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"find-msvc-tools",
|
|
90
|
+
"shlex",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "cfg-if"
|
|
95
|
+
version = "1.0.4"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "cfg_aliases"
|
|
101
|
+
version = "0.2.2"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "chacha20"
|
|
107
|
+
version = "0.10.1"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"cfg-if",
|
|
112
|
+
"cpufeatures 0.3.0",
|
|
113
|
+
"rand_core 0.10.1",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "ciborium"
|
|
118
|
+
version = "0.2.2"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"ciborium-io",
|
|
123
|
+
"ciborium-ll",
|
|
124
|
+
"serde",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "ciborium-io"
|
|
129
|
+
version = "0.2.2"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "ciborium-ll"
|
|
135
|
+
version = "0.2.2"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"ciborium-io",
|
|
140
|
+
"half",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "clap"
|
|
145
|
+
version = "4.6.4"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"clap_builder",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "clap_builder"
|
|
154
|
+
version = "4.6.2"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"anstyle",
|
|
159
|
+
"clap_lex",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "clap_lex"
|
|
164
|
+
version = "1.1.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "core-foundation"
|
|
170
|
+
version = "0.10.1"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"core-foundation-sys",
|
|
175
|
+
"libc",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "core-foundation-sys"
|
|
180
|
+
version = "0.8.7"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "cpufeatures"
|
|
186
|
+
version = "0.2.17"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"libc",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "cpufeatures"
|
|
195
|
+
version = "0.3.0"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"libc",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "criterion"
|
|
204
|
+
version = "0.5.1"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"anes",
|
|
209
|
+
"cast",
|
|
210
|
+
"ciborium",
|
|
211
|
+
"clap",
|
|
212
|
+
"criterion-plot",
|
|
213
|
+
"is-terminal",
|
|
214
|
+
"itertools",
|
|
215
|
+
"num-traits",
|
|
216
|
+
"once_cell",
|
|
217
|
+
"oorandom",
|
|
218
|
+
"plotters",
|
|
219
|
+
"rayon",
|
|
220
|
+
"regex",
|
|
221
|
+
"serde",
|
|
222
|
+
"serde_derive",
|
|
223
|
+
"serde_json",
|
|
224
|
+
"tinytemplate",
|
|
225
|
+
"walkdir",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "criterion-plot"
|
|
230
|
+
version = "0.5.0"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"cast",
|
|
235
|
+
"itertools",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "crossbeam-deque"
|
|
240
|
+
version = "0.8.7"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"crossbeam-epoch",
|
|
245
|
+
"crossbeam-utils",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "crossbeam-epoch"
|
|
250
|
+
version = "0.9.20"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"crossbeam-utils",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "crossbeam-utils"
|
|
259
|
+
version = "0.8.22"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "crunchy"
|
|
265
|
+
version = "0.2.4"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "crypto-common"
|
|
271
|
+
version = "0.1.7"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"generic-array",
|
|
276
|
+
"typenum",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "data-encoding"
|
|
281
|
+
version = "2.11.0"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "digest"
|
|
287
|
+
version = "0.10.7"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"block-buffer",
|
|
292
|
+
"crypto-common",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "displaydoc"
|
|
297
|
+
version = "0.2.6"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"proc-macro2",
|
|
302
|
+
"quote",
|
|
303
|
+
"syn 2.0.119",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "either"
|
|
308
|
+
version = "1.17.0"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "equivalent"
|
|
314
|
+
version = "1.0.2"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "find-msvc-tools"
|
|
320
|
+
version = "0.1.9"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "fnv"
|
|
326
|
+
version = "1.0.7"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "form_urlencoded"
|
|
332
|
+
version = "1.2.2"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"percent-encoding",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "futures-channel"
|
|
341
|
+
version = "0.3.33"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"futures-core",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "futures-core"
|
|
350
|
+
version = "0.3.33"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "futures-macro"
|
|
356
|
+
version = "0.3.33"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"proc-macro2",
|
|
361
|
+
"quote",
|
|
362
|
+
"syn 2.0.119",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "futures-sink"
|
|
367
|
+
version = "0.3.33"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "futures-task"
|
|
373
|
+
version = "0.3.33"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "futures-util"
|
|
379
|
+
version = "0.3.33"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"futures-core",
|
|
384
|
+
"futures-macro",
|
|
385
|
+
"futures-sink",
|
|
386
|
+
"futures-task",
|
|
387
|
+
"pin-project-lite",
|
|
388
|
+
"slab",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "generic-array"
|
|
393
|
+
version = "0.14.7"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"typenum",
|
|
398
|
+
"version_check",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "getrandom"
|
|
403
|
+
version = "0.2.17"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
406
|
+
dependencies = [
|
|
407
|
+
"cfg-if",
|
|
408
|
+
"js-sys",
|
|
409
|
+
"libc",
|
|
410
|
+
"wasi",
|
|
411
|
+
"wasm-bindgen",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "getrandom"
|
|
416
|
+
version = "0.4.3"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"cfg-if",
|
|
421
|
+
"js-sys",
|
|
422
|
+
"libc",
|
|
423
|
+
"r-efi",
|
|
424
|
+
"rand_core 0.10.1",
|
|
425
|
+
"wasm-bindgen",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "h2"
|
|
430
|
+
version = "0.4.15"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"atomic-waker",
|
|
435
|
+
"bytes",
|
|
436
|
+
"fnv",
|
|
437
|
+
"futures-core",
|
|
438
|
+
"futures-sink",
|
|
439
|
+
"http",
|
|
440
|
+
"indexmap",
|
|
441
|
+
"slab",
|
|
442
|
+
"tokio",
|
|
443
|
+
"tokio-util",
|
|
444
|
+
"tracing",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "half"
|
|
449
|
+
version = "2.7.1"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"cfg-if",
|
|
454
|
+
"crunchy",
|
|
455
|
+
"zerocopy",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "hashbrown"
|
|
460
|
+
version = "0.17.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "heck"
|
|
466
|
+
version = "0.5.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "hermit-abi"
|
|
472
|
+
version = "0.5.2"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "http"
|
|
478
|
+
version = "1.4.2"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"bytes",
|
|
483
|
+
"itoa",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "http-body"
|
|
488
|
+
version = "1.1.0"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"bytes",
|
|
493
|
+
"http",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "http-body-util"
|
|
498
|
+
version = "0.1.4"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"bytes",
|
|
503
|
+
"futures-core",
|
|
504
|
+
"http",
|
|
505
|
+
"http-body",
|
|
506
|
+
"pin-project-lite",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "httparse"
|
|
511
|
+
version = "1.10.1"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "hyper"
|
|
517
|
+
version = "1.11.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"atomic-waker",
|
|
522
|
+
"bytes",
|
|
523
|
+
"futures-channel",
|
|
524
|
+
"futures-core",
|
|
525
|
+
"h2",
|
|
526
|
+
"http",
|
|
527
|
+
"http-body",
|
|
528
|
+
"httparse",
|
|
529
|
+
"itoa",
|
|
530
|
+
"pin-project-lite",
|
|
531
|
+
"smallvec",
|
|
532
|
+
"tokio",
|
|
533
|
+
"want",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "hyper-rustls"
|
|
538
|
+
version = "0.27.9"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
541
|
+
dependencies = [
|
|
542
|
+
"http",
|
|
543
|
+
"hyper",
|
|
544
|
+
"hyper-util",
|
|
545
|
+
"rustls",
|
|
546
|
+
"tokio",
|
|
547
|
+
"tokio-rustls",
|
|
548
|
+
"tower-service",
|
|
549
|
+
"webpki-roots",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "hyper-util"
|
|
554
|
+
version = "0.1.20"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"base64",
|
|
559
|
+
"bytes",
|
|
560
|
+
"futures-channel",
|
|
561
|
+
"futures-util",
|
|
562
|
+
"http",
|
|
563
|
+
"http-body",
|
|
564
|
+
"hyper",
|
|
565
|
+
"ipnet",
|
|
566
|
+
"libc",
|
|
567
|
+
"percent-encoding",
|
|
568
|
+
"pin-project-lite",
|
|
569
|
+
"socket2",
|
|
570
|
+
"tokio",
|
|
571
|
+
"tower-service",
|
|
572
|
+
"tracing",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "icu_collections"
|
|
577
|
+
version = "2.2.0"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"displaydoc",
|
|
582
|
+
"potential_utf",
|
|
583
|
+
"utf8_iter",
|
|
584
|
+
"yoke",
|
|
585
|
+
"zerofrom",
|
|
586
|
+
"zerovec",
|
|
587
|
+
]
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "icu_locale_core"
|
|
591
|
+
version = "2.2.0"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"displaydoc",
|
|
596
|
+
"litemap",
|
|
597
|
+
"tinystr",
|
|
598
|
+
"writeable",
|
|
599
|
+
"zerovec",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "icu_normalizer"
|
|
604
|
+
version = "2.2.0"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"icu_collections",
|
|
609
|
+
"icu_normalizer_data",
|
|
610
|
+
"icu_properties",
|
|
611
|
+
"icu_provider",
|
|
612
|
+
"smallvec",
|
|
613
|
+
"zerovec",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "icu_normalizer_data"
|
|
618
|
+
version = "2.2.0"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "icu_properties"
|
|
624
|
+
version = "2.2.0"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"icu_collections",
|
|
629
|
+
"icu_locale_core",
|
|
630
|
+
"icu_properties_data",
|
|
631
|
+
"icu_provider",
|
|
632
|
+
"zerotrie",
|
|
633
|
+
"zerovec",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "icu_properties_data"
|
|
638
|
+
version = "2.2.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "icu_provider"
|
|
644
|
+
version = "2.2.0"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"displaydoc",
|
|
649
|
+
"icu_locale_core",
|
|
650
|
+
"writeable",
|
|
651
|
+
"yoke",
|
|
652
|
+
"zerofrom",
|
|
653
|
+
"zerotrie",
|
|
654
|
+
"zerovec",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "idna"
|
|
659
|
+
version = "1.1.0"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"idna_adapter",
|
|
664
|
+
"smallvec",
|
|
665
|
+
"utf8_iter",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "idna_adapter"
|
|
670
|
+
version = "1.2.2"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"icu_normalizer",
|
|
675
|
+
"icu_properties",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "indexmap"
|
|
680
|
+
version = "2.14.0"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"equivalent",
|
|
685
|
+
"hashbrown",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "ipnet"
|
|
690
|
+
version = "2.12.0"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "is-terminal"
|
|
696
|
+
version = "0.4.17"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"hermit-abi",
|
|
701
|
+
"libc",
|
|
702
|
+
"windows-sys 0.61.2",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "itertools"
|
|
707
|
+
version = "0.10.5"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"either",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "itoa"
|
|
716
|
+
version = "1.0.18"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "js-sys"
|
|
722
|
+
version = "0.3.103"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"cfg-if",
|
|
727
|
+
"futures-util",
|
|
728
|
+
"wasm-bindgen",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "libc"
|
|
733
|
+
version = "0.2.189"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "litemap"
|
|
739
|
+
version = "0.8.2"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "log"
|
|
745
|
+
version = "0.4.33"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "lru-slab"
|
|
751
|
+
version = "0.1.2"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "memchr"
|
|
757
|
+
version = "2.8.3"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "mio"
|
|
763
|
+
version = "1.2.2"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"libc",
|
|
768
|
+
"wasi",
|
|
769
|
+
"windows-sys 0.61.2",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "num-traits"
|
|
774
|
+
version = "0.2.19"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"autocfg",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "once_cell"
|
|
783
|
+
version = "1.21.4"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "oorandom"
|
|
789
|
+
version = "11.1.5"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "openssl-probe"
|
|
795
|
+
version = "0.2.1"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "percent-encoding"
|
|
801
|
+
version = "2.3.2"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "pin-project-lite"
|
|
807
|
+
version = "0.2.17"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "plotters"
|
|
813
|
+
version = "0.3.7"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"num-traits",
|
|
818
|
+
"plotters-backend",
|
|
819
|
+
"plotters-svg",
|
|
820
|
+
"wasm-bindgen",
|
|
821
|
+
"web-sys",
|
|
822
|
+
]
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "plotters-backend"
|
|
826
|
+
version = "0.3.7"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "plotters-svg"
|
|
832
|
+
version = "0.3.7"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"plotters-backend",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "portable-atomic"
|
|
841
|
+
version = "1.14.0"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "potential_utf"
|
|
847
|
+
version = "0.1.5"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"zerovec",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "ppv-lite86"
|
|
856
|
+
version = "0.2.21"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"zerocopy",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "proc-macro2"
|
|
865
|
+
version = "1.0.107"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"unicode-ident",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "pyo3"
|
|
874
|
+
version = "0.29.0"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"libc",
|
|
879
|
+
"once_cell",
|
|
880
|
+
"portable-atomic",
|
|
881
|
+
"pyo3-build-config",
|
|
882
|
+
"pyo3-ffi",
|
|
883
|
+
"pyo3-macros",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "pyo3-async-runtimes"
|
|
888
|
+
version = "0.29.0"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"futures-channel",
|
|
893
|
+
"futures-util",
|
|
894
|
+
"once_cell",
|
|
895
|
+
"pin-project-lite",
|
|
896
|
+
"pyo3",
|
|
897
|
+
"tokio",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "pyo3-build-config"
|
|
902
|
+
version = "0.29.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"target-lexicon",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "pyo3-ffi"
|
|
911
|
+
version = "0.29.0"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"libc",
|
|
916
|
+
"pyo3-build-config",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "pyo3-macros"
|
|
921
|
+
version = "0.29.0"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"proc-macro2",
|
|
926
|
+
"pyo3-macros-backend",
|
|
927
|
+
"quote",
|
|
928
|
+
"syn 2.0.119",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "pyo3-macros-backend"
|
|
933
|
+
version = "0.29.0"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"heck",
|
|
938
|
+
"proc-macro2",
|
|
939
|
+
"quote",
|
|
940
|
+
"syn 2.0.119",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "pythonize"
|
|
945
|
+
version = "0.29.0"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "6ec376e1216e0c929a74964ce2020012a1a39f32d80e78aa688721219ea7fb89"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"pyo3",
|
|
950
|
+
"serde",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "quinn"
|
|
955
|
+
version = "0.11.11"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"bytes",
|
|
960
|
+
"cfg_aliases",
|
|
961
|
+
"pin-project-lite",
|
|
962
|
+
"quinn-proto",
|
|
963
|
+
"quinn-udp",
|
|
964
|
+
"rustc-hash",
|
|
965
|
+
"rustls",
|
|
966
|
+
"socket2",
|
|
967
|
+
"thiserror 2.0.19",
|
|
968
|
+
"tokio",
|
|
969
|
+
"tracing",
|
|
970
|
+
"web-time",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "quinn-proto"
|
|
975
|
+
version = "0.11.16"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"bytes",
|
|
980
|
+
"getrandom 0.4.3",
|
|
981
|
+
"lru-slab",
|
|
982
|
+
"rand 0.10.2",
|
|
983
|
+
"rand_pcg",
|
|
984
|
+
"ring",
|
|
985
|
+
"rustc-hash",
|
|
986
|
+
"rustls",
|
|
987
|
+
"rustls-pki-types",
|
|
988
|
+
"slab",
|
|
989
|
+
"thiserror 2.0.19",
|
|
990
|
+
"tinyvec",
|
|
991
|
+
"tracing",
|
|
992
|
+
"web-time",
|
|
993
|
+
]
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "quinn-udp"
|
|
997
|
+
version = "0.5.15"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"cfg_aliases",
|
|
1002
|
+
"libc",
|
|
1003
|
+
"once_cell",
|
|
1004
|
+
"socket2",
|
|
1005
|
+
"tracing",
|
|
1006
|
+
"windows-sys 0.61.2",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "quote"
|
|
1011
|
+
version = "1.0.47"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"proc-macro2",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "r-efi"
|
|
1020
|
+
version = "6.0.0"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "rand"
|
|
1026
|
+
version = "0.8.7"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"libc",
|
|
1031
|
+
"rand_chacha",
|
|
1032
|
+
"rand_core 0.6.4",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "rand"
|
|
1037
|
+
version = "0.10.2"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"chacha20",
|
|
1042
|
+
"getrandom 0.4.3",
|
|
1043
|
+
"rand_core 0.10.1",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "rand_chacha"
|
|
1048
|
+
version = "0.3.1"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"ppv-lite86",
|
|
1053
|
+
"rand_core 0.6.4",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "rand_core"
|
|
1058
|
+
version = "0.6.4"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"getrandom 0.2.17",
|
|
1063
|
+
]
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "rand_core"
|
|
1067
|
+
version = "0.10.1"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "rand_pcg"
|
|
1073
|
+
version = "0.10.2"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
1076
|
+
dependencies = [
|
|
1077
|
+
"rand_core 0.10.1",
|
|
1078
|
+
]
|
|
1079
|
+
|
|
1080
|
+
[[package]]
|
|
1081
|
+
name = "rayon"
|
|
1082
|
+
version = "1.12.0"
|
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1085
|
+
dependencies = [
|
|
1086
|
+
"either",
|
|
1087
|
+
"rayon-core",
|
|
1088
|
+
]
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "rayon-core"
|
|
1092
|
+
version = "1.13.0"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"crossbeam-deque",
|
|
1097
|
+
"crossbeam-utils",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "regex"
|
|
1102
|
+
version = "1.13.1"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"aho-corasick",
|
|
1107
|
+
"memchr",
|
|
1108
|
+
"regex-automata",
|
|
1109
|
+
"regex-syntax",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "regex-automata"
|
|
1114
|
+
version = "0.4.16"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"aho-corasick",
|
|
1119
|
+
"memchr",
|
|
1120
|
+
"regex-syntax",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "regex-syntax"
|
|
1125
|
+
version = "0.8.11"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "reqwest"
|
|
1131
|
+
version = "0.12.28"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"base64",
|
|
1136
|
+
"bytes",
|
|
1137
|
+
"futures-core",
|
|
1138
|
+
"h2",
|
|
1139
|
+
"http",
|
|
1140
|
+
"http-body",
|
|
1141
|
+
"http-body-util",
|
|
1142
|
+
"hyper",
|
|
1143
|
+
"hyper-rustls",
|
|
1144
|
+
"hyper-util",
|
|
1145
|
+
"js-sys",
|
|
1146
|
+
"log",
|
|
1147
|
+
"percent-encoding",
|
|
1148
|
+
"pin-project-lite",
|
|
1149
|
+
"quinn",
|
|
1150
|
+
"rustls",
|
|
1151
|
+
"rustls-pki-types",
|
|
1152
|
+
"serde",
|
|
1153
|
+
"serde_json",
|
|
1154
|
+
"serde_urlencoded",
|
|
1155
|
+
"sync_wrapper",
|
|
1156
|
+
"tokio",
|
|
1157
|
+
"tokio-rustls",
|
|
1158
|
+
"tower",
|
|
1159
|
+
"tower-http",
|
|
1160
|
+
"tower-service",
|
|
1161
|
+
"url",
|
|
1162
|
+
"wasm-bindgen",
|
|
1163
|
+
"wasm-bindgen-futures",
|
|
1164
|
+
"web-sys",
|
|
1165
|
+
"webpki-roots",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "ring"
|
|
1170
|
+
version = "0.17.14"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"cc",
|
|
1175
|
+
"cfg-if",
|
|
1176
|
+
"getrandom 0.2.17",
|
|
1177
|
+
"libc",
|
|
1178
|
+
"untrusted",
|
|
1179
|
+
"windows-sys 0.52.0",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "rustc-hash"
|
|
1184
|
+
version = "2.1.3"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "rustls"
|
|
1190
|
+
version = "0.23.42"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"once_cell",
|
|
1195
|
+
"ring",
|
|
1196
|
+
"rustls-pki-types",
|
|
1197
|
+
"rustls-webpki",
|
|
1198
|
+
"subtle",
|
|
1199
|
+
"zeroize",
|
|
1200
|
+
]
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "rustls-native-certs"
|
|
1204
|
+
version = "0.8.4"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"openssl-probe",
|
|
1209
|
+
"rustls-pki-types",
|
|
1210
|
+
"schannel",
|
|
1211
|
+
"security-framework",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "rustls-pki-types"
|
|
1216
|
+
version = "1.15.1"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"web-time",
|
|
1221
|
+
"zeroize",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "rustls-webpki"
|
|
1226
|
+
version = "0.103.13"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"ring",
|
|
1231
|
+
"rustls-pki-types",
|
|
1232
|
+
"untrusted",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "rustversion"
|
|
1237
|
+
version = "1.0.23"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "ryu"
|
|
1243
|
+
version = "1.0.23"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "same-file"
|
|
1249
|
+
version = "1.0.6"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"winapi-util",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "schannel"
|
|
1258
|
+
version = "0.1.29"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"windows-sys 0.61.2",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "security-framework"
|
|
1267
|
+
version = "3.7.0"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"bitflags",
|
|
1272
|
+
"core-foundation",
|
|
1273
|
+
"core-foundation-sys",
|
|
1274
|
+
"libc",
|
|
1275
|
+
"security-framework-sys",
|
|
1276
|
+
]
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "security-framework-sys"
|
|
1280
|
+
version = "2.17.0"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1283
|
+
dependencies = [
|
|
1284
|
+
"core-foundation-sys",
|
|
1285
|
+
"libc",
|
|
1286
|
+
]
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "serde"
|
|
1290
|
+
version = "1.0.229"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1293
|
+
dependencies = [
|
|
1294
|
+
"serde_core",
|
|
1295
|
+
"serde_derive",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "serde_core"
|
|
1300
|
+
version = "1.0.229"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"serde_derive",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "serde_derive"
|
|
1309
|
+
version = "1.0.229"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1312
|
+
dependencies = [
|
|
1313
|
+
"proc-macro2",
|
|
1314
|
+
"quote",
|
|
1315
|
+
"syn 3.0.3",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "serde_json"
|
|
1320
|
+
version = "1.0.151"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"itoa",
|
|
1325
|
+
"memchr",
|
|
1326
|
+
"serde",
|
|
1327
|
+
"serde_core",
|
|
1328
|
+
"zmij",
|
|
1329
|
+
]
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "serde_urlencoded"
|
|
1333
|
+
version = "0.7.1"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"form_urlencoded",
|
|
1338
|
+
"itoa",
|
|
1339
|
+
"ryu",
|
|
1340
|
+
"serde",
|
|
1341
|
+
]
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "sha1"
|
|
1345
|
+
version = "0.10.7"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
1348
|
+
dependencies = [
|
|
1349
|
+
"cfg-if",
|
|
1350
|
+
"cpufeatures 0.2.17",
|
|
1351
|
+
"digest",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "shlex"
|
|
1356
|
+
version = "2.0.1"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "slab"
|
|
1362
|
+
version = "0.4.12"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "smallvec"
|
|
1368
|
+
version = "1.15.2"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "socket2"
|
|
1374
|
+
version = "0.6.5"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"libc",
|
|
1379
|
+
"windows-sys 0.61.2",
|
|
1380
|
+
]
|
|
1381
|
+
|
|
1382
|
+
[[package]]
|
|
1383
|
+
name = "stable_deref_trait"
|
|
1384
|
+
version = "1.2.1"
|
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "subtle"
|
|
1390
|
+
version = "2.6.1"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "syn"
|
|
1396
|
+
version = "2.0.119"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1399
|
+
dependencies = [
|
|
1400
|
+
"proc-macro2",
|
|
1401
|
+
"quote",
|
|
1402
|
+
"unicode-ident",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "syn"
|
|
1407
|
+
version = "3.0.3"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"proc-macro2",
|
|
1412
|
+
"quote",
|
|
1413
|
+
"unicode-ident",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "sync_wrapper"
|
|
1418
|
+
version = "1.0.2"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"futures-core",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "synstructure"
|
|
1427
|
+
version = "0.13.2"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"proc-macro2",
|
|
1432
|
+
"quote",
|
|
1433
|
+
"syn 2.0.119",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "target-lexicon"
|
|
1438
|
+
version = "0.13.5"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "thiserror"
|
|
1444
|
+
version = "1.0.69"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"thiserror-impl 1.0.69",
|
|
1449
|
+
]
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "thiserror"
|
|
1453
|
+
version = "2.0.19"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"thiserror-impl 2.0.19",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "thiserror-impl"
|
|
1462
|
+
version = "1.0.69"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1465
|
+
dependencies = [
|
|
1466
|
+
"proc-macro2",
|
|
1467
|
+
"quote",
|
|
1468
|
+
"syn 2.0.119",
|
|
1469
|
+
]
|
|
1470
|
+
|
|
1471
|
+
[[package]]
|
|
1472
|
+
name = "thiserror-impl"
|
|
1473
|
+
version = "2.0.19"
|
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
1476
|
+
dependencies = [
|
|
1477
|
+
"proc-macro2",
|
|
1478
|
+
"quote",
|
|
1479
|
+
"syn 3.0.3",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "tinystr"
|
|
1484
|
+
version = "0.8.3"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1487
|
+
dependencies = [
|
|
1488
|
+
"displaydoc",
|
|
1489
|
+
"zerovec",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "tinytemplate"
|
|
1494
|
+
version = "1.2.1"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"serde",
|
|
1499
|
+
"serde_json",
|
|
1500
|
+
]
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "tinyvec"
|
|
1504
|
+
version = "1.12.0"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
1507
|
+
dependencies = [
|
|
1508
|
+
"tinyvec_macros",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "tinyvec_macros"
|
|
1513
|
+
version = "0.1.1"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "tokio"
|
|
1519
|
+
version = "1.53.1"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"bytes",
|
|
1524
|
+
"libc",
|
|
1525
|
+
"mio",
|
|
1526
|
+
"pin-project-lite",
|
|
1527
|
+
"socket2",
|
|
1528
|
+
"tokio-macros",
|
|
1529
|
+
"windows-sys 0.61.2",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "tokio-macros"
|
|
1534
|
+
version = "2.7.1"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"proc-macro2",
|
|
1539
|
+
"quote",
|
|
1540
|
+
"syn 2.0.119",
|
|
1541
|
+
]
|
|
1542
|
+
|
|
1543
|
+
[[package]]
|
|
1544
|
+
name = "tokio-rustls"
|
|
1545
|
+
version = "0.26.4"
|
|
1546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1548
|
+
dependencies = [
|
|
1549
|
+
"rustls",
|
|
1550
|
+
"tokio",
|
|
1551
|
+
]
|
|
1552
|
+
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "tokio-tungstenite"
|
|
1555
|
+
version = "0.24.0"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"futures-util",
|
|
1560
|
+
"log",
|
|
1561
|
+
"rustls",
|
|
1562
|
+
"rustls-native-certs",
|
|
1563
|
+
"rustls-pki-types",
|
|
1564
|
+
"tokio",
|
|
1565
|
+
"tokio-rustls",
|
|
1566
|
+
"tungstenite",
|
|
1567
|
+
]
|
|
1568
|
+
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "tokio-util"
|
|
1571
|
+
version = "0.7.19"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
1574
|
+
dependencies = [
|
|
1575
|
+
"bytes",
|
|
1576
|
+
"futures-core",
|
|
1577
|
+
"futures-sink",
|
|
1578
|
+
"libc",
|
|
1579
|
+
"pin-project-lite",
|
|
1580
|
+
"tokio",
|
|
1581
|
+
]
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "tower"
|
|
1585
|
+
version = "0.5.3"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"futures-core",
|
|
1590
|
+
"futures-util",
|
|
1591
|
+
"pin-project-lite",
|
|
1592
|
+
"sync_wrapper",
|
|
1593
|
+
"tokio",
|
|
1594
|
+
"tower-layer",
|
|
1595
|
+
"tower-service",
|
|
1596
|
+
]
|
|
1597
|
+
|
|
1598
|
+
[[package]]
|
|
1599
|
+
name = "tower-http"
|
|
1600
|
+
version = "0.6.11"
|
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
1603
|
+
dependencies = [
|
|
1604
|
+
"bitflags",
|
|
1605
|
+
"bytes",
|
|
1606
|
+
"futures-util",
|
|
1607
|
+
"http",
|
|
1608
|
+
"http-body",
|
|
1609
|
+
"pin-project-lite",
|
|
1610
|
+
"tower",
|
|
1611
|
+
"tower-layer",
|
|
1612
|
+
"tower-service",
|
|
1613
|
+
"url",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "tower-layer"
|
|
1618
|
+
version = "0.3.3"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "tower-service"
|
|
1624
|
+
version = "0.3.3"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "tracing"
|
|
1630
|
+
version = "0.1.44"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"pin-project-lite",
|
|
1635
|
+
"tracing-attributes",
|
|
1636
|
+
"tracing-core",
|
|
1637
|
+
]
|
|
1638
|
+
|
|
1639
|
+
[[package]]
|
|
1640
|
+
name = "tracing-attributes"
|
|
1641
|
+
version = "0.1.31"
|
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1644
|
+
dependencies = [
|
|
1645
|
+
"proc-macro2",
|
|
1646
|
+
"quote",
|
|
1647
|
+
"syn 2.0.119",
|
|
1648
|
+
]
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "tracing-core"
|
|
1652
|
+
version = "0.1.36"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"once_cell",
|
|
1657
|
+
]
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "try-lock"
|
|
1661
|
+
version = "0.2.5"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "tungstenite"
|
|
1667
|
+
version = "0.24.0"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"byteorder",
|
|
1672
|
+
"bytes",
|
|
1673
|
+
"data-encoding",
|
|
1674
|
+
"http",
|
|
1675
|
+
"httparse",
|
|
1676
|
+
"log",
|
|
1677
|
+
"rand 0.8.7",
|
|
1678
|
+
"rustls",
|
|
1679
|
+
"rustls-pki-types",
|
|
1680
|
+
"sha1",
|
|
1681
|
+
"thiserror 1.0.69",
|
|
1682
|
+
"utf-8",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "typenum"
|
|
1687
|
+
version = "1.20.1"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "unicode-ident"
|
|
1693
|
+
version = "1.0.24"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "untrusted"
|
|
1699
|
+
version = "0.9.0"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "url"
|
|
1705
|
+
version = "2.5.8"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"form_urlencoded",
|
|
1710
|
+
"idna",
|
|
1711
|
+
"percent-encoding",
|
|
1712
|
+
"serde",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "utf-8"
|
|
1717
|
+
version = "0.7.6"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "utf8_iter"
|
|
1723
|
+
version = "1.0.4"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "version_check"
|
|
1729
|
+
version = "0.9.5"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "walkdir"
|
|
1735
|
+
version = "2.5.0"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"same-file",
|
|
1740
|
+
"winapi-util",
|
|
1741
|
+
]
|
|
1742
|
+
|
|
1743
|
+
[[package]]
|
|
1744
|
+
name = "want"
|
|
1745
|
+
version = "0.3.1"
|
|
1746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1747
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1748
|
+
dependencies = [
|
|
1749
|
+
"try-lock",
|
|
1750
|
+
]
|
|
1751
|
+
|
|
1752
|
+
[[package]]
|
|
1753
|
+
name = "wasi"
|
|
1754
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1757
|
+
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "wasm-bindgen"
|
|
1760
|
+
version = "0.2.126"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
1763
|
+
dependencies = [
|
|
1764
|
+
"cfg-if",
|
|
1765
|
+
"once_cell",
|
|
1766
|
+
"rustversion",
|
|
1767
|
+
"wasm-bindgen-macro",
|
|
1768
|
+
"wasm-bindgen-shared",
|
|
1769
|
+
]
|
|
1770
|
+
|
|
1771
|
+
[[package]]
|
|
1772
|
+
name = "wasm-bindgen-futures"
|
|
1773
|
+
version = "0.4.76"
|
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
1776
|
+
dependencies = [
|
|
1777
|
+
"js-sys",
|
|
1778
|
+
"wasm-bindgen",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "wasm-bindgen-macro"
|
|
1783
|
+
version = "0.2.126"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"quote",
|
|
1788
|
+
"wasm-bindgen-macro-support",
|
|
1789
|
+
]
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "wasm-bindgen-macro-support"
|
|
1793
|
+
version = "0.2.126"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
1796
|
+
dependencies = [
|
|
1797
|
+
"bumpalo",
|
|
1798
|
+
"proc-macro2",
|
|
1799
|
+
"quote",
|
|
1800
|
+
"syn 2.0.119",
|
|
1801
|
+
"wasm-bindgen-shared",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "wasm-bindgen-shared"
|
|
1806
|
+
version = "0.2.126"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"unicode-ident",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "wavecord-core"
|
|
1815
|
+
version = "1.1.0"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"criterion",
|
|
1818
|
+
"futures-util",
|
|
1819
|
+
"percent-encoding",
|
|
1820
|
+
"reqwest",
|
|
1821
|
+
"serde",
|
|
1822
|
+
"serde_json",
|
|
1823
|
+
"thiserror 2.0.19",
|
|
1824
|
+
"tokio",
|
|
1825
|
+
"tokio-tungstenite",
|
|
1826
|
+
"tracing",
|
|
1827
|
+
]
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "wavecord-py"
|
|
1831
|
+
version = "1.1.0"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"pyo3",
|
|
1834
|
+
"pyo3-async-runtimes",
|
|
1835
|
+
"pythonize",
|
|
1836
|
+
"serde",
|
|
1837
|
+
"serde_json",
|
|
1838
|
+
"tokio",
|
|
1839
|
+
"wavecord-core",
|
|
1840
|
+
]
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "web-sys"
|
|
1844
|
+
version = "0.3.103"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
1847
|
+
dependencies = [
|
|
1848
|
+
"js-sys",
|
|
1849
|
+
"wasm-bindgen",
|
|
1850
|
+
]
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "web-time"
|
|
1854
|
+
version = "1.1.0"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"js-sys",
|
|
1859
|
+
"wasm-bindgen",
|
|
1860
|
+
]
|
|
1861
|
+
|
|
1862
|
+
[[package]]
|
|
1863
|
+
name = "webpki-roots"
|
|
1864
|
+
version = "1.0.9"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
1867
|
+
dependencies = [
|
|
1868
|
+
"rustls-pki-types",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "winapi-util"
|
|
1873
|
+
version = "0.1.11"
|
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1876
|
+
dependencies = [
|
|
1877
|
+
"windows-sys 0.61.2",
|
|
1878
|
+
]
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "windows-link"
|
|
1882
|
+
version = "0.2.1"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "windows-sys"
|
|
1888
|
+
version = "0.52.0"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"windows-targets",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "windows-sys"
|
|
1897
|
+
version = "0.61.2"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"windows-link",
|
|
1902
|
+
]
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "windows-targets"
|
|
1906
|
+
version = "0.52.6"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"windows_aarch64_gnullvm",
|
|
1911
|
+
"windows_aarch64_msvc",
|
|
1912
|
+
"windows_i686_gnu",
|
|
1913
|
+
"windows_i686_gnullvm",
|
|
1914
|
+
"windows_i686_msvc",
|
|
1915
|
+
"windows_x86_64_gnu",
|
|
1916
|
+
"windows_x86_64_gnullvm",
|
|
1917
|
+
"windows_x86_64_msvc",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "windows_aarch64_gnullvm"
|
|
1922
|
+
version = "0.52.6"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "windows_aarch64_msvc"
|
|
1928
|
+
version = "0.52.6"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1931
|
+
|
|
1932
|
+
[[package]]
|
|
1933
|
+
name = "windows_i686_gnu"
|
|
1934
|
+
version = "0.52.6"
|
|
1935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1936
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "windows_i686_gnullvm"
|
|
1940
|
+
version = "0.52.6"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "windows_i686_msvc"
|
|
1946
|
+
version = "0.52.6"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1949
|
+
|
|
1950
|
+
[[package]]
|
|
1951
|
+
name = "windows_x86_64_gnu"
|
|
1952
|
+
version = "0.52.6"
|
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "windows_x86_64_gnullvm"
|
|
1958
|
+
version = "0.52.6"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1961
|
+
|
|
1962
|
+
[[package]]
|
|
1963
|
+
name = "windows_x86_64_msvc"
|
|
1964
|
+
version = "0.52.6"
|
|
1965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1966
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "writeable"
|
|
1970
|
+
version = "0.6.3"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "yoke"
|
|
1976
|
+
version = "0.8.3"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
1979
|
+
dependencies = [
|
|
1980
|
+
"stable_deref_trait",
|
|
1981
|
+
"yoke-derive",
|
|
1982
|
+
"zerofrom",
|
|
1983
|
+
]
|
|
1984
|
+
|
|
1985
|
+
[[package]]
|
|
1986
|
+
name = "yoke-derive"
|
|
1987
|
+
version = "0.8.2"
|
|
1988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1990
|
+
dependencies = [
|
|
1991
|
+
"proc-macro2",
|
|
1992
|
+
"quote",
|
|
1993
|
+
"syn 2.0.119",
|
|
1994
|
+
"synstructure",
|
|
1995
|
+
]
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "zerocopy"
|
|
1999
|
+
version = "0.8.55"
|
|
2000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
+
checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
|
|
2002
|
+
dependencies = [
|
|
2003
|
+
"zerocopy-derive",
|
|
2004
|
+
]
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "zerocopy-derive"
|
|
2008
|
+
version = "0.8.55"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
|
|
2011
|
+
dependencies = [
|
|
2012
|
+
"proc-macro2",
|
|
2013
|
+
"quote",
|
|
2014
|
+
"syn 2.0.119",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "zerofrom"
|
|
2019
|
+
version = "0.1.8"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2022
|
+
dependencies = [
|
|
2023
|
+
"zerofrom-derive",
|
|
2024
|
+
]
|
|
2025
|
+
|
|
2026
|
+
[[package]]
|
|
2027
|
+
name = "zerofrom-derive"
|
|
2028
|
+
version = "0.1.7"
|
|
2029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2031
|
+
dependencies = [
|
|
2032
|
+
"proc-macro2",
|
|
2033
|
+
"quote",
|
|
2034
|
+
"syn 2.0.119",
|
|
2035
|
+
"synstructure",
|
|
2036
|
+
]
|
|
2037
|
+
|
|
2038
|
+
[[package]]
|
|
2039
|
+
name = "zeroize"
|
|
2040
|
+
version = "1.9.0"
|
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
2043
|
+
|
|
2044
|
+
[[package]]
|
|
2045
|
+
name = "zerotrie"
|
|
2046
|
+
version = "0.2.4"
|
|
2047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2048
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2049
|
+
dependencies = [
|
|
2050
|
+
"displaydoc",
|
|
2051
|
+
"yoke",
|
|
2052
|
+
"zerofrom",
|
|
2053
|
+
]
|
|
2054
|
+
|
|
2055
|
+
[[package]]
|
|
2056
|
+
name = "zerovec"
|
|
2057
|
+
version = "0.11.6"
|
|
2058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2060
|
+
dependencies = [
|
|
2061
|
+
"yoke",
|
|
2062
|
+
"zerofrom",
|
|
2063
|
+
"zerovec-derive",
|
|
2064
|
+
]
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "zerovec-derive"
|
|
2068
|
+
version = "0.11.3"
|
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2071
|
+
dependencies = [
|
|
2072
|
+
"proc-macro2",
|
|
2073
|
+
"quote",
|
|
2074
|
+
"syn 2.0.119",
|
|
2075
|
+
]
|
|
2076
|
+
|
|
2077
|
+
[[package]]
|
|
2078
|
+
name = "zmij"
|
|
2079
|
+
version = "1.0.23"
|
|
2080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|