taskito 0.2.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.
- taskito-0.2.0/Cargo.lock +1382 -0
- taskito-0.2.0/Cargo.toml +18 -0
- taskito-0.2.0/LICENSE +21 -0
- taskito-0.2.0/PKG-INFO +20 -0
- taskito-0.2.0/crates/taskito-core/Cargo.toml +21 -0
- taskito-0.2.0/crates/taskito-core/src/error.rs +42 -0
- taskito-0.2.0/crates/taskito-core/src/job.rs +147 -0
- taskito-0.2.0/crates/taskito-core/src/lib.rs +13 -0
- taskito-0.2.0/crates/taskito-core/src/periodic.rs +44 -0
- taskito-0.2.0/crates/taskito-core/src/resilience/circuit_breaker.rs +200 -0
- taskito-0.2.0/crates/taskito-core/src/resilience/dlq.rs +34 -0
- taskito-0.2.0/crates/taskito-core/src/resilience/mod.rs +4 -0
- taskito-0.2.0/crates/taskito-core/src/resilience/rate_limiter.rs +141 -0
- taskito-0.2.0/crates/taskito-core/src/resilience/retry.rs +103 -0
- taskito-0.2.0/crates/taskito-core/src/scheduler.rs +728 -0
- taskito-0.2.0/crates/taskito-core/src/storage/mod.rs +6 -0
- taskito-0.2.0/crates/taskito-core/src/storage/models.rs +281 -0
- taskito-0.2.0/crates/taskito-core/src/storage/schema.rs +143 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/circuit_breakers.rs +37 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/dead_letter.rs +116 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/jobs.rs +666 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/logs.rs +89 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/metrics.rs +115 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/mod.rs +336 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/periodic.rs +51 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/rate_limits.rs +84 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/tests.rs +359 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/trait_impl.rs +68 -0
- taskito-0.2.0/crates/taskito-core/src/storage/sqlite/workers.rs +77 -0
- taskito-0.2.0/crates/taskito-core/src/storage/traits.rs +119 -0
- taskito-0.2.0/crates/taskito-python/Cargo.toml +15 -0
- taskito-0.2.0/crates/taskito-python/src/lib.rs +18 -0
- taskito-0.2.0/crates/taskito-python/src/py_config.rs +58 -0
- taskito-0.2.0/crates/taskito-python/src/py_job.rs +91 -0
- taskito-0.2.0/crates/taskito-python/src/py_queue.rs +769 -0
- taskito-0.2.0/crates/taskito-python/src/py_worker.rs +277 -0
- taskito-0.2.0/py_src/taskito/__init__.py +53 -0
- taskito-0.2.0/py_src/taskito/_taskito.pyi +157 -0
- taskito-0.2.0/py_src/taskito/app.py +646 -0
- taskito-0.2.0/py_src/taskito/canvas.py +199 -0
- taskito-0.2.0/py_src/taskito/cli.py +171 -0
- taskito-0.2.0/py_src/taskito/context.py +178 -0
- taskito-0.2.0/py_src/taskito/contrib/__init__.py +1 -0
- taskito-0.2.0/py_src/taskito/contrib/fastapi.py +275 -0
- taskito-0.2.0/py_src/taskito/contrib/otel.py +86 -0
- taskito-0.2.0/py_src/taskito/dashboard.py +176 -0
- taskito-0.2.0/py_src/taskito/exceptions.py +41 -0
- taskito-0.2.0/py_src/taskito/middleware.py +35 -0
- taskito-0.2.0/py_src/taskito/mixins.py +172 -0
- taskito-0.2.0/py_src/taskito/py.typed +0 -0
- taskito-0.2.0/py_src/taskito/result.py +211 -0
- taskito-0.2.0/py_src/taskito/serializers.py +43 -0
- taskito-0.2.0/py_src/taskito/task.py +133 -0
- taskito-0.2.0/py_src/taskito/templates/dashboard.html +820 -0
- taskito-0.2.0/py_src/taskito/testing.py +201 -0
- taskito-0.2.0/pyproject.toml +96 -0
taskito-0.2.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1382 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "android_system_properties"
|
|
7
|
+
version = "0.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"libc",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anyhow"
|
|
16
|
+
version = "1.0.102"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "autocfg"
|
|
22
|
+
version = "1.5.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "bitflags"
|
|
28
|
+
version = "2.11.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bumpalo"
|
|
34
|
+
version = "3.20.2"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bytes"
|
|
40
|
+
version = "1.11.1"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "cc"
|
|
46
|
+
version = "1.2.56"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"find-msvc-tools",
|
|
51
|
+
"shlex",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "cfg-if"
|
|
56
|
+
version = "1.0.4"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "chrono"
|
|
62
|
+
version = "0.4.44"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"iana-time-zone",
|
|
67
|
+
"js-sys",
|
|
68
|
+
"num-traits",
|
|
69
|
+
"wasm-bindgen",
|
|
70
|
+
"windows-link",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "core-foundation-sys"
|
|
75
|
+
version = "0.8.7"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "cron"
|
|
81
|
+
version = "0.13.0"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "eee8b2b4516038bc0f1d3c9934bcb4a13dd316e04abbc63c96757a6d75978532"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"chrono",
|
|
86
|
+
"nom",
|
|
87
|
+
"once_cell",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "crossbeam-channel"
|
|
92
|
+
version = "0.5.15"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
95
|
+
dependencies = [
|
|
96
|
+
"crossbeam-utils",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "crossbeam-utils"
|
|
101
|
+
version = "0.8.21"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "darling"
|
|
107
|
+
version = "0.21.3"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"darling_core",
|
|
112
|
+
"darling_macro",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "darling_core"
|
|
117
|
+
version = "0.21.3"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"fnv",
|
|
122
|
+
"ident_case",
|
|
123
|
+
"proc-macro2",
|
|
124
|
+
"quote",
|
|
125
|
+
"strsim",
|
|
126
|
+
"syn",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "darling_macro"
|
|
131
|
+
version = "0.21.3"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"darling_core",
|
|
136
|
+
"quote",
|
|
137
|
+
"syn",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "deranged"
|
|
142
|
+
version = "0.5.8"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"powerfmt",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "diesel"
|
|
151
|
+
version = "2.3.6"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "d9b6c2fc184a6fb6ebcf5f9a5e3bbfa84d8fd268cdfcce4ed508979a6259494d"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"diesel_derives",
|
|
156
|
+
"downcast-rs",
|
|
157
|
+
"libsqlite3-sys",
|
|
158
|
+
"r2d2",
|
|
159
|
+
"sqlite-wasm-rs",
|
|
160
|
+
"time",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "diesel_derives"
|
|
165
|
+
version = "2.3.7"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "47618bf0fac06bb670c036e48404c26a865e6a71af4114dfd97dfe89936e404e"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"diesel_table_macro_syntax",
|
|
170
|
+
"dsl_auto_type",
|
|
171
|
+
"proc-macro2",
|
|
172
|
+
"quote",
|
|
173
|
+
"syn",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "diesel_table_macro_syntax"
|
|
178
|
+
version = "0.3.0"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "fe2444076b48641147115697648dc743c2c00b61adade0f01ce67133c7babe8c"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"syn",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "downcast-rs"
|
|
187
|
+
version = "2.0.2"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "dsl_auto_type"
|
|
193
|
+
version = "0.2.0"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "dd122633e4bef06db27737f21d3738fb89c8f6d5360d6d9d7635dda142a7757e"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"darling",
|
|
198
|
+
"either",
|
|
199
|
+
"heck",
|
|
200
|
+
"proc-macro2",
|
|
201
|
+
"quote",
|
|
202
|
+
"syn",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "either"
|
|
207
|
+
version = "1.15.0"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "equivalent"
|
|
213
|
+
version = "1.0.2"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "errno"
|
|
219
|
+
version = "0.3.14"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"libc",
|
|
224
|
+
"windows-sys 0.61.2",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "fastrand"
|
|
229
|
+
version = "2.3.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "find-msvc-tools"
|
|
235
|
+
version = "0.1.9"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "fnv"
|
|
241
|
+
version = "1.0.7"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "foldhash"
|
|
247
|
+
version = "0.1.5"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "foldhash"
|
|
253
|
+
version = "0.2.0"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "getrandom"
|
|
259
|
+
version = "0.2.17"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"cfg-if",
|
|
264
|
+
"libc",
|
|
265
|
+
"wasi",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "getrandom"
|
|
270
|
+
version = "0.4.2"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"cfg-if",
|
|
275
|
+
"libc",
|
|
276
|
+
"r-efi",
|
|
277
|
+
"wasip2",
|
|
278
|
+
"wasip3",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "hashbrown"
|
|
283
|
+
version = "0.15.5"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"foldhash 0.1.5",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "hashbrown"
|
|
292
|
+
version = "0.16.1"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"foldhash 0.2.0",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "heck"
|
|
301
|
+
version = "0.5.0"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "iana-time-zone"
|
|
307
|
+
version = "0.1.65"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
310
|
+
dependencies = [
|
|
311
|
+
"android_system_properties",
|
|
312
|
+
"core-foundation-sys",
|
|
313
|
+
"iana-time-zone-haiku",
|
|
314
|
+
"js-sys",
|
|
315
|
+
"log",
|
|
316
|
+
"wasm-bindgen",
|
|
317
|
+
"windows-core",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "iana-time-zone-haiku"
|
|
322
|
+
version = "0.1.2"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"cc",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "id-arena"
|
|
331
|
+
version = "2.3.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "ident_case"
|
|
337
|
+
version = "1.0.1"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "indexmap"
|
|
343
|
+
version = "2.13.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"equivalent",
|
|
348
|
+
"hashbrown 0.16.1",
|
|
349
|
+
"serde",
|
|
350
|
+
"serde_core",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "indoc"
|
|
355
|
+
version = "2.0.7"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"rustversion",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "itoa"
|
|
364
|
+
version = "1.0.17"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "js-sys"
|
|
370
|
+
version = "0.3.91"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"once_cell",
|
|
375
|
+
"wasm-bindgen",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "leb128fmt"
|
|
380
|
+
version = "0.1.0"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "libc"
|
|
386
|
+
version = "0.2.182"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "libsqlite3-sys"
|
|
392
|
+
version = "0.30.1"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"cc",
|
|
397
|
+
"pkg-config",
|
|
398
|
+
"vcpkg",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "linux-raw-sys"
|
|
403
|
+
version = "0.12.1"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "lock_api"
|
|
409
|
+
version = "0.4.14"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"scopeguard",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "log"
|
|
418
|
+
version = "0.4.29"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "memchr"
|
|
424
|
+
version = "2.8.0"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "memoffset"
|
|
430
|
+
version = "0.9.1"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"autocfg",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "minimal-lexical"
|
|
439
|
+
version = "0.2.1"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "mio"
|
|
445
|
+
version = "1.1.1"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"libc",
|
|
450
|
+
"wasi",
|
|
451
|
+
"windows-sys 0.61.2",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "nom"
|
|
456
|
+
version = "7.1.3"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"memchr",
|
|
461
|
+
"minimal-lexical",
|
|
462
|
+
]
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "num-conv"
|
|
466
|
+
version = "0.2.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "num-traits"
|
|
472
|
+
version = "0.2.19"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"autocfg",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "once_cell"
|
|
481
|
+
version = "1.21.3"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "parking_lot"
|
|
487
|
+
version = "0.12.5"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
490
|
+
dependencies = [
|
|
491
|
+
"lock_api",
|
|
492
|
+
"parking_lot_core",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "parking_lot_core"
|
|
497
|
+
version = "0.9.12"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
500
|
+
dependencies = [
|
|
501
|
+
"cfg-if",
|
|
502
|
+
"libc",
|
|
503
|
+
"redox_syscall",
|
|
504
|
+
"smallvec",
|
|
505
|
+
"windows-link",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "pin-project-lite"
|
|
510
|
+
version = "0.2.17"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "pkg-config"
|
|
516
|
+
version = "0.3.32"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "portable-atomic"
|
|
522
|
+
version = "1.13.1"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "powerfmt"
|
|
528
|
+
version = "0.2.0"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "ppv-lite86"
|
|
534
|
+
version = "0.2.21"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"zerocopy",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "prettyplease"
|
|
543
|
+
version = "0.2.37"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"proc-macro2",
|
|
548
|
+
"syn",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "proc-macro2"
|
|
553
|
+
version = "1.0.106"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"unicode-ident",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "pyo3"
|
|
562
|
+
version = "0.22.6"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"cfg-if",
|
|
567
|
+
"indoc",
|
|
568
|
+
"libc",
|
|
569
|
+
"memoffset",
|
|
570
|
+
"once_cell",
|
|
571
|
+
"portable-atomic",
|
|
572
|
+
"pyo3-build-config",
|
|
573
|
+
"pyo3-ffi",
|
|
574
|
+
"pyo3-macros",
|
|
575
|
+
"unindent",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "pyo3-build-config"
|
|
580
|
+
version = "0.22.6"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"once_cell",
|
|
585
|
+
"target-lexicon",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "pyo3-ffi"
|
|
590
|
+
version = "0.22.6"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"libc",
|
|
595
|
+
"pyo3-build-config",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "pyo3-macros"
|
|
600
|
+
version = "0.22.6"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"proc-macro2",
|
|
605
|
+
"pyo3-macros-backend",
|
|
606
|
+
"quote",
|
|
607
|
+
"syn",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "pyo3-macros-backend"
|
|
612
|
+
version = "0.22.6"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"heck",
|
|
617
|
+
"proc-macro2",
|
|
618
|
+
"pyo3-build-config",
|
|
619
|
+
"quote",
|
|
620
|
+
"syn",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "quote"
|
|
625
|
+
version = "1.0.45"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"proc-macro2",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "r-efi"
|
|
634
|
+
version = "6.0.0"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "r2d2"
|
|
640
|
+
version = "0.8.10"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"log",
|
|
645
|
+
"parking_lot",
|
|
646
|
+
"scheduled-thread-pool",
|
|
647
|
+
]
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "rand"
|
|
651
|
+
version = "0.8.5"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"libc",
|
|
656
|
+
"rand_chacha",
|
|
657
|
+
"rand_core",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "rand_chacha"
|
|
662
|
+
version = "0.3.1"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"ppv-lite86",
|
|
667
|
+
"rand_core",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "rand_core"
|
|
672
|
+
version = "0.6.4"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"getrandom 0.2.17",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "redox_syscall"
|
|
681
|
+
version = "0.5.18"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"bitflags",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "rsqlite-vfs"
|
|
690
|
+
version = "0.1.0"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "a8a1f2315036ef6b1fbacd1972e8ee7688030b0a2121edfc2a6550febd41574d"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"hashbrown 0.16.1",
|
|
695
|
+
"thiserror 2.0.18",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "rustix"
|
|
700
|
+
version = "1.1.4"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"bitflags",
|
|
705
|
+
"errno",
|
|
706
|
+
"libc",
|
|
707
|
+
"linux-raw-sys",
|
|
708
|
+
"windows-sys 0.61.2",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "rustversion"
|
|
713
|
+
version = "1.0.22"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "scheduled-thread-pool"
|
|
719
|
+
version = "0.2.7"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"parking_lot",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "scopeguard"
|
|
728
|
+
version = "1.2.0"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "semver"
|
|
734
|
+
version = "1.0.27"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "serde"
|
|
740
|
+
version = "1.0.228"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"serde_core",
|
|
745
|
+
"serde_derive",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "serde_core"
|
|
750
|
+
version = "1.0.228"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"serde_derive",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "serde_derive"
|
|
759
|
+
version = "1.0.228"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"proc-macro2",
|
|
764
|
+
"quote",
|
|
765
|
+
"syn",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "serde_json"
|
|
770
|
+
version = "1.0.149"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"itoa",
|
|
775
|
+
"memchr",
|
|
776
|
+
"serde",
|
|
777
|
+
"serde_core",
|
|
778
|
+
"zmij",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "shlex"
|
|
783
|
+
version = "1.3.0"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "signal-hook-registry"
|
|
789
|
+
version = "1.4.8"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"errno",
|
|
794
|
+
"libc",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "smallvec"
|
|
799
|
+
version = "1.15.1"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "socket2"
|
|
805
|
+
version = "0.6.2"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"libc",
|
|
810
|
+
"windows-sys 0.60.2",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "sqlite-wasm-rs"
|
|
815
|
+
version = "0.5.2"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "2f4206ed3a67690b9c29b77d728f6acc3ce78f16bf846d83c94f76400320181b"
|
|
818
|
+
dependencies = [
|
|
819
|
+
"cc",
|
|
820
|
+
"js-sys",
|
|
821
|
+
"rsqlite-vfs",
|
|
822
|
+
"wasm-bindgen",
|
|
823
|
+
]
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "strsim"
|
|
827
|
+
version = "0.11.1"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "syn"
|
|
833
|
+
version = "2.0.117"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"proc-macro2",
|
|
838
|
+
"quote",
|
|
839
|
+
"unicode-ident",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "target-lexicon"
|
|
844
|
+
version = "0.12.16"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "taskito-core"
|
|
850
|
+
version = "0.2.0"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"chrono",
|
|
853
|
+
"cron",
|
|
854
|
+
"crossbeam-channel",
|
|
855
|
+
"diesel",
|
|
856
|
+
"libsqlite3-sys",
|
|
857
|
+
"log",
|
|
858
|
+
"rand",
|
|
859
|
+
"serde",
|
|
860
|
+
"serde_json",
|
|
861
|
+
"tempfile",
|
|
862
|
+
"thiserror 1.0.69",
|
|
863
|
+
"tokio",
|
|
864
|
+
"uuid",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "taskito-python"
|
|
869
|
+
version = "0.2.0"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"crossbeam-channel",
|
|
872
|
+
"pyo3",
|
|
873
|
+
"taskito-core",
|
|
874
|
+
"tokio",
|
|
875
|
+
"uuid",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "tempfile"
|
|
880
|
+
version = "3.26.0"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"fastrand",
|
|
885
|
+
"getrandom 0.4.2",
|
|
886
|
+
"once_cell",
|
|
887
|
+
"rustix",
|
|
888
|
+
"windows-sys 0.61.2",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "thiserror"
|
|
893
|
+
version = "1.0.69"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"thiserror-impl 1.0.69",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "thiserror"
|
|
902
|
+
version = "2.0.18"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"thiserror-impl 2.0.18",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "thiserror-impl"
|
|
911
|
+
version = "1.0.69"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"proc-macro2",
|
|
916
|
+
"quote",
|
|
917
|
+
"syn",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "thiserror-impl"
|
|
922
|
+
version = "2.0.18"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"proc-macro2",
|
|
927
|
+
"quote",
|
|
928
|
+
"syn",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "time"
|
|
933
|
+
version = "0.3.47"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"deranged",
|
|
938
|
+
"itoa",
|
|
939
|
+
"num-conv",
|
|
940
|
+
"powerfmt",
|
|
941
|
+
"serde_core",
|
|
942
|
+
"time-core",
|
|
943
|
+
"time-macros",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "time-core"
|
|
948
|
+
version = "0.1.8"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "time-macros"
|
|
954
|
+
version = "0.2.27"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"num-conv",
|
|
959
|
+
"time-core",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "tokio"
|
|
964
|
+
version = "1.50.0"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"bytes",
|
|
969
|
+
"libc",
|
|
970
|
+
"mio",
|
|
971
|
+
"parking_lot",
|
|
972
|
+
"pin-project-lite",
|
|
973
|
+
"signal-hook-registry",
|
|
974
|
+
"socket2",
|
|
975
|
+
"tokio-macros",
|
|
976
|
+
"windows-sys 0.61.2",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "tokio-macros"
|
|
981
|
+
version = "2.6.1"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
984
|
+
dependencies = [
|
|
985
|
+
"proc-macro2",
|
|
986
|
+
"quote",
|
|
987
|
+
"syn",
|
|
988
|
+
]
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "unicode-ident"
|
|
992
|
+
version = "1.0.24"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "unicode-xid"
|
|
998
|
+
version = "0.2.6"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "unindent"
|
|
1004
|
+
version = "0.2.4"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "uuid"
|
|
1010
|
+
version = "1.22.0"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"getrandom 0.4.2",
|
|
1015
|
+
"js-sys",
|
|
1016
|
+
"wasm-bindgen",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "vcpkg"
|
|
1021
|
+
version = "0.2.15"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "wasi"
|
|
1027
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "wasip2"
|
|
1033
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"wit-bindgen",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "wasip3"
|
|
1042
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"wit-bindgen",
|
|
1047
|
+
]
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "wasm-bindgen"
|
|
1051
|
+
version = "0.2.114"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1054
|
+
dependencies = [
|
|
1055
|
+
"cfg-if",
|
|
1056
|
+
"once_cell",
|
|
1057
|
+
"rustversion",
|
|
1058
|
+
"wasm-bindgen-macro",
|
|
1059
|
+
"wasm-bindgen-shared",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "wasm-bindgen-macro"
|
|
1064
|
+
version = "0.2.114"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"quote",
|
|
1069
|
+
"wasm-bindgen-macro-support",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "wasm-bindgen-macro-support"
|
|
1074
|
+
version = "0.2.114"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1077
|
+
dependencies = [
|
|
1078
|
+
"bumpalo",
|
|
1079
|
+
"proc-macro2",
|
|
1080
|
+
"quote",
|
|
1081
|
+
"syn",
|
|
1082
|
+
"wasm-bindgen-shared",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "wasm-bindgen-shared"
|
|
1087
|
+
version = "0.2.114"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"unicode-ident",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "wasm-encoder"
|
|
1096
|
+
version = "0.244.0"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"leb128fmt",
|
|
1101
|
+
"wasmparser",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "wasm-metadata"
|
|
1106
|
+
version = "0.244.0"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"anyhow",
|
|
1111
|
+
"indexmap",
|
|
1112
|
+
"wasm-encoder",
|
|
1113
|
+
"wasmparser",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "wasmparser"
|
|
1118
|
+
version = "0.244.0"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"bitflags",
|
|
1123
|
+
"hashbrown 0.15.5",
|
|
1124
|
+
"indexmap",
|
|
1125
|
+
"semver",
|
|
1126
|
+
]
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "windows-core"
|
|
1130
|
+
version = "0.62.2"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1133
|
+
dependencies = [
|
|
1134
|
+
"windows-implement",
|
|
1135
|
+
"windows-interface",
|
|
1136
|
+
"windows-link",
|
|
1137
|
+
"windows-result",
|
|
1138
|
+
"windows-strings",
|
|
1139
|
+
]
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "windows-implement"
|
|
1143
|
+
version = "0.60.2"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1146
|
+
dependencies = [
|
|
1147
|
+
"proc-macro2",
|
|
1148
|
+
"quote",
|
|
1149
|
+
"syn",
|
|
1150
|
+
]
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "windows-interface"
|
|
1154
|
+
version = "0.59.3"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"proc-macro2",
|
|
1159
|
+
"quote",
|
|
1160
|
+
"syn",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "windows-link"
|
|
1165
|
+
version = "0.2.1"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "windows-result"
|
|
1171
|
+
version = "0.4.1"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"windows-link",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "windows-strings"
|
|
1180
|
+
version = "0.5.1"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"windows-link",
|
|
1185
|
+
]
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "windows-sys"
|
|
1189
|
+
version = "0.60.2"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1192
|
+
dependencies = [
|
|
1193
|
+
"windows-targets",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "windows-sys"
|
|
1198
|
+
version = "0.61.2"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"windows-link",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "windows-targets"
|
|
1207
|
+
version = "0.53.5"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"windows-link",
|
|
1212
|
+
"windows_aarch64_gnullvm",
|
|
1213
|
+
"windows_aarch64_msvc",
|
|
1214
|
+
"windows_i686_gnu",
|
|
1215
|
+
"windows_i686_gnullvm",
|
|
1216
|
+
"windows_i686_msvc",
|
|
1217
|
+
"windows_x86_64_gnu",
|
|
1218
|
+
"windows_x86_64_gnullvm",
|
|
1219
|
+
"windows_x86_64_msvc",
|
|
1220
|
+
]
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "windows_aarch64_gnullvm"
|
|
1224
|
+
version = "0.53.1"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "windows_aarch64_msvc"
|
|
1230
|
+
version = "0.53.1"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "windows_i686_gnu"
|
|
1236
|
+
version = "0.53.1"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "windows_i686_gnullvm"
|
|
1242
|
+
version = "0.53.1"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "windows_i686_msvc"
|
|
1248
|
+
version = "0.53.1"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "windows_x86_64_gnu"
|
|
1254
|
+
version = "0.53.1"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "windows_x86_64_gnullvm"
|
|
1260
|
+
version = "0.53.1"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "windows_x86_64_msvc"
|
|
1266
|
+
version = "0.53.1"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "wit-bindgen"
|
|
1272
|
+
version = "0.51.0"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"wit-bindgen-rust-macro",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "wit-bindgen-core"
|
|
1281
|
+
version = "0.51.0"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1284
|
+
dependencies = [
|
|
1285
|
+
"anyhow",
|
|
1286
|
+
"heck",
|
|
1287
|
+
"wit-parser",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "wit-bindgen-rust"
|
|
1292
|
+
version = "0.51.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"anyhow",
|
|
1297
|
+
"heck",
|
|
1298
|
+
"indexmap",
|
|
1299
|
+
"prettyplease",
|
|
1300
|
+
"syn",
|
|
1301
|
+
"wasm-metadata",
|
|
1302
|
+
"wit-bindgen-core",
|
|
1303
|
+
"wit-component",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "wit-bindgen-rust-macro"
|
|
1308
|
+
version = "0.51.0"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"anyhow",
|
|
1313
|
+
"prettyplease",
|
|
1314
|
+
"proc-macro2",
|
|
1315
|
+
"quote",
|
|
1316
|
+
"syn",
|
|
1317
|
+
"wit-bindgen-core",
|
|
1318
|
+
"wit-bindgen-rust",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "wit-component"
|
|
1323
|
+
version = "0.244.0"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"anyhow",
|
|
1328
|
+
"bitflags",
|
|
1329
|
+
"indexmap",
|
|
1330
|
+
"log",
|
|
1331
|
+
"serde",
|
|
1332
|
+
"serde_derive",
|
|
1333
|
+
"serde_json",
|
|
1334
|
+
"wasm-encoder",
|
|
1335
|
+
"wasm-metadata",
|
|
1336
|
+
"wasmparser",
|
|
1337
|
+
"wit-parser",
|
|
1338
|
+
]
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "wit-parser"
|
|
1342
|
+
version = "0.244.0"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1345
|
+
dependencies = [
|
|
1346
|
+
"anyhow",
|
|
1347
|
+
"id-arena",
|
|
1348
|
+
"indexmap",
|
|
1349
|
+
"log",
|
|
1350
|
+
"semver",
|
|
1351
|
+
"serde",
|
|
1352
|
+
"serde_derive",
|
|
1353
|
+
"serde_json",
|
|
1354
|
+
"unicode-xid",
|
|
1355
|
+
"wasmparser",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "zerocopy"
|
|
1360
|
+
version = "0.8.40"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"zerocopy-derive",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "zerocopy-derive"
|
|
1369
|
+
version = "0.8.40"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"proc-macro2",
|
|
1374
|
+
"quote",
|
|
1375
|
+
"syn",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "zmij"
|
|
1380
|
+
version = "1.0.21"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|