itsi-scheduler 0.1.0
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.
- checksums.yaml +7 -0
- data/.rubocop.yml +8 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/Cargo.lock +745 -0
- data/Cargo.toml +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +22 -0
- data/ext/itsi_error/Cargo.lock +368 -0
- data/ext/itsi_error/Cargo.toml +9 -0
- data/ext/itsi_error/src/lib.rs +49 -0
- data/ext/itsi_rb_helpers/Cargo.lock +355 -0
- data/ext/itsi_rb_helpers/Cargo.toml +8 -0
- data/ext/itsi_rb_helpers/src/lib.rs +98 -0
- data/ext/itsi_scheduler/Cargo.toml +16 -0
- data/ext/itsi_scheduler/extconf.rb +6 -0
- data/ext/itsi_scheduler/src/lib.rs +17 -0
- data/ext/itsi_tracing/Cargo.lock +274 -0
- data/ext/itsi_tracing/Cargo.toml +12 -0
- data/ext/itsi_tracing/src/lib.rs +11 -0
- data/lib/itsi/scheduler/version.rb +7 -0
- data/lib/itsi/scheduler.rb +11 -0
- data/sig/itsi_scheduler.rbs +4 -0
- metadata +96 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,745 @@
|
|
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.3"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
10
|
+
dependencies = [
|
11
|
+
"memchr",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "base64"
|
16
|
+
version = "0.22.1"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "bindgen"
|
22
|
+
version = "0.69.5"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
25
|
+
dependencies = [
|
26
|
+
"bitflags",
|
27
|
+
"cexpr",
|
28
|
+
"clang-sys",
|
29
|
+
"itertools",
|
30
|
+
"lazy_static",
|
31
|
+
"lazycell",
|
32
|
+
"proc-macro2",
|
33
|
+
"quote",
|
34
|
+
"regex",
|
35
|
+
"rustc-hash",
|
36
|
+
"shlex",
|
37
|
+
"syn",
|
38
|
+
]
|
39
|
+
|
40
|
+
[[package]]
|
41
|
+
name = "bitflags"
|
42
|
+
version = "2.8.0"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "bytes"
|
48
|
+
version = "1.10.0"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9"
|
51
|
+
|
52
|
+
[[package]]
|
53
|
+
name = "cc"
|
54
|
+
version = "1.2.16"
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
+
checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
|
57
|
+
dependencies = [
|
58
|
+
"shlex",
|
59
|
+
]
|
60
|
+
|
61
|
+
[[package]]
|
62
|
+
name = "cexpr"
|
63
|
+
version = "0.6.0"
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
65
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
66
|
+
dependencies = [
|
67
|
+
"nom",
|
68
|
+
]
|
69
|
+
|
70
|
+
[[package]]
|
71
|
+
name = "cfg-if"
|
72
|
+
version = "1.0.0"
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
74
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
75
|
+
|
76
|
+
[[package]]
|
77
|
+
name = "clang-sys"
|
78
|
+
version = "1.8.1"
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
81
|
+
dependencies = [
|
82
|
+
"glob",
|
83
|
+
"libc",
|
84
|
+
"libloading",
|
85
|
+
]
|
86
|
+
|
87
|
+
[[package]]
|
88
|
+
name = "deranged"
|
89
|
+
version = "0.3.11"
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
91
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
92
|
+
dependencies = [
|
93
|
+
"powerfmt",
|
94
|
+
]
|
95
|
+
|
96
|
+
[[package]]
|
97
|
+
name = "either"
|
98
|
+
version = "1.14.0"
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
100
|
+
checksum = "b7914353092ddf589ad78f25c5c1c21b7f80b0ff8621e7c814c3485b5306da9d"
|
101
|
+
|
102
|
+
[[package]]
|
103
|
+
name = "getrandom"
|
104
|
+
version = "0.2.15"
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
106
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
107
|
+
dependencies = [
|
108
|
+
"cfg-if",
|
109
|
+
"libc",
|
110
|
+
"wasi",
|
111
|
+
]
|
112
|
+
|
113
|
+
[[package]]
|
114
|
+
name = "glob"
|
115
|
+
version = "0.3.2"
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
118
|
+
|
119
|
+
[[package]]
|
120
|
+
name = "itertools"
|
121
|
+
version = "0.12.1"
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
123
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
124
|
+
dependencies = [
|
125
|
+
"either",
|
126
|
+
]
|
127
|
+
|
128
|
+
[[package]]
|
129
|
+
name = "itsi-scheduler"
|
130
|
+
version = "0.1.0"
|
131
|
+
dependencies = [
|
132
|
+
"itsi_error",
|
133
|
+
"itsi_rb_helpers",
|
134
|
+
"itsi_tracing",
|
135
|
+
"magnus 0.6.4",
|
136
|
+
]
|
137
|
+
|
138
|
+
[[package]]
|
139
|
+
name = "itsi_error"
|
140
|
+
version = "0.1.0"
|
141
|
+
dependencies = [
|
142
|
+
"magnus 0.7.1",
|
143
|
+
"rcgen",
|
144
|
+
"thiserror",
|
145
|
+
]
|
146
|
+
|
147
|
+
[[package]]
|
148
|
+
name = "itsi_rb_helpers"
|
149
|
+
version = "0.1.0"
|
150
|
+
dependencies = [
|
151
|
+
"magnus 0.7.1",
|
152
|
+
"rb-sys",
|
153
|
+
]
|
154
|
+
|
155
|
+
[[package]]
|
156
|
+
name = "itsi_tracing"
|
157
|
+
version = "0.1.0"
|
158
|
+
dependencies = [
|
159
|
+
"tracing",
|
160
|
+
"tracing-subscriber",
|
161
|
+
]
|
162
|
+
|
163
|
+
[[package]]
|
164
|
+
name = "lazy_static"
|
165
|
+
version = "1.5.0"
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
167
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
168
|
+
|
169
|
+
[[package]]
|
170
|
+
name = "lazycell"
|
171
|
+
version = "1.3.0"
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
173
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
174
|
+
|
175
|
+
[[package]]
|
176
|
+
name = "libc"
|
177
|
+
version = "0.2.170"
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
179
|
+
checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
|
180
|
+
|
181
|
+
[[package]]
|
182
|
+
name = "libloading"
|
183
|
+
version = "0.8.6"
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
185
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
186
|
+
dependencies = [
|
187
|
+
"cfg-if",
|
188
|
+
"windows-targets",
|
189
|
+
]
|
190
|
+
|
191
|
+
[[package]]
|
192
|
+
name = "log"
|
193
|
+
version = "0.4.26"
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
+
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
196
|
+
|
197
|
+
[[package]]
|
198
|
+
name = "magnus"
|
199
|
+
version = "0.6.4"
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
201
|
+
checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
|
202
|
+
dependencies = [
|
203
|
+
"magnus-macros",
|
204
|
+
"rb-sys",
|
205
|
+
"rb-sys-env",
|
206
|
+
"seq-macro",
|
207
|
+
]
|
208
|
+
|
209
|
+
[[package]]
|
210
|
+
name = "magnus"
|
211
|
+
version = "0.7.1"
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
213
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
214
|
+
dependencies = [
|
215
|
+
"bytes",
|
216
|
+
"magnus-macros",
|
217
|
+
"rb-sys",
|
218
|
+
"rb-sys-env",
|
219
|
+
"seq-macro",
|
220
|
+
]
|
221
|
+
|
222
|
+
[[package]]
|
223
|
+
name = "magnus-macros"
|
224
|
+
version = "0.6.0"
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
227
|
+
dependencies = [
|
228
|
+
"proc-macro2",
|
229
|
+
"quote",
|
230
|
+
"syn",
|
231
|
+
]
|
232
|
+
|
233
|
+
[[package]]
|
234
|
+
name = "matchers"
|
235
|
+
version = "0.1.0"
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
237
|
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
238
|
+
dependencies = [
|
239
|
+
"regex-automata 0.1.10",
|
240
|
+
]
|
241
|
+
|
242
|
+
[[package]]
|
243
|
+
name = "memchr"
|
244
|
+
version = "2.7.4"
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
246
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
247
|
+
|
248
|
+
[[package]]
|
249
|
+
name = "minimal-lexical"
|
250
|
+
version = "0.2.1"
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
252
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
253
|
+
|
254
|
+
[[package]]
|
255
|
+
name = "nom"
|
256
|
+
version = "7.1.3"
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
258
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
259
|
+
dependencies = [
|
260
|
+
"memchr",
|
261
|
+
"minimal-lexical",
|
262
|
+
]
|
263
|
+
|
264
|
+
[[package]]
|
265
|
+
name = "nu-ansi-term"
|
266
|
+
version = "0.46.0"
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
268
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
269
|
+
dependencies = [
|
270
|
+
"overload",
|
271
|
+
"winapi",
|
272
|
+
]
|
273
|
+
|
274
|
+
[[package]]
|
275
|
+
name = "num-conv"
|
276
|
+
version = "0.1.0"
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
278
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
279
|
+
|
280
|
+
[[package]]
|
281
|
+
name = "once_cell"
|
282
|
+
version = "1.20.3"
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
284
|
+
checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
|
285
|
+
|
286
|
+
[[package]]
|
287
|
+
name = "overload"
|
288
|
+
version = "0.1.1"
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
290
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
291
|
+
|
292
|
+
[[package]]
|
293
|
+
name = "pem"
|
294
|
+
version = "3.0.5"
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
296
|
+
checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
|
297
|
+
dependencies = [
|
298
|
+
"base64",
|
299
|
+
"serde",
|
300
|
+
]
|
301
|
+
|
302
|
+
[[package]]
|
303
|
+
name = "pin-project-lite"
|
304
|
+
version = "0.2.16"
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
307
|
+
|
308
|
+
[[package]]
|
309
|
+
name = "powerfmt"
|
310
|
+
version = "0.2.0"
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
312
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
313
|
+
|
314
|
+
[[package]]
|
315
|
+
name = "proc-macro2"
|
316
|
+
version = "1.0.93"
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
318
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
319
|
+
dependencies = [
|
320
|
+
"unicode-ident",
|
321
|
+
]
|
322
|
+
|
323
|
+
[[package]]
|
324
|
+
name = "quote"
|
325
|
+
version = "1.0.38"
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
328
|
+
dependencies = [
|
329
|
+
"proc-macro2",
|
330
|
+
]
|
331
|
+
|
332
|
+
[[package]]
|
333
|
+
name = "rb-sys"
|
334
|
+
version = "0.9.111"
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
336
|
+
checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
|
337
|
+
dependencies = [
|
338
|
+
"rb-sys-build",
|
339
|
+
]
|
340
|
+
|
341
|
+
[[package]]
|
342
|
+
name = "rb-sys-build"
|
343
|
+
version = "0.9.111"
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
|
+
checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
|
346
|
+
dependencies = [
|
347
|
+
"bindgen",
|
348
|
+
"lazy_static",
|
349
|
+
"proc-macro2",
|
350
|
+
"quote",
|
351
|
+
"regex",
|
352
|
+
"shell-words",
|
353
|
+
"syn",
|
354
|
+
]
|
355
|
+
|
356
|
+
[[package]]
|
357
|
+
name = "rb-sys-env"
|
358
|
+
version = "0.1.2"
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
360
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
361
|
+
|
362
|
+
[[package]]
|
363
|
+
name = "rcgen"
|
364
|
+
version = "0.13.2"
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
+
checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
|
367
|
+
dependencies = [
|
368
|
+
"pem",
|
369
|
+
"ring",
|
370
|
+
"rustls-pki-types",
|
371
|
+
"time",
|
372
|
+
"yasna",
|
373
|
+
]
|
374
|
+
|
375
|
+
[[package]]
|
376
|
+
name = "regex"
|
377
|
+
version = "1.11.1"
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
379
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
380
|
+
dependencies = [
|
381
|
+
"aho-corasick",
|
382
|
+
"memchr",
|
383
|
+
"regex-automata 0.4.9",
|
384
|
+
"regex-syntax 0.8.5",
|
385
|
+
]
|
386
|
+
|
387
|
+
[[package]]
|
388
|
+
name = "regex-automata"
|
389
|
+
version = "0.1.10"
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
391
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
392
|
+
dependencies = [
|
393
|
+
"regex-syntax 0.6.29",
|
394
|
+
]
|
395
|
+
|
396
|
+
[[package]]
|
397
|
+
name = "regex-automata"
|
398
|
+
version = "0.4.9"
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
400
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
401
|
+
dependencies = [
|
402
|
+
"aho-corasick",
|
403
|
+
"memchr",
|
404
|
+
"regex-syntax 0.8.5",
|
405
|
+
]
|
406
|
+
|
407
|
+
[[package]]
|
408
|
+
name = "regex-syntax"
|
409
|
+
version = "0.6.29"
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
411
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
412
|
+
|
413
|
+
[[package]]
|
414
|
+
name = "regex-syntax"
|
415
|
+
version = "0.8.5"
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
418
|
+
|
419
|
+
[[package]]
|
420
|
+
name = "ring"
|
421
|
+
version = "0.17.11"
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
423
|
+
checksum = "da5349ae27d3887ca812fb375b45a4fbb36d8d12d2df394968cd86e35683fe73"
|
424
|
+
dependencies = [
|
425
|
+
"cc",
|
426
|
+
"cfg-if",
|
427
|
+
"getrandom",
|
428
|
+
"libc",
|
429
|
+
"untrusted",
|
430
|
+
"windows-sys",
|
431
|
+
]
|
432
|
+
|
433
|
+
[[package]]
|
434
|
+
name = "rustc-hash"
|
435
|
+
version = "1.1.0"
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
437
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
438
|
+
|
439
|
+
[[package]]
|
440
|
+
name = "rustls-pki-types"
|
441
|
+
version = "1.11.0"
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
444
|
+
|
445
|
+
[[package]]
|
446
|
+
name = "seq-macro"
|
447
|
+
version = "0.3.5"
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
450
|
+
|
451
|
+
[[package]]
|
452
|
+
name = "serde"
|
453
|
+
version = "1.0.218"
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
455
|
+
checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60"
|
456
|
+
dependencies = [
|
457
|
+
"serde_derive",
|
458
|
+
]
|
459
|
+
|
460
|
+
[[package]]
|
461
|
+
name = "serde_derive"
|
462
|
+
version = "1.0.218"
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
+
checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b"
|
465
|
+
dependencies = [
|
466
|
+
"proc-macro2",
|
467
|
+
"quote",
|
468
|
+
"syn",
|
469
|
+
]
|
470
|
+
|
471
|
+
[[package]]
|
472
|
+
name = "sharded-slab"
|
473
|
+
version = "0.1.7"
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
475
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
476
|
+
dependencies = [
|
477
|
+
"lazy_static",
|
478
|
+
]
|
479
|
+
|
480
|
+
[[package]]
|
481
|
+
name = "shell-words"
|
482
|
+
version = "1.1.0"
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
484
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
485
|
+
|
486
|
+
[[package]]
|
487
|
+
name = "shlex"
|
488
|
+
version = "1.3.0"
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
490
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
491
|
+
|
492
|
+
[[package]]
|
493
|
+
name = "smallvec"
|
494
|
+
version = "1.14.0"
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
496
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
497
|
+
|
498
|
+
[[package]]
|
499
|
+
name = "syn"
|
500
|
+
version = "2.0.98"
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
502
|
+
checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
|
503
|
+
dependencies = [
|
504
|
+
"proc-macro2",
|
505
|
+
"quote",
|
506
|
+
"unicode-ident",
|
507
|
+
]
|
508
|
+
|
509
|
+
[[package]]
|
510
|
+
name = "thiserror"
|
511
|
+
version = "2.0.11"
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
+
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
514
|
+
dependencies = [
|
515
|
+
"thiserror-impl",
|
516
|
+
]
|
517
|
+
|
518
|
+
[[package]]
|
519
|
+
name = "thiserror-impl"
|
520
|
+
version = "2.0.11"
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
|
+
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
523
|
+
dependencies = [
|
524
|
+
"proc-macro2",
|
525
|
+
"quote",
|
526
|
+
"syn",
|
527
|
+
]
|
528
|
+
|
529
|
+
[[package]]
|
530
|
+
name = "thread_local"
|
531
|
+
version = "1.1.8"
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
533
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
534
|
+
dependencies = [
|
535
|
+
"cfg-if",
|
536
|
+
"once_cell",
|
537
|
+
]
|
538
|
+
|
539
|
+
[[package]]
|
540
|
+
name = "time"
|
541
|
+
version = "0.3.37"
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
543
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
544
|
+
dependencies = [
|
545
|
+
"deranged",
|
546
|
+
"num-conv",
|
547
|
+
"powerfmt",
|
548
|
+
"serde",
|
549
|
+
"time-core",
|
550
|
+
]
|
551
|
+
|
552
|
+
[[package]]
|
553
|
+
name = "time-core"
|
554
|
+
version = "0.1.2"
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
557
|
+
|
558
|
+
[[package]]
|
559
|
+
name = "tracing"
|
560
|
+
version = "0.1.41"
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
563
|
+
dependencies = [
|
564
|
+
"pin-project-lite",
|
565
|
+
"tracing-attributes",
|
566
|
+
"tracing-core",
|
567
|
+
]
|
568
|
+
|
569
|
+
[[package]]
|
570
|
+
name = "tracing-attributes"
|
571
|
+
version = "0.1.28"
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
574
|
+
dependencies = [
|
575
|
+
"proc-macro2",
|
576
|
+
"quote",
|
577
|
+
"syn",
|
578
|
+
]
|
579
|
+
|
580
|
+
[[package]]
|
581
|
+
name = "tracing-core"
|
582
|
+
version = "0.1.33"
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
585
|
+
dependencies = [
|
586
|
+
"once_cell",
|
587
|
+
"valuable",
|
588
|
+
]
|
589
|
+
|
590
|
+
[[package]]
|
591
|
+
name = "tracing-log"
|
592
|
+
version = "0.2.0"
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
594
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
595
|
+
dependencies = [
|
596
|
+
"log",
|
597
|
+
"once_cell",
|
598
|
+
"tracing-core",
|
599
|
+
]
|
600
|
+
|
601
|
+
[[package]]
|
602
|
+
name = "tracing-subscriber"
|
603
|
+
version = "0.3.19"
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
605
|
+
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
606
|
+
dependencies = [
|
607
|
+
"matchers",
|
608
|
+
"nu-ansi-term",
|
609
|
+
"once_cell",
|
610
|
+
"regex",
|
611
|
+
"sharded-slab",
|
612
|
+
"smallvec",
|
613
|
+
"thread_local",
|
614
|
+
"tracing",
|
615
|
+
"tracing-core",
|
616
|
+
"tracing-log",
|
617
|
+
]
|
618
|
+
|
619
|
+
[[package]]
|
620
|
+
name = "unicode-ident"
|
621
|
+
version = "1.0.17"
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
623
|
+
checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
|
624
|
+
|
625
|
+
[[package]]
|
626
|
+
name = "untrusted"
|
627
|
+
version = "0.9.0"
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
630
|
+
|
631
|
+
[[package]]
|
632
|
+
name = "valuable"
|
633
|
+
version = "0.1.1"
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
635
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
636
|
+
|
637
|
+
[[package]]
|
638
|
+
name = "wasi"
|
639
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
641
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
642
|
+
|
643
|
+
[[package]]
|
644
|
+
name = "winapi"
|
645
|
+
version = "0.3.9"
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
647
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
648
|
+
dependencies = [
|
649
|
+
"winapi-i686-pc-windows-gnu",
|
650
|
+
"winapi-x86_64-pc-windows-gnu",
|
651
|
+
]
|
652
|
+
|
653
|
+
[[package]]
|
654
|
+
name = "winapi-i686-pc-windows-gnu"
|
655
|
+
version = "0.4.0"
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
658
|
+
|
659
|
+
[[package]]
|
660
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
661
|
+
version = "0.4.0"
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
664
|
+
|
665
|
+
[[package]]
|
666
|
+
name = "windows-sys"
|
667
|
+
version = "0.52.0"
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
670
|
+
dependencies = [
|
671
|
+
"windows-targets",
|
672
|
+
]
|
673
|
+
|
674
|
+
[[package]]
|
675
|
+
name = "windows-targets"
|
676
|
+
version = "0.52.6"
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
679
|
+
dependencies = [
|
680
|
+
"windows_aarch64_gnullvm",
|
681
|
+
"windows_aarch64_msvc",
|
682
|
+
"windows_i686_gnu",
|
683
|
+
"windows_i686_gnullvm",
|
684
|
+
"windows_i686_msvc",
|
685
|
+
"windows_x86_64_gnu",
|
686
|
+
"windows_x86_64_gnullvm",
|
687
|
+
"windows_x86_64_msvc",
|
688
|
+
]
|
689
|
+
|
690
|
+
[[package]]
|
691
|
+
name = "windows_aarch64_gnullvm"
|
692
|
+
version = "0.52.6"
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
694
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
695
|
+
|
696
|
+
[[package]]
|
697
|
+
name = "windows_aarch64_msvc"
|
698
|
+
version = "0.52.6"
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
700
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
701
|
+
|
702
|
+
[[package]]
|
703
|
+
name = "windows_i686_gnu"
|
704
|
+
version = "0.52.6"
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
706
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
707
|
+
|
708
|
+
[[package]]
|
709
|
+
name = "windows_i686_gnullvm"
|
710
|
+
version = "0.52.6"
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
712
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
713
|
+
|
714
|
+
[[package]]
|
715
|
+
name = "windows_i686_msvc"
|
716
|
+
version = "0.52.6"
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
718
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
719
|
+
|
720
|
+
[[package]]
|
721
|
+
name = "windows_x86_64_gnu"
|
722
|
+
version = "0.52.6"
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
724
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
725
|
+
|
726
|
+
[[package]]
|
727
|
+
name = "windows_x86_64_gnullvm"
|
728
|
+
version = "0.52.6"
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
730
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
731
|
+
|
732
|
+
[[package]]
|
733
|
+
name = "windows_x86_64_msvc"
|
734
|
+
version = "0.52.6"
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
736
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
737
|
+
|
738
|
+
[[package]]
|
739
|
+
name = "yasna"
|
740
|
+
version = "0.5.2"
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
742
|
+
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
|
743
|
+
dependencies = [
|
744
|
+
"time",
|
745
|
+
]
|