cedar_policy 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.cross_rubies +20 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/Cargo.lock +1315 -0
- data/Cargo.toml +7 -0
- data/LICENSE.txt +201 -0
- data/README.md +70 -0
- data/Rakefile +23 -0
- data/ext/cedar_policy/Cargo.toml +14 -0
- data/ext/cedar_policy/extconf.rb +6 -0
- data/ext/cedar_policy/src/authorizer.rs +39 -0
- data/ext/cedar_policy/src/decision.rs +57 -0
- data/ext/cedar_policy/src/entities.rs +37 -0
- data/ext/cedar_policy/src/entity.rs +70 -0
- data/ext/cedar_policy/src/entity_uid.rs +54 -0
- data/ext/cedar_policy/src/error.rs +22 -0
- data/ext/cedar_policy/src/lib.rs +30 -0
- data/ext/cedar_policy/src/policy_set.rs +40 -0
- data/ext/cedar_policy/src/request.rs +55 -0
- data/ext/cedar_policy/src/response.rs +25 -0
- data/lib/cedar_policy/version.rb +5 -0
- data/lib/cedar_policy.rb +9 -0
- data/sig/cedar_policy.rbs +4 -0
- metadata +71 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,1315 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
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 = "android-tzdata"
|
16
|
+
version = "0.1.1"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "android_system_properties"
|
22
|
+
version = "0.1.5"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
25
|
+
dependencies = [
|
26
|
+
"libc",
|
27
|
+
]
|
28
|
+
|
29
|
+
[[package]]
|
30
|
+
name = "ascii-canvas"
|
31
|
+
version = "3.0.0"
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
+
checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
|
34
|
+
dependencies = [
|
35
|
+
"term",
|
36
|
+
]
|
37
|
+
|
38
|
+
[[package]]
|
39
|
+
name = "autocfg"
|
40
|
+
version = "1.3.0"
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
42
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
43
|
+
|
44
|
+
[[package]]
|
45
|
+
name = "base64"
|
46
|
+
version = "0.22.1"
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
48
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
49
|
+
|
50
|
+
[[package]]
|
51
|
+
name = "bindgen"
|
52
|
+
version = "0.69.4"
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
55
|
+
dependencies = [
|
56
|
+
"bitflags",
|
57
|
+
"cexpr",
|
58
|
+
"clang-sys",
|
59
|
+
"itertools 0.12.1",
|
60
|
+
"lazy_static",
|
61
|
+
"lazycell",
|
62
|
+
"proc-macro2",
|
63
|
+
"quote",
|
64
|
+
"regex",
|
65
|
+
"rustc-hash",
|
66
|
+
"shlex",
|
67
|
+
"syn",
|
68
|
+
]
|
69
|
+
|
70
|
+
[[package]]
|
71
|
+
name = "bit-set"
|
72
|
+
version = "0.5.3"
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
74
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
75
|
+
dependencies = [
|
76
|
+
"bit-vec",
|
77
|
+
]
|
78
|
+
|
79
|
+
[[package]]
|
80
|
+
name = "bit-vec"
|
81
|
+
version = "0.6.3"
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
83
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
84
|
+
|
85
|
+
[[package]]
|
86
|
+
name = "bitflags"
|
87
|
+
version = "2.6.0"
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
89
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
90
|
+
|
91
|
+
[[package]]
|
92
|
+
name = "bumpalo"
|
93
|
+
version = "3.16.0"
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
95
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
96
|
+
|
97
|
+
[[package]]
|
98
|
+
name = "cc"
|
99
|
+
version = "1.1.10"
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
101
|
+
checksum = "e9e8aabfac534be767c909e0690571677d49f41bd8465ae876fe043d52ba5292"
|
102
|
+
|
103
|
+
[[package]]
|
104
|
+
name = "cedar-policy"
|
105
|
+
version = "3.2.4"
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
107
|
+
checksum = "bf8d0f84c41976895df35bce531ec1689659bbd64059268a21c1af082145ce6b"
|
108
|
+
dependencies = [
|
109
|
+
"cedar-policy-core",
|
110
|
+
"cedar-policy-validator",
|
111
|
+
"itertools 0.12.1",
|
112
|
+
"lalrpop-util",
|
113
|
+
"miette",
|
114
|
+
"nonempty",
|
115
|
+
"ref-cast",
|
116
|
+
"serde",
|
117
|
+
"serde_json",
|
118
|
+
"serde_with",
|
119
|
+
"smol_str",
|
120
|
+
"thiserror",
|
121
|
+
]
|
122
|
+
|
123
|
+
[[package]]
|
124
|
+
name = "cedar-policy-core"
|
125
|
+
version = "3.2.4"
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
127
|
+
checksum = "bc4d160ece574cfd62c8573d77adf70c6c6805cb6fb086f91bf2ecf83d71dd29"
|
128
|
+
dependencies = [
|
129
|
+
"either",
|
130
|
+
"itertools 0.12.1",
|
131
|
+
"lalrpop",
|
132
|
+
"lalrpop-util",
|
133
|
+
"lazy_static",
|
134
|
+
"miette",
|
135
|
+
"nonempty",
|
136
|
+
"regex",
|
137
|
+
"rustc_lexer",
|
138
|
+
"serde",
|
139
|
+
"serde_json",
|
140
|
+
"serde_with",
|
141
|
+
"smol_str",
|
142
|
+
"stacker",
|
143
|
+
"thiserror",
|
144
|
+
]
|
145
|
+
|
146
|
+
[[package]]
|
147
|
+
name = "cedar-policy-validator"
|
148
|
+
version = "3.2.4"
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
+
checksum = "c108c8468f62d0e1d6f7bda1b8c8634dff9b726e5076dcfd3c46ac256a83983c"
|
151
|
+
dependencies = [
|
152
|
+
"cedar-policy-core",
|
153
|
+
"itertools 0.12.1",
|
154
|
+
"lalrpop",
|
155
|
+
"lalrpop-util",
|
156
|
+
"lazy_static",
|
157
|
+
"miette",
|
158
|
+
"nonempty",
|
159
|
+
"serde",
|
160
|
+
"serde_json",
|
161
|
+
"serde_with",
|
162
|
+
"smol_str",
|
163
|
+
"stacker",
|
164
|
+
"thiserror",
|
165
|
+
"unicode-security",
|
166
|
+
]
|
167
|
+
|
168
|
+
[[package]]
|
169
|
+
name = "cedar_policy"
|
170
|
+
version = "0.1.0"
|
171
|
+
dependencies = [
|
172
|
+
"cedar-policy",
|
173
|
+
"magnus",
|
174
|
+
]
|
175
|
+
|
176
|
+
[[package]]
|
177
|
+
name = "cexpr"
|
178
|
+
version = "0.6.0"
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
180
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
181
|
+
dependencies = [
|
182
|
+
"nom",
|
183
|
+
]
|
184
|
+
|
185
|
+
[[package]]
|
186
|
+
name = "cfg-if"
|
187
|
+
version = "1.0.0"
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
189
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
190
|
+
|
191
|
+
[[package]]
|
192
|
+
name = "chrono"
|
193
|
+
version = "0.4.38"
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
196
|
+
dependencies = [
|
197
|
+
"android-tzdata",
|
198
|
+
"iana-time-zone",
|
199
|
+
"num-traits",
|
200
|
+
"serde",
|
201
|
+
"windows-targets",
|
202
|
+
]
|
203
|
+
|
204
|
+
[[package]]
|
205
|
+
name = "clang-sys"
|
206
|
+
version = "1.8.1"
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
208
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
209
|
+
dependencies = [
|
210
|
+
"glob",
|
211
|
+
"libc",
|
212
|
+
"libloading",
|
213
|
+
]
|
214
|
+
|
215
|
+
[[package]]
|
216
|
+
name = "core-foundation-sys"
|
217
|
+
version = "0.8.7"
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
219
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
220
|
+
|
221
|
+
[[package]]
|
222
|
+
name = "crunchy"
|
223
|
+
version = "0.2.2"
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
225
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
226
|
+
|
227
|
+
[[package]]
|
228
|
+
name = "darling"
|
229
|
+
version = "0.20.10"
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
232
|
+
dependencies = [
|
233
|
+
"darling_core",
|
234
|
+
"darling_macro",
|
235
|
+
]
|
236
|
+
|
237
|
+
[[package]]
|
238
|
+
name = "darling_core"
|
239
|
+
version = "0.20.10"
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
241
|
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
242
|
+
dependencies = [
|
243
|
+
"fnv",
|
244
|
+
"ident_case",
|
245
|
+
"proc-macro2",
|
246
|
+
"quote",
|
247
|
+
"strsim",
|
248
|
+
"syn",
|
249
|
+
]
|
250
|
+
|
251
|
+
[[package]]
|
252
|
+
name = "darling_macro"
|
253
|
+
version = "0.20.10"
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
255
|
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
256
|
+
dependencies = [
|
257
|
+
"darling_core",
|
258
|
+
"quote",
|
259
|
+
"syn",
|
260
|
+
]
|
261
|
+
|
262
|
+
[[package]]
|
263
|
+
name = "deranged"
|
264
|
+
version = "0.3.11"
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
266
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
267
|
+
dependencies = [
|
268
|
+
"powerfmt",
|
269
|
+
"serde",
|
270
|
+
]
|
271
|
+
|
272
|
+
[[package]]
|
273
|
+
name = "dirs-next"
|
274
|
+
version = "2.0.0"
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
276
|
+
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
|
277
|
+
dependencies = [
|
278
|
+
"cfg-if",
|
279
|
+
"dirs-sys-next",
|
280
|
+
]
|
281
|
+
|
282
|
+
[[package]]
|
283
|
+
name = "dirs-sys-next"
|
284
|
+
version = "0.1.2"
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
286
|
+
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
287
|
+
dependencies = [
|
288
|
+
"libc",
|
289
|
+
"redox_users",
|
290
|
+
"winapi",
|
291
|
+
]
|
292
|
+
|
293
|
+
[[package]]
|
294
|
+
name = "either"
|
295
|
+
version = "1.13.0"
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
298
|
+
|
299
|
+
[[package]]
|
300
|
+
name = "ena"
|
301
|
+
version = "0.14.3"
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
+
checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5"
|
304
|
+
dependencies = [
|
305
|
+
"log",
|
306
|
+
]
|
307
|
+
|
308
|
+
[[package]]
|
309
|
+
name = "equivalent"
|
310
|
+
version = "1.0.1"
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
312
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
313
|
+
|
314
|
+
[[package]]
|
315
|
+
name = "fixedbitset"
|
316
|
+
version = "0.4.2"
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
318
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
319
|
+
|
320
|
+
[[package]]
|
321
|
+
name = "fnv"
|
322
|
+
version = "1.0.7"
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
324
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
325
|
+
|
326
|
+
[[package]]
|
327
|
+
name = "getrandom"
|
328
|
+
version = "0.2.15"
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
330
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
331
|
+
dependencies = [
|
332
|
+
"cfg-if",
|
333
|
+
"libc",
|
334
|
+
"wasi",
|
335
|
+
]
|
336
|
+
|
337
|
+
[[package]]
|
338
|
+
name = "glob"
|
339
|
+
version = "0.3.1"
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
341
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
342
|
+
|
343
|
+
[[package]]
|
344
|
+
name = "hashbrown"
|
345
|
+
version = "0.12.3"
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
347
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
348
|
+
|
349
|
+
[[package]]
|
350
|
+
name = "hashbrown"
|
351
|
+
version = "0.14.5"
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
353
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
354
|
+
|
355
|
+
[[package]]
|
356
|
+
name = "hex"
|
357
|
+
version = "0.4.3"
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
359
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
360
|
+
|
361
|
+
[[package]]
|
362
|
+
name = "iana-time-zone"
|
363
|
+
version = "0.1.60"
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
365
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
366
|
+
dependencies = [
|
367
|
+
"android_system_properties",
|
368
|
+
"core-foundation-sys",
|
369
|
+
"iana-time-zone-haiku",
|
370
|
+
"js-sys",
|
371
|
+
"wasm-bindgen",
|
372
|
+
"windows-core",
|
373
|
+
]
|
374
|
+
|
375
|
+
[[package]]
|
376
|
+
name = "iana-time-zone-haiku"
|
377
|
+
version = "0.1.2"
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
379
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
380
|
+
dependencies = [
|
381
|
+
"cc",
|
382
|
+
]
|
383
|
+
|
384
|
+
[[package]]
|
385
|
+
name = "ident_case"
|
386
|
+
version = "1.0.1"
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
388
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
389
|
+
|
390
|
+
[[package]]
|
391
|
+
name = "indexmap"
|
392
|
+
version = "1.9.3"
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
394
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
395
|
+
dependencies = [
|
396
|
+
"autocfg",
|
397
|
+
"hashbrown 0.12.3",
|
398
|
+
"serde",
|
399
|
+
]
|
400
|
+
|
401
|
+
[[package]]
|
402
|
+
name = "indexmap"
|
403
|
+
version = "2.3.0"
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
405
|
+
checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0"
|
406
|
+
dependencies = [
|
407
|
+
"equivalent",
|
408
|
+
"hashbrown 0.14.5",
|
409
|
+
"serde",
|
410
|
+
]
|
411
|
+
|
412
|
+
[[package]]
|
413
|
+
name = "itertools"
|
414
|
+
version = "0.11.0"
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
417
|
+
dependencies = [
|
418
|
+
"either",
|
419
|
+
]
|
420
|
+
|
421
|
+
[[package]]
|
422
|
+
name = "itertools"
|
423
|
+
version = "0.12.1"
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
425
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
426
|
+
dependencies = [
|
427
|
+
"either",
|
428
|
+
]
|
429
|
+
|
430
|
+
[[package]]
|
431
|
+
name = "itoa"
|
432
|
+
version = "1.0.11"
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
434
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
435
|
+
|
436
|
+
[[package]]
|
437
|
+
name = "js-sys"
|
438
|
+
version = "0.3.69"
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
441
|
+
dependencies = [
|
442
|
+
"wasm-bindgen",
|
443
|
+
]
|
444
|
+
|
445
|
+
[[package]]
|
446
|
+
name = "lalrpop"
|
447
|
+
version = "0.20.2"
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
+
checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca"
|
450
|
+
dependencies = [
|
451
|
+
"ascii-canvas",
|
452
|
+
"bit-set",
|
453
|
+
"ena",
|
454
|
+
"itertools 0.11.0",
|
455
|
+
"lalrpop-util",
|
456
|
+
"petgraph",
|
457
|
+
"pico-args",
|
458
|
+
"regex",
|
459
|
+
"regex-syntax",
|
460
|
+
"string_cache",
|
461
|
+
"term",
|
462
|
+
"tiny-keccak",
|
463
|
+
"unicode-xid",
|
464
|
+
"walkdir",
|
465
|
+
]
|
466
|
+
|
467
|
+
[[package]]
|
468
|
+
name = "lalrpop-util"
|
469
|
+
version = "0.20.2"
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
471
|
+
checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
|
472
|
+
dependencies = [
|
473
|
+
"regex-automata",
|
474
|
+
]
|
475
|
+
|
476
|
+
[[package]]
|
477
|
+
name = "lazy_static"
|
478
|
+
version = "1.5.0"
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
480
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
481
|
+
|
482
|
+
[[package]]
|
483
|
+
name = "lazycell"
|
484
|
+
version = "1.3.0"
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
486
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
487
|
+
|
488
|
+
[[package]]
|
489
|
+
name = "libc"
|
490
|
+
version = "0.2.155"
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
493
|
+
|
494
|
+
[[package]]
|
495
|
+
name = "libloading"
|
496
|
+
version = "0.8.5"
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
498
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
499
|
+
dependencies = [
|
500
|
+
"cfg-if",
|
501
|
+
"windows-targets",
|
502
|
+
]
|
503
|
+
|
504
|
+
[[package]]
|
505
|
+
name = "libredox"
|
506
|
+
version = "0.1.3"
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
508
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
509
|
+
dependencies = [
|
510
|
+
"bitflags",
|
511
|
+
"libc",
|
512
|
+
]
|
513
|
+
|
514
|
+
[[package]]
|
515
|
+
name = "lock_api"
|
516
|
+
version = "0.4.12"
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
518
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
519
|
+
dependencies = [
|
520
|
+
"autocfg",
|
521
|
+
"scopeguard",
|
522
|
+
]
|
523
|
+
|
524
|
+
[[package]]
|
525
|
+
name = "log"
|
526
|
+
version = "0.4.22"
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
528
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
529
|
+
|
530
|
+
[[package]]
|
531
|
+
name = "magnus"
|
532
|
+
version = "0.7.1"
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
535
|
+
dependencies = [
|
536
|
+
"magnus-macros",
|
537
|
+
"rb-sys",
|
538
|
+
"rb-sys-env",
|
539
|
+
"seq-macro",
|
540
|
+
]
|
541
|
+
|
542
|
+
[[package]]
|
543
|
+
name = "magnus-macros"
|
544
|
+
version = "0.6.0"
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
547
|
+
dependencies = [
|
548
|
+
"proc-macro2",
|
549
|
+
"quote",
|
550
|
+
"syn",
|
551
|
+
]
|
552
|
+
|
553
|
+
[[package]]
|
554
|
+
name = "memchr"
|
555
|
+
version = "2.7.4"
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
557
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
558
|
+
|
559
|
+
[[package]]
|
560
|
+
name = "miette"
|
561
|
+
version = "7.2.0"
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
563
|
+
checksum = "4edc8853320c2a0dab800fbda86253c8938f6ea88510dc92c5f1ed20e794afc1"
|
564
|
+
dependencies = [
|
565
|
+
"cfg-if",
|
566
|
+
"miette-derive",
|
567
|
+
"serde",
|
568
|
+
"thiserror",
|
569
|
+
"unicode-width",
|
570
|
+
]
|
571
|
+
|
572
|
+
[[package]]
|
573
|
+
name = "miette-derive"
|
574
|
+
version = "7.2.0"
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
+
checksum = "dcf09caffaac8068c346b6df2a7fc27a177fd20b39421a39ce0a211bde679a6c"
|
577
|
+
dependencies = [
|
578
|
+
"proc-macro2",
|
579
|
+
"quote",
|
580
|
+
"syn",
|
581
|
+
]
|
582
|
+
|
583
|
+
[[package]]
|
584
|
+
name = "minimal-lexical"
|
585
|
+
version = "0.2.1"
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
587
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
588
|
+
|
589
|
+
[[package]]
|
590
|
+
name = "new_debug_unreachable"
|
591
|
+
version = "1.0.6"
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
593
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
594
|
+
|
595
|
+
[[package]]
|
596
|
+
name = "nom"
|
597
|
+
version = "7.1.3"
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
599
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
600
|
+
dependencies = [
|
601
|
+
"memchr",
|
602
|
+
"minimal-lexical",
|
603
|
+
]
|
604
|
+
|
605
|
+
[[package]]
|
606
|
+
name = "nonempty"
|
607
|
+
version = "0.10.0"
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
+
checksum = "303e8749c804ccd6ca3b428de7fe0d86cb86bc7606bc15291f100fd487960bb8"
|
610
|
+
|
611
|
+
[[package]]
|
612
|
+
name = "num-conv"
|
613
|
+
version = "0.1.0"
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
615
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
616
|
+
|
617
|
+
[[package]]
|
618
|
+
name = "num-traits"
|
619
|
+
version = "0.2.19"
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
622
|
+
dependencies = [
|
623
|
+
"autocfg",
|
624
|
+
]
|
625
|
+
|
626
|
+
[[package]]
|
627
|
+
name = "once_cell"
|
628
|
+
version = "1.19.0"
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
630
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
631
|
+
|
632
|
+
[[package]]
|
633
|
+
name = "parking_lot"
|
634
|
+
version = "0.12.3"
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
637
|
+
dependencies = [
|
638
|
+
"lock_api",
|
639
|
+
"parking_lot_core",
|
640
|
+
]
|
641
|
+
|
642
|
+
[[package]]
|
643
|
+
name = "parking_lot_core"
|
644
|
+
version = "0.9.10"
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
647
|
+
dependencies = [
|
648
|
+
"cfg-if",
|
649
|
+
"libc",
|
650
|
+
"redox_syscall",
|
651
|
+
"smallvec",
|
652
|
+
"windows-targets",
|
653
|
+
]
|
654
|
+
|
655
|
+
[[package]]
|
656
|
+
name = "petgraph"
|
657
|
+
version = "0.6.5"
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
659
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
660
|
+
dependencies = [
|
661
|
+
"fixedbitset",
|
662
|
+
"indexmap 2.3.0",
|
663
|
+
]
|
664
|
+
|
665
|
+
[[package]]
|
666
|
+
name = "phf_shared"
|
667
|
+
version = "0.10.0"
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
+
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
670
|
+
dependencies = [
|
671
|
+
"siphasher",
|
672
|
+
]
|
673
|
+
|
674
|
+
[[package]]
|
675
|
+
name = "pico-args"
|
676
|
+
version = "0.5.0"
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
+
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
679
|
+
|
680
|
+
[[package]]
|
681
|
+
name = "powerfmt"
|
682
|
+
version = "0.2.0"
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
685
|
+
|
686
|
+
[[package]]
|
687
|
+
name = "precomputed-hash"
|
688
|
+
version = "0.1.1"
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
690
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
691
|
+
|
692
|
+
[[package]]
|
693
|
+
name = "proc-macro2"
|
694
|
+
version = "1.0.86"
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
697
|
+
dependencies = [
|
698
|
+
"unicode-ident",
|
699
|
+
]
|
700
|
+
|
701
|
+
[[package]]
|
702
|
+
name = "psm"
|
703
|
+
version = "0.1.21"
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
705
|
+
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
|
706
|
+
dependencies = [
|
707
|
+
"cc",
|
708
|
+
]
|
709
|
+
|
710
|
+
[[package]]
|
711
|
+
name = "quote"
|
712
|
+
version = "1.0.36"
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
714
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
715
|
+
dependencies = [
|
716
|
+
"proc-macro2",
|
717
|
+
]
|
718
|
+
|
719
|
+
[[package]]
|
720
|
+
name = "rb-sys"
|
721
|
+
version = "0.9.100"
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
723
|
+
checksum = "87f2ba20be84b32fad6b0ce397764bcdd0f2dca4431cf7035f6a6721e5747565"
|
724
|
+
dependencies = [
|
725
|
+
"rb-sys-build",
|
726
|
+
]
|
727
|
+
|
728
|
+
[[package]]
|
729
|
+
name = "rb-sys-build"
|
730
|
+
version = "0.9.100"
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
732
|
+
checksum = "7ecae2bdcb118ee721d9a3929f89e8578237fade298dfcf8c928609aa88abc48"
|
733
|
+
dependencies = [
|
734
|
+
"bindgen",
|
735
|
+
"lazy_static",
|
736
|
+
"proc-macro2",
|
737
|
+
"quote",
|
738
|
+
"regex",
|
739
|
+
"shell-words",
|
740
|
+
"syn",
|
741
|
+
]
|
742
|
+
|
743
|
+
[[package]]
|
744
|
+
name = "rb-sys-env"
|
745
|
+
version = "0.1.2"
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
747
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
748
|
+
|
749
|
+
[[package]]
|
750
|
+
name = "redox_syscall"
|
751
|
+
version = "0.5.3"
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
753
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
754
|
+
dependencies = [
|
755
|
+
"bitflags",
|
756
|
+
]
|
757
|
+
|
758
|
+
[[package]]
|
759
|
+
name = "redox_users"
|
760
|
+
version = "0.4.5"
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
762
|
+
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
|
763
|
+
dependencies = [
|
764
|
+
"getrandom",
|
765
|
+
"libredox",
|
766
|
+
"thiserror",
|
767
|
+
]
|
768
|
+
|
769
|
+
[[package]]
|
770
|
+
name = "ref-cast"
|
771
|
+
version = "1.0.23"
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
+
checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931"
|
774
|
+
dependencies = [
|
775
|
+
"ref-cast-impl",
|
776
|
+
]
|
777
|
+
|
778
|
+
[[package]]
|
779
|
+
name = "ref-cast-impl"
|
780
|
+
version = "1.0.23"
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
782
|
+
checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
|
783
|
+
dependencies = [
|
784
|
+
"proc-macro2",
|
785
|
+
"quote",
|
786
|
+
"syn",
|
787
|
+
]
|
788
|
+
|
789
|
+
[[package]]
|
790
|
+
name = "regex"
|
791
|
+
version = "1.10.6"
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
793
|
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
794
|
+
dependencies = [
|
795
|
+
"aho-corasick",
|
796
|
+
"memchr",
|
797
|
+
"regex-automata",
|
798
|
+
"regex-syntax",
|
799
|
+
]
|
800
|
+
|
801
|
+
[[package]]
|
802
|
+
name = "regex-automata"
|
803
|
+
version = "0.4.7"
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
805
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
806
|
+
dependencies = [
|
807
|
+
"aho-corasick",
|
808
|
+
"memchr",
|
809
|
+
"regex-syntax",
|
810
|
+
]
|
811
|
+
|
812
|
+
[[package]]
|
813
|
+
name = "regex-syntax"
|
814
|
+
version = "0.8.4"
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
817
|
+
|
818
|
+
[[package]]
|
819
|
+
name = "rustc-hash"
|
820
|
+
version = "1.1.0"
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
822
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
823
|
+
|
824
|
+
[[package]]
|
825
|
+
name = "rustc_lexer"
|
826
|
+
version = "0.1.0"
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
828
|
+
checksum = "c86aae0c77166108c01305ee1a36a1e77289d7dc6ca0a3cd91ff4992de2d16a5"
|
829
|
+
dependencies = [
|
830
|
+
"unicode-xid",
|
831
|
+
]
|
832
|
+
|
833
|
+
[[package]]
|
834
|
+
name = "rustversion"
|
835
|
+
version = "1.0.17"
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
837
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
838
|
+
|
839
|
+
[[package]]
|
840
|
+
name = "ryu"
|
841
|
+
version = "1.0.18"
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
843
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
844
|
+
|
845
|
+
[[package]]
|
846
|
+
name = "same-file"
|
847
|
+
version = "1.0.6"
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
849
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
850
|
+
dependencies = [
|
851
|
+
"winapi-util",
|
852
|
+
]
|
853
|
+
|
854
|
+
[[package]]
|
855
|
+
name = "scopeguard"
|
856
|
+
version = "1.2.0"
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
858
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
859
|
+
|
860
|
+
[[package]]
|
861
|
+
name = "seq-macro"
|
862
|
+
version = "0.3.5"
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
864
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
865
|
+
|
866
|
+
[[package]]
|
867
|
+
name = "serde"
|
868
|
+
version = "1.0.206"
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
870
|
+
checksum = "5b3e4cd94123dd520a128bcd11e34d9e9e423e7e3e50425cb1b4b1e3549d0284"
|
871
|
+
dependencies = [
|
872
|
+
"serde_derive",
|
873
|
+
]
|
874
|
+
|
875
|
+
[[package]]
|
876
|
+
name = "serde_derive"
|
877
|
+
version = "1.0.206"
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
879
|
+
checksum = "fabfb6138d2383ea8208cf98ccf69cdfb1aff4088460681d84189aa259762f97"
|
880
|
+
dependencies = [
|
881
|
+
"proc-macro2",
|
882
|
+
"quote",
|
883
|
+
"syn",
|
884
|
+
]
|
885
|
+
|
886
|
+
[[package]]
|
887
|
+
name = "serde_json"
|
888
|
+
version = "1.0.122"
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
890
|
+
checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da"
|
891
|
+
dependencies = [
|
892
|
+
"indexmap 2.3.0",
|
893
|
+
"itoa",
|
894
|
+
"memchr",
|
895
|
+
"ryu",
|
896
|
+
"serde",
|
897
|
+
]
|
898
|
+
|
899
|
+
[[package]]
|
900
|
+
name = "serde_with"
|
901
|
+
version = "3.9.0"
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
+
checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857"
|
904
|
+
dependencies = [
|
905
|
+
"base64",
|
906
|
+
"chrono",
|
907
|
+
"hex",
|
908
|
+
"indexmap 1.9.3",
|
909
|
+
"indexmap 2.3.0",
|
910
|
+
"serde",
|
911
|
+
"serde_derive",
|
912
|
+
"serde_json",
|
913
|
+
"serde_with_macros",
|
914
|
+
"time",
|
915
|
+
]
|
916
|
+
|
917
|
+
[[package]]
|
918
|
+
name = "serde_with_macros"
|
919
|
+
version = "3.9.0"
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
921
|
+
checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350"
|
922
|
+
dependencies = [
|
923
|
+
"darling",
|
924
|
+
"proc-macro2",
|
925
|
+
"quote",
|
926
|
+
"syn",
|
927
|
+
]
|
928
|
+
|
929
|
+
[[package]]
|
930
|
+
name = "shell-words"
|
931
|
+
version = "1.1.0"
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
933
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
934
|
+
|
935
|
+
[[package]]
|
936
|
+
name = "shlex"
|
937
|
+
version = "1.3.0"
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
940
|
+
|
941
|
+
[[package]]
|
942
|
+
name = "siphasher"
|
943
|
+
version = "0.3.11"
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
945
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
946
|
+
|
947
|
+
[[package]]
|
948
|
+
name = "smallvec"
|
949
|
+
version = "1.13.2"
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
951
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
952
|
+
|
953
|
+
[[package]]
|
954
|
+
name = "smol_str"
|
955
|
+
version = "0.2.2"
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
957
|
+
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
|
958
|
+
dependencies = [
|
959
|
+
"serde",
|
960
|
+
]
|
961
|
+
|
962
|
+
[[package]]
|
963
|
+
name = "stacker"
|
964
|
+
version = "0.1.15"
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
+
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
|
967
|
+
dependencies = [
|
968
|
+
"cc",
|
969
|
+
"cfg-if",
|
970
|
+
"libc",
|
971
|
+
"psm",
|
972
|
+
"winapi",
|
973
|
+
]
|
974
|
+
|
975
|
+
[[package]]
|
976
|
+
name = "string_cache"
|
977
|
+
version = "0.8.7"
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
979
|
+
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
|
980
|
+
dependencies = [
|
981
|
+
"new_debug_unreachable",
|
982
|
+
"once_cell",
|
983
|
+
"parking_lot",
|
984
|
+
"phf_shared",
|
985
|
+
"precomputed-hash",
|
986
|
+
]
|
987
|
+
|
988
|
+
[[package]]
|
989
|
+
name = "strsim"
|
990
|
+
version = "0.11.1"
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
992
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
993
|
+
|
994
|
+
[[package]]
|
995
|
+
name = "syn"
|
996
|
+
version = "2.0.74"
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
+
checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7"
|
999
|
+
dependencies = [
|
1000
|
+
"proc-macro2",
|
1001
|
+
"quote",
|
1002
|
+
"unicode-ident",
|
1003
|
+
]
|
1004
|
+
|
1005
|
+
[[package]]
|
1006
|
+
name = "term"
|
1007
|
+
version = "0.7.0"
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
+
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
|
1010
|
+
dependencies = [
|
1011
|
+
"dirs-next",
|
1012
|
+
"rustversion",
|
1013
|
+
"winapi",
|
1014
|
+
]
|
1015
|
+
|
1016
|
+
[[package]]
|
1017
|
+
name = "thiserror"
|
1018
|
+
version = "1.0.63"
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
1021
|
+
dependencies = [
|
1022
|
+
"thiserror-impl",
|
1023
|
+
]
|
1024
|
+
|
1025
|
+
[[package]]
|
1026
|
+
name = "thiserror-impl"
|
1027
|
+
version = "1.0.63"
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1029
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
1030
|
+
dependencies = [
|
1031
|
+
"proc-macro2",
|
1032
|
+
"quote",
|
1033
|
+
"syn",
|
1034
|
+
]
|
1035
|
+
|
1036
|
+
[[package]]
|
1037
|
+
name = "time"
|
1038
|
+
version = "0.3.36"
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1040
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
1041
|
+
dependencies = [
|
1042
|
+
"deranged",
|
1043
|
+
"itoa",
|
1044
|
+
"num-conv",
|
1045
|
+
"powerfmt",
|
1046
|
+
"serde",
|
1047
|
+
"time-core",
|
1048
|
+
"time-macros",
|
1049
|
+
]
|
1050
|
+
|
1051
|
+
[[package]]
|
1052
|
+
name = "time-core"
|
1053
|
+
version = "0.1.2"
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1055
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
1056
|
+
|
1057
|
+
[[package]]
|
1058
|
+
name = "time-macros"
|
1059
|
+
version = "0.2.18"
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1061
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
1062
|
+
dependencies = [
|
1063
|
+
"num-conv",
|
1064
|
+
"time-core",
|
1065
|
+
]
|
1066
|
+
|
1067
|
+
[[package]]
|
1068
|
+
name = "tiny-keccak"
|
1069
|
+
version = "2.0.2"
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1071
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
1072
|
+
dependencies = [
|
1073
|
+
"crunchy",
|
1074
|
+
]
|
1075
|
+
|
1076
|
+
[[package]]
|
1077
|
+
name = "tinyvec"
|
1078
|
+
version = "1.8.0"
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1080
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
1081
|
+
dependencies = [
|
1082
|
+
"tinyvec_macros",
|
1083
|
+
]
|
1084
|
+
|
1085
|
+
[[package]]
|
1086
|
+
name = "tinyvec_macros"
|
1087
|
+
version = "0.1.1"
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1089
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
1090
|
+
|
1091
|
+
[[package]]
|
1092
|
+
name = "unicode-ident"
|
1093
|
+
version = "1.0.12"
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1095
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
1096
|
+
|
1097
|
+
[[package]]
|
1098
|
+
name = "unicode-normalization"
|
1099
|
+
version = "0.1.23"
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1101
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
1102
|
+
dependencies = [
|
1103
|
+
"tinyvec",
|
1104
|
+
]
|
1105
|
+
|
1106
|
+
[[package]]
|
1107
|
+
name = "unicode-script"
|
1108
|
+
version = "0.5.6"
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1110
|
+
checksum = "ad8d71f5726e5f285a935e9fe8edfd53f0491eb6e9a5774097fdabee7cd8c9cd"
|
1111
|
+
|
1112
|
+
[[package]]
|
1113
|
+
name = "unicode-security"
|
1114
|
+
version = "0.1.1"
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1116
|
+
checksum = "ee9e13753df674873f3c4693b240ae5c03245ddc157dfccf7c26db9329af3a11"
|
1117
|
+
dependencies = [
|
1118
|
+
"unicode-normalization",
|
1119
|
+
"unicode-script",
|
1120
|
+
]
|
1121
|
+
|
1122
|
+
[[package]]
|
1123
|
+
name = "unicode-width"
|
1124
|
+
version = "0.1.13"
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1126
|
+
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
1127
|
+
|
1128
|
+
[[package]]
|
1129
|
+
name = "unicode-xid"
|
1130
|
+
version = "0.2.4"
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1132
|
+
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
|
1133
|
+
|
1134
|
+
[[package]]
|
1135
|
+
name = "walkdir"
|
1136
|
+
version = "2.5.0"
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1138
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
1139
|
+
dependencies = [
|
1140
|
+
"same-file",
|
1141
|
+
"winapi-util",
|
1142
|
+
]
|
1143
|
+
|
1144
|
+
[[package]]
|
1145
|
+
name = "wasi"
|
1146
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1148
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
1149
|
+
|
1150
|
+
[[package]]
|
1151
|
+
name = "wasm-bindgen"
|
1152
|
+
version = "0.2.92"
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1154
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
1155
|
+
dependencies = [
|
1156
|
+
"cfg-if",
|
1157
|
+
"wasm-bindgen-macro",
|
1158
|
+
]
|
1159
|
+
|
1160
|
+
[[package]]
|
1161
|
+
name = "wasm-bindgen-backend"
|
1162
|
+
version = "0.2.92"
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1164
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
1165
|
+
dependencies = [
|
1166
|
+
"bumpalo",
|
1167
|
+
"log",
|
1168
|
+
"once_cell",
|
1169
|
+
"proc-macro2",
|
1170
|
+
"quote",
|
1171
|
+
"syn",
|
1172
|
+
"wasm-bindgen-shared",
|
1173
|
+
]
|
1174
|
+
|
1175
|
+
[[package]]
|
1176
|
+
name = "wasm-bindgen-macro"
|
1177
|
+
version = "0.2.92"
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1179
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
1180
|
+
dependencies = [
|
1181
|
+
"quote",
|
1182
|
+
"wasm-bindgen-macro-support",
|
1183
|
+
]
|
1184
|
+
|
1185
|
+
[[package]]
|
1186
|
+
name = "wasm-bindgen-macro-support"
|
1187
|
+
version = "0.2.92"
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1189
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
1190
|
+
dependencies = [
|
1191
|
+
"proc-macro2",
|
1192
|
+
"quote",
|
1193
|
+
"syn",
|
1194
|
+
"wasm-bindgen-backend",
|
1195
|
+
"wasm-bindgen-shared",
|
1196
|
+
]
|
1197
|
+
|
1198
|
+
[[package]]
|
1199
|
+
name = "wasm-bindgen-shared"
|
1200
|
+
version = "0.2.92"
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
1203
|
+
|
1204
|
+
[[package]]
|
1205
|
+
name = "winapi"
|
1206
|
+
version = "0.3.9"
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1208
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
1209
|
+
dependencies = [
|
1210
|
+
"winapi-i686-pc-windows-gnu",
|
1211
|
+
"winapi-x86_64-pc-windows-gnu",
|
1212
|
+
]
|
1213
|
+
|
1214
|
+
[[package]]
|
1215
|
+
name = "winapi-i686-pc-windows-gnu"
|
1216
|
+
version = "0.4.0"
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1218
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
1219
|
+
|
1220
|
+
[[package]]
|
1221
|
+
name = "winapi-util"
|
1222
|
+
version = "0.1.9"
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1224
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1225
|
+
dependencies = [
|
1226
|
+
"windows-sys",
|
1227
|
+
]
|
1228
|
+
|
1229
|
+
[[package]]
|
1230
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
1231
|
+
version = "0.4.0"
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1233
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1234
|
+
|
1235
|
+
[[package]]
|
1236
|
+
name = "windows-core"
|
1237
|
+
version = "0.52.0"
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1239
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
1240
|
+
dependencies = [
|
1241
|
+
"windows-targets",
|
1242
|
+
]
|
1243
|
+
|
1244
|
+
[[package]]
|
1245
|
+
name = "windows-sys"
|
1246
|
+
version = "0.59.0"
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1248
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
1249
|
+
dependencies = [
|
1250
|
+
"windows-targets",
|
1251
|
+
]
|
1252
|
+
|
1253
|
+
[[package]]
|
1254
|
+
name = "windows-targets"
|
1255
|
+
version = "0.52.6"
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1257
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1258
|
+
dependencies = [
|
1259
|
+
"windows_aarch64_gnullvm",
|
1260
|
+
"windows_aarch64_msvc",
|
1261
|
+
"windows_i686_gnu",
|
1262
|
+
"windows_i686_gnullvm",
|
1263
|
+
"windows_i686_msvc",
|
1264
|
+
"windows_x86_64_gnu",
|
1265
|
+
"windows_x86_64_gnullvm",
|
1266
|
+
"windows_x86_64_msvc",
|
1267
|
+
]
|
1268
|
+
|
1269
|
+
[[package]]
|
1270
|
+
name = "windows_aarch64_gnullvm"
|
1271
|
+
version = "0.52.6"
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1273
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1274
|
+
|
1275
|
+
[[package]]
|
1276
|
+
name = "windows_aarch64_msvc"
|
1277
|
+
version = "0.52.6"
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1279
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1280
|
+
|
1281
|
+
[[package]]
|
1282
|
+
name = "windows_i686_gnu"
|
1283
|
+
version = "0.52.6"
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1285
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1286
|
+
|
1287
|
+
[[package]]
|
1288
|
+
name = "windows_i686_gnullvm"
|
1289
|
+
version = "0.52.6"
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1291
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1292
|
+
|
1293
|
+
[[package]]
|
1294
|
+
name = "windows_i686_msvc"
|
1295
|
+
version = "0.52.6"
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1297
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1298
|
+
|
1299
|
+
[[package]]
|
1300
|
+
name = "windows_x86_64_gnu"
|
1301
|
+
version = "0.52.6"
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1303
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1304
|
+
|
1305
|
+
[[package]]
|
1306
|
+
name = "windows_x86_64_gnullvm"
|
1307
|
+
version = "0.52.6"
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1309
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1310
|
+
|
1311
|
+
[[package]]
|
1312
|
+
name = "windows_x86_64_msvc"
|
1313
|
+
version = "0.52.6"
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1315
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|