restate-sdk 0.14.0 → 1.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 +4 -4
- data/Cargo.lock +501 -200
- data/ext/restate_internal/Cargo.toml +2 -2
- data/ext/restate_internal/src/lib.rs +117 -30
- data/lib/restate/discovery.rb +1 -1
- data/lib/restate/durable_future.rb +155 -15
- data/lib/restate/server/context.rb +71 -10
- data/lib/restate/version.rb +1 -1
- data/lib/restate/vm.rb +6 -2
- data/lib/restate.rb +28 -0
- data/sig/restate.rbs +26 -0
- metadata +2 -2
data/Cargo.lock
CHANGED
|
@@ -19,9 +19,15 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "autocfg"
|
|
22
|
-
version = "1.5.
|
|
22
|
+
version = "1.5.1"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "base16ct"
|
|
28
|
+
version = "0.2.0"
|
|
23
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
30
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
25
31
|
|
|
26
32
|
[[package]]
|
|
27
33
|
name = "base64"
|
|
@@ -29,6 +35,12 @@ version = "0.22.1"
|
|
|
29
35
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
36
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
31
37
|
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "base64ct"
|
|
40
|
+
version = "1.8.3"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
43
|
+
|
|
32
44
|
[[package]]
|
|
33
45
|
name = "bindgen"
|
|
34
46
|
version = "0.72.1"
|
|
@@ -38,7 +50,7 @@ dependencies = [
|
|
|
38
50
|
"bitflags",
|
|
39
51
|
"cexpr",
|
|
40
52
|
"clang-sys",
|
|
41
|
-
"itertools
|
|
53
|
+
"itertools",
|
|
42
54
|
"proc-macro2",
|
|
43
55
|
"quote",
|
|
44
56
|
"regex",
|
|
@@ -55,11 +67,20 @@ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
|
55
67
|
|
|
56
68
|
[[package]]
|
|
57
69
|
name = "block-buffer"
|
|
58
|
-
version = "0.
|
|
70
|
+
version = "0.10.4"
|
|
59
71
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
-
checksum = "
|
|
72
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
61
73
|
dependencies = [
|
|
62
|
-
"
|
|
74
|
+
"generic-array",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "block-buffer"
|
|
79
|
+
version = "0.12.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"hybrid-array",
|
|
63
84
|
]
|
|
64
85
|
|
|
65
86
|
[[package]]
|
|
@@ -93,16 +114,6 @@ dependencies = [
|
|
|
93
114
|
"either",
|
|
94
115
|
]
|
|
95
116
|
|
|
96
|
-
[[package]]
|
|
97
|
-
name = "cc"
|
|
98
|
-
version = "1.2.56"
|
|
99
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
101
|
-
dependencies = [
|
|
102
|
-
"find-msvc-tools",
|
|
103
|
-
"shlex",
|
|
104
|
-
]
|
|
105
|
-
|
|
106
117
|
[[package]]
|
|
107
118
|
name = "cexpr"
|
|
108
119
|
version = "0.6.0"
|
|
@@ -131,9 +142,15 @@ dependencies = [
|
|
|
131
142
|
|
|
132
143
|
[[package]]
|
|
133
144
|
name = "const-oid"
|
|
134
|
-
version = "0.
|
|
145
|
+
version = "0.9.6"
|
|
135
146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
-
checksum = "
|
|
147
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "const-oid"
|
|
151
|
+
version = "0.10.2"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
137
154
|
|
|
138
155
|
[[package]]
|
|
139
156
|
name = "cpufeatures"
|
|
@@ -144,35 +161,143 @@ dependencies = [
|
|
|
144
161
|
"libc",
|
|
145
162
|
]
|
|
146
163
|
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "cpufeatures"
|
|
166
|
+
version = "0.3.0"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"libc",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "crypto-bigint"
|
|
175
|
+
version = "0.5.5"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"generic-array",
|
|
180
|
+
"rand_core",
|
|
181
|
+
"subtle",
|
|
182
|
+
"zeroize",
|
|
183
|
+
]
|
|
184
|
+
|
|
147
185
|
[[package]]
|
|
148
186
|
name = "crypto-common"
|
|
149
|
-
version = "0.
|
|
187
|
+
version = "0.1.6"
|
|
150
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
-
checksum = "
|
|
189
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"generic-array",
|
|
192
|
+
"typenum",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "crypto-common"
|
|
197
|
+
version = "0.2.2"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
152
200
|
dependencies = [
|
|
153
|
-
"getrandom",
|
|
154
201
|
"hybrid-array",
|
|
155
|
-
"rand_core",
|
|
156
202
|
]
|
|
157
203
|
|
|
158
204
|
[[package]]
|
|
159
|
-
name = "
|
|
160
|
-
version = "
|
|
205
|
+
name = "curve25519-dalek"
|
|
206
|
+
version = "4.1.3"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"cfg-if",
|
|
211
|
+
"cpufeatures 0.2.17",
|
|
212
|
+
"curve25519-dalek-derive",
|
|
213
|
+
"digest 0.10.7",
|
|
214
|
+
"fiat-crypto",
|
|
215
|
+
"rustc_version",
|
|
216
|
+
"subtle",
|
|
217
|
+
"zeroize",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "curve25519-dalek-derive"
|
|
222
|
+
version = "0.1.1"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"proc-macro2",
|
|
227
|
+
"quote",
|
|
228
|
+
"syn",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "der"
|
|
233
|
+
version = "0.7.10"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"const-oid 0.9.6",
|
|
238
|
+
"pem-rfc7468",
|
|
239
|
+
"zeroize",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "digest"
|
|
244
|
+
version = "0.10.7"
|
|
161
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
-
checksum = "
|
|
246
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
163
247
|
dependencies = [
|
|
164
|
-
"
|
|
248
|
+
"block-buffer 0.10.4",
|
|
249
|
+
"const-oid 0.9.6",
|
|
250
|
+
"crypto-common 0.1.6",
|
|
251
|
+
"subtle",
|
|
165
252
|
]
|
|
166
253
|
|
|
167
254
|
[[package]]
|
|
168
255
|
name = "digest"
|
|
169
|
-
version = "0.11.
|
|
256
|
+
version = "0.11.3"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"block-buffer 0.12.0",
|
|
261
|
+
"const-oid 0.10.2",
|
|
262
|
+
"crypto-common 0.2.2",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "ecdsa"
|
|
267
|
+
version = "0.16.9"
|
|
170
268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
-
checksum = "
|
|
269
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
172
270
|
dependencies = [
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
271
|
+
"der",
|
|
272
|
+
"digest 0.10.7",
|
|
273
|
+
"elliptic-curve",
|
|
274
|
+
"rfc6979",
|
|
275
|
+
"signature",
|
|
276
|
+
"spki",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "ed25519"
|
|
281
|
+
version = "2.2.3"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"pkcs8",
|
|
286
|
+
"signature",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "ed25519-dalek"
|
|
291
|
+
version = "2.2.0"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"curve25519-dalek",
|
|
296
|
+
"ed25519",
|
|
297
|
+
"serde",
|
|
298
|
+
"sha2 0.10.9",
|
|
299
|
+
"subtle",
|
|
300
|
+
"zeroize",
|
|
176
301
|
]
|
|
177
302
|
|
|
178
303
|
[[package]]
|
|
@@ -182,10 +307,52 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
182
307
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
183
308
|
|
|
184
309
|
[[package]]
|
|
185
|
-
name = "
|
|
186
|
-
version = "0.
|
|
310
|
+
name = "elliptic-curve"
|
|
311
|
+
version = "0.13.8"
|
|
187
312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
-
checksum = "
|
|
313
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"base16ct",
|
|
316
|
+
"crypto-bigint",
|
|
317
|
+
"digest 0.10.7",
|
|
318
|
+
"ff",
|
|
319
|
+
"generic-array",
|
|
320
|
+
"group",
|
|
321
|
+
"hkdf",
|
|
322
|
+
"pem-rfc7468",
|
|
323
|
+
"pkcs8",
|
|
324
|
+
"rand_core",
|
|
325
|
+
"sec1",
|
|
326
|
+
"subtle",
|
|
327
|
+
"zeroize",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "ff"
|
|
332
|
+
version = "0.13.1"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"rand_core",
|
|
337
|
+
"subtle",
|
|
338
|
+
]
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "fiat-crypto"
|
|
342
|
+
version = "0.2.9"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "generic-array"
|
|
348
|
+
version = "0.14.9"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"typenum",
|
|
353
|
+
"version_check",
|
|
354
|
+
"zeroize",
|
|
355
|
+
]
|
|
189
356
|
|
|
190
357
|
[[package]]
|
|
191
358
|
name = "getrandom"
|
|
@@ -194,10 +361,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
194
361
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
195
362
|
dependencies = [
|
|
196
363
|
"cfg-if",
|
|
197
|
-
"js-sys",
|
|
198
364
|
"libc",
|
|
199
365
|
"wasi",
|
|
200
|
-
"wasm-bindgen",
|
|
201
366
|
]
|
|
202
367
|
|
|
203
368
|
[[package]]
|
|
@@ -206,6 +371,17 @@ version = "0.3.3"
|
|
|
206
371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
372
|
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
208
373
|
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "group"
|
|
376
|
+
version = "0.13.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"ff",
|
|
381
|
+
"rand_core",
|
|
382
|
+
"subtle",
|
|
383
|
+
]
|
|
384
|
+
|
|
209
385
|
[[package]]
|
|
210
386
|
name = "heck"
|
|
211
387
|
version = "0.5.0"
|
|
@@ -213,28 +389,37 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
213
389
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
214
390
|
|
|
215
391
|
[[package]]
|
|
216
|
-
name = "
|
|
217
|
-
version = "0.
|
|
392
|
+
name = "hkdf"
|
|
393
|
+
version = "0.12.4"
|
|
218
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
395
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
220
396
|
dependencies = [
|
|
221
|
-
"
|
|
397
|
+
"hmac",
|
|
222
398
|
]
|
|
223
399
|
|
|
224
400
|
[[package]]
|
|
225
|
-
name = "
|
|
401
|
+
name = "hmac"
|
|
226
402
|
version = "0.12.1"
|
|
227
403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
-
checksum = "
|
|
404
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
229
405
|
dependencies = [
|
|
230
|
-
"
|
|
406
|
+
"digest 0.10.7",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "hybrid-array"
|
|
411
|
+
version = "0.4.12"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
414
|
+
dependencies = [
|
|
415
|
+
"typenum",
|
|
231
416
|
]
|
|
232
417
|
|
|
233
418
|
[[package]]
|
|
234
419
|
name = "itertools"
|
|
235
|
-
version = "0.
|
|
420
|
+
version = "0.12.1"
|
|
236
421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
-
checksum = "
|
|
422
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
238
423
|
dependencies = [
|
|
239
424
|
"either",
|
|
240
425
|
]
|
|
@@ -257,17 +442,24 @@ dependencies = [
|
|
|
257
442
|
|
|
258
443
|
[[package]]
|
|
259
444
|
name = "jsonwebtoken"
|
|
260
|
-
version = "
|
|
445
|
+
version = "10.4.0"
|
|
261
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
-
checksum = "
|
|
447
|
+
checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
|
|
263
448
|
dependencies = [
|
|
264
449
|
"base64",
|
|
450
|
+
"ed25519-dalek",
|
|
451
|
+
"getrandom",
|
|
452
|
+
"hmac",
|
|
265
453
|
"js-sys",
|
|
266
|
-
"
|
|
267
|
-
"
|
|
454
|
+
"p256",
|
|
455
|
+
"p384",
|
|
456
|
+
"rand",
|
|
457
|
+
"rsa",
|
|
268
458
|
"serde",
|
|
269
459
|
"serde_json",
|
|
270
|
-
"
|
|
460
|
+
"sha2 0.10.9",
|
|
461
|
+
"signature",
|
|
462
|
+
"zeroize",
|
|
271
463
|
]
|
|
272
464
|
|
|
273
465
|
[[package]]
|
|
@@ -275,6 +467,9 @@ name = "lazy_static"
|
|
|
275
467
|
version = "1.5.0"
|
|
276
468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
469
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"spin",
|
|
472
|
+
]
|
|
278
473
|
|
|
279
474
|
[[package]]
|
|
280
475
|
name = "libc"
|
|
@@ -292,6 +487,12 @@ dependencies = [
|
|
|
292
487
|
"windows-link",
|
|
293
488
|
]
|
|
294
489
|
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "libm"
|
|
492
|
+
version = "0.2.16"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
495
|
+
|
|
295
496
|
[[package]]
|
|
296
497
|
name = "log"
|
|
297
498
|
version = "0.4.29"
|
|
@@ -358,25 +559,25 @@ version = "0.50.3"
|
|
|
358
559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
560
|
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
360
561
|
dependencies = [
|
|
361
|
-
"windows-sys
|
|
562
|
+
"windows-sys",
|
|
362
563
|
]
|
|
363
564
|
|
|
364
565
|
[[package]]
|
|
365
|
-
name = "num-bigint"
|
|
366
|
-
version = "0.
|
|
566
|
+
name = "num-bigint-dig"
|
|
567
|
+
version = "0.8.6"
|
|
367
568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
-
checksum = "
|
|
569
|
+
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
369
570
|
dependencies = [
|
|
571
|
+
"lazy_static",
|
|
572
|
+
"libm",
|
|
370
573
|
"num-integer",
|
|
574
|
+
"num-iter",
|
|
371
575
|
"num-traits",
|
|
576
|
+
"rand",
|
|
577
|
+
"smallvec",
|
|
578
|
+
"zeroize",
|
|
372
579
|
]
|
|
373
580
|
|
|
374
|
-
[[package]]
|
|
375
|
-
name = "num-conv"
|
|
376
|
-
version = "0.2.0"
|
|
377
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
-
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
|
|
379
|
-
|
|
380
581
|
[[package]]
|
|
381
582
|
name = "num-integer"
|
|
382
583
|
version = "0.1.46"
|
|
@@ -386,6 +587,17 @@ dependencies = [
|
|
|
386
587
|
"num-traits",
|
|
387
588
|
]
|
|
388
589
|
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "num-iter"
|
|
592
|
+
version = "0.1.45"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"autocfg",
|
|
597
|
+
"num-integer",
|
|
598
|
+
"num-traits",
|
|
599
|
+
]
|
|
600
|
+
|
|
389
601
|
[[package]]
|
|
390
602
|
name = "num-traits"
|
|
391
603
|
version = "0.2.19"
|
|
@@ -393,6 +605,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
393
605
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
394
606
|
dependencies = [
|
|
395
607
|
"autocfg",
|
|
608
|
+
"libm",
|
|
396
609
|
]
|
|
397
610
|
|
|
398
611
|
[[package]]
|
|
@@ -402,19 +615,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
402
615
|
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
403
616
|
|
|
404
617
|
[[package]]
|
|
405
|
-
name = "
|
|
406
|
-
version = "
|
|
618
|
+
name = "p256"
|
|
619
|
+
version = "0.13.2"
|
|
407
620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
-
checksum = "
|
|
621
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"ecdsa",
|
|
624
|
+
"elliptic-curve",
|
|
625
|
+
"primeorder",
|
|
626
|
+
"sha2 0.10.9",
|
|
627
|
+
]
|
|
409
628
|
|
|
410
629
|
[[package]]
|
|
411
|
-
name = "
|
|
412
|
-
version = "
|
|
630
|
+
name = "p384"
|
|
631
|
+
version = "0.13.1"
|
|
413
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
-
checksum = "
|
|
633
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
415
634
|
dependencies = [
|
|
416
|
-
"
|
|
417
|
-
"
|
|
635
|
+
"ecdsa",
|
|
636
|
+
"elliptic-curve",
|
|
637
|
+
"primeorder",
|
|
638
|
+
"sha2 0.10.9",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "pastey"
|
|
643
|
+
version = "0.2.3"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "pem-rfc7468"
|
|
649
|
+
version = "0.7.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"base64ct",
|
|
418
654
|
]
|
|
419
655
|
|
|
420
656
|
[[package]]
|
|
@@ -424,10 +660,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
424
660
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
425
661
|
|
|
426
662
|
[[package]]
|
|
427
|
-
name = "
|
|
428
|
-
version = "0.
|
|
663
|
+
name = "pkcs1"
|
|
664
|
+
version = "0.7.5"
|
|
429
665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
666
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"der",
|
|
669
|
+
"pkcs8",
|
|
670
|
+
"spki",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "pkcs8"
|
|
675
|
+
version = "0.10.2"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"der",
|
|
680
|
+
"spki",
|
|
681
|
+
]
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "ppv-lite86"
|
|
685
|
+
version = "0.2.21"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"zerocopy",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "primeorder"
|
|
694
|
+
version = "0.13.6"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"elliptic-curve",
|
|
699
|
+
]
|
|
431
700
|
|
|
432
701
|
[[package]]
|
|
433
702
|
name = "proc-macro2"
|
|
@@ -440,9 +709,9 @@ dependencies = [
|
|
|
440
709
|
|
|
441
710
|
[[package]]
|
|
442
711
|
name = "prost"
|
|
443
|
-
version = "0.
|
|
712
|
+
version = "0.14.3"
|
|
444
713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
-
checksum = "
|
|
714
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
446
715
|
dependencies = [
|
|
447
716
|
"bytes",
|
|
448
717
|
"prost-derive",
|
|
@@ -450,12 +719,12 @@ dependencies = [
|
|
|
450
719
|
|
|
451
720
|
[[package]]
|
|
452
721
|
name = "prost-derive"
|
|
453
|
-
version = "0.
|
|
722
|
+
version = "0.14.3"
|
|
454
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
-
checksum = "
|
|
724
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
456
725
|
dependencies = [
|
|
457
726
|
"anyhow",
|
|
458
|
-
"itertools
|
|
727
|
+
"itertools",
|
|
459
728
|
"proc-macro2",
|
|
460
729
|
"quote",
|
|
461
730
|
"syn",
|
|
@@ -470,6 +739,27 @@ dependencies = [
|
|
|
470
739
|
"proc-macro2",
|
|
471
740
|
]
|
|
472
741
|
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "rand"
|
|
744
|
+
version = "0.8.6"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"libc",
|
|
749
|
+
"rand_chacha",
|
|
750
|
+
"rand_core",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "rand_chacha"
|
|
755
|
+
version = "0.3.1"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"ppv-lite86",
|
|
760
|
+
"rand_core",
|
|
761
|
+
]
|
|
762
|
+
|
|
473
763
|
[[package]]
|
|
474
764
|
name = "rand_core"
|
|
475
765
|
version = "0.6.4"
|
|
@@ -540,20 +830,19 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
|
540
830
|
|
|
541
831
|
[[package]]
|
|
542
832
|
name = "restate-sdk-shared-core"
|
|
543
|
-
version = "
|
|
833
|
+
version = "7.0.0"
|
|
544
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
-
checksum = "
|
|
835
|
+
checksum = "9bf02583379fc28d6386bd864629ba6553ce942124956b862fa9e95a4d836558"
|
|
546
836
|
dependencies = [
|
|
547
837
|
"base64",
|
|
548
838
|
"bs58",
|
|
549
839
|
"bytes",
|
|
550
840
|
"bytes-utils",
|
|
551
841
|
"jsonwebtoken",
|
|
552
|
-
"
|
|
842
|
+
"pastey",
|
|
553
843
|
"prost",
|
|
554
|
-
"ring",
|
|
555
844
|
"serde",
|
|
556
|
-
"sha2",
|
|
845
|
+
"sha2 0.11.0",
|
|
557
846
|
"strum",
|
|
558
847
|
"thiserror",
|
|
559
848
|
"tracing",
|
|
@@ -561,7 +850,7 @@ dependencies = [
|
|
|
561
850
|
|
|
562
851
|
[[package]]
|
|
563
852
|
name = "restate_internal"
|
|
564
|
-
version = "
|
|
853
|
+
version = "1.1.0"
|
|
565
854
|
dependencies = [
|
|
566
855
|
"magnus",
|
|
567
856
|
"rb-sys",
|
|
@@ -570,17 +859,33 @@ dependencies = [
|
|
|
570
859
|
]
|
|
571
860
|
|
|
572
861
|
[[package]]
|
|
573
|
-
name = "
|
|
574
|
-
version = "0.
|
|
862
|
+
name = "rfc6979"
|
|
863
|
+
version = "0.4.0"
|
|
575
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
-
checksum = "
|
|
865
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
577
866
|
dependencies = [
|
|
578
|
-
"
|
|
579
|
-
"
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
867
|
+
"hmac",
|
|
868
|
+
"subtle",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "rsa"
|
|
873
|
+
version = "0.9.10"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"const-oid 0.9.6",
|
|
878
|
+
"digest 0.10.7",
|
|
879
|
+
"num-bigint-dig",
|
|
880
|
+
"num-integer",
|
|
881
|
+
"num-traits",
|
|
882
|
+
"pkcs1",
|
|
883
|
+
"pkcs8",
|
|
884
|
+
"rand_core",
|
|
885
|
+
"signature",
|
|
886
|
+
"spki",
|
|
887
|
+
"subtle",
|
|
888
|
+
"zeroize",
|
|
584
889
|
]
|
|
585
890
|
|
|
586
891
|
[[package]]
|
|
@@ -589,12 +894,41 @@ version = "2.1.2"
|
|
|
589
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
895
|
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
591
896
|
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "rustc_version"
|
|
899
|
+
version = "0.4.1"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"semver",
|
|
904
|
+
]
|
|
905
|
+
|
|
592
906
|
[[package]]
|
|
593
907
|
name = "rustversion"
|
|
594
908
|
version = "1.0.22"
|
|
595
909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
910
|
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
597
911
|
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "sec1"
|
|
914
|
+
version = "0.7.3"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"base16ct",
|
|
919
|
+
"der",
|
|
920
|
+
"generic-array",
|
|
921
|
+
"pkcs8",
|
|
922
|
+
"subtle",
|
|
923
|
+
"zeroize",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "semver"
|
|
928
|
+
version = "1.0.28"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
931
|
+
|
|
598
932
|
[[package]]
|
|
599
933
|
name = "seq-macro"
|
|
600
934
|
version = "0.3.6"
|
|
@@ -646,13 +980,24 @@ dependencies = [
|
|
|
646
980
|
|
|
647
981
|
[[package]]
|
|
648
982
|
name = "sha2"
|
|
649
|
-
version = "0.
|
|
983
|
+
version = "0.10.9"
|
|
650
984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
-
checksum = "
|
|
985
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
652
986
|
dependencies = [
|
|
653
987
|
"cfg-if",
|
|
654
|
-
"cpufeatures",
|
|
655
|
-
"digest",
|
|
988
|
+
"cpufeatures 0.2.17",
|
|
989
|
+
"digest 0.10.7",
|
|
990
|
+
]
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "sha2"
|
|
994
|
+
version = "0.11.0"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"cfg-if",
|
|
999
|
+
"cpufeatures 0.3.0",
|
|
1000
|
+
"digest 0.11.3",
|
|
656
1001
|
]
|
|
657
1002
|
|
|
658
1003
|
[[package]]
|
|
@@ -677,15 +1022,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
677
1022
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
678
1023
|
|
|
679
1024
|
[[package]]
|
|
680
|
-
name = "
|
|
681
|
-
version = "
|
|
1025
|
+
name = "signature"
|
|
1026
|
+
version = "2.2.0"
|
|
682
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
-
checksum = "
|
|
1028
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
684
1029
|
dependencies = [
|
|
685
|
-
"
|
|
686
|
-
"
|
|
687
|
-
"thiserror",
|
|
688
|
-
"time",
|
|
1030
|
+
"digest 0.10.7",
|
|
1031
|
+
"rand_core",
|
|
689
1032
|
]
|
|
690
1033
|
|
|
691
1034
|
[[package]]
|
|
@@ -694,6 +1037,22 @@ version = "1.15.1"
|
|
|
694
1037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
1038
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
696
1039
|
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "spin"
|
|
1042
|
+
version = "0.9.8"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "spki"
|
|
1048
|
+
version = "0.7.3"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"base64ct",
|
|
1053
|
+
"der",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
697
1056
|
[[package]]
|
|
698
1057
|
name = "strum"
|
|
699
1058
|
version = "0.27.2"
|
|
@@ -715,6 +1074,12 @@ dependencies = [
|
|
|
715
1074
|
"syn",
|
|
716
1075
|
]
|
|
717
1076
|
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "subtle"
|
|
1079
|
+
version = "2.6.1"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1082
|
+
|
|
718
1083
|
[[package]]
|
|
719
1084
|
name = "syn"
|
|
720
1085
|
version = "2.0.117"
|
|
@@ -755,37 +1120,6 @@ dependencies = [
|
|
|
755
1120
|
"cfg-if",
|
|
756
1121
|
]
|
|
757
1122
|
|
|
758
|
-
[[package]]
|
|
759
|
-
name = "time"
|
|
760
|
-
version = "0.3.47"
|
|
761
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
-
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
763
|
-
dependencies = [
|
|
764
|
-
"deranged",
|
|
765
|
-
"itoa",
|
|
766
|
-
"num-conv",
|
|
767
|
-
"powerfmt",
|
|
768
|
-
"serde_core",
|
|
769
|
-
"time-core",
|
|
770
|
-
"time-macros",
|
|
771
|
-
]
|
|
772
|
-
|
|
773
|
-
[[package]]
|
|
774
|
-
name = "time-core"
|
|
775
|
-
version = "0.1.8"
|
|
776
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
778
|
-
|
|
779
|
-
[[package]]
|
|
780
|
-
name = "time-macros"
|
|
781
|
-
version = "0.2.27"
|
|
782
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
-
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
784
|
-
dependencies = [
|
|
785
|
-
"num-conv",
|
|
786
|
-
"time-core",
|
|
787
|
-
]
|
|
788
|
-
|
|
789
1123
|
[[package]]
|
|
790
1124
|
name = "tinyvec"
|
|
791
1125
|
version = "1.10.0"
|
|
@@ -864,9 +1198,9 @@ dependencies = [
|
|
|
864
1198
|
|
|
865
1199
|
[[package]]
|
|
866
1200
|
name = "typenum"
|
|
867
|
-
version = "1.
|
|
1201
|
+
version = "1.20.0"
|
|
868
1202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
-
checksum = "
|
|
1203
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
870
1204
|
|
|
871
1205
|
[[package]]
|
|
872
1206
|
name = "unicode-ident"
|
|
@@ -874,18 +1208,18 @@ version = "1.0.24"
|
|
|
874
1208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
1209
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
876
1210
|
|
|
877
|
-
[[package]]
|
|
878
|
-
name = "untrusted"
|
|
879
|
-
version = "0.9.0"
|
|
880
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
-
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
882
|
-
|
|
883
1211
|
[[package]]
|
|
884
1212
|
name = "valuable"
|
|
885
1213
|
version = "0.1.1"
|
|
886
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
1215
|
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
888
1216
|
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "version_check"
|
|
1219
|
+
version = "0.9.5"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1222
|
+
|
|
889
1223
|
[[package]]
|
|
890
1224
|
name = "wasi"
|
|
891
1225
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
@@ -943,15 +1277,6 @@ version = "0.2.1"
|
|
|
943
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
1278
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
945
1279
|
|
|
946
|
-
[[package]]
|
|
947
|
-
name = "windows-sys"
|
|
948
|
-
version = "0.52.0"
|
|
949
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
-
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
951
|
-
dependencies = [
|
|
952
|
-
"windows-targets",
|
|
953
|
-
]
|
|
954
|
-
|
|
955
1280
|
[[package]]
|
|
956
1281
|
name = "windows-sys"
|
|
957
1282
|
version = "0.61.2"
|
|
@@ -962,68 +1287,44 @@ dependencies = [
|
|
|
962
1287
|
]
|
|
963
1288
|
|
|
964
1289
|
[[package]]
|
|
965
|
-
name = "
|
|
966
|
-
version = "0.52
|
|
1290
|
+
name = "zerocopy"
|
|
1291
|
+
version = "0.8.52"
|
|
967
1292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
-
checksum = "
|
|
1293
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
969
1294
|
dependencies = [
|
|
970
|
-
"
|
|
971
|
-
"windows_aarch64_msvc",
|
|
972
|
-
"windows_i686_gnu",
|
|
973
|
-
"windows_i686_gnullvm",
|
|
974
|
-
"windows_i686_msvc",
|
|
975
|
-
"windows_x86_64_gnu",
|
|
976
|
-
"windows_x86_64_gnullvm",
|
|
977
|
-
"windows_x86_64_msvc",
|
|
1295
|
+
"zerocopy-derive",
|
|
978
1296
|
]
|
|
979
1297
|
|
|
980
1298
|
[[package]]
|
|
981
|
-
name = "
|
|
982
|
-
version = "0.52
|
|
983
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
985
|
-
|
|
986
|
-
[[package]]
|
|
987
|
-
name = "windows_aarch64_msvc"
|
|
988
|
-
version = "0.52.6"
|
|
989
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
-
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
991
|
-
|
|
992
|
-
[[package]]
|
|
993
|
-
name = "windows_i686_gnu"
|
|
994
|
-
version = "0.52.6"
|
|
995
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
-
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
997
|
-
|
|
998
|
-
[[package]]
|
|
999
|
-
name = "windows_i686_gnullvm"
|
|
1000
|
-
version = "0.52.6"
|
|
1299
|
+
name = "zerocopy-derive"
|
|
1300
|
+
version = "0.8.52"
|
|
1001
1301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
-
checksum = "
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1009
|
-
|
|
1010
|
-
[[package]]
|
|
1011
|
-
name = "windows_x86_64_gnu"
|
|
1012
|
-
version = "0.52.6"
|
|
1013
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
|
-
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1302
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"proc-macro2",
|
|
1305
|
+
"quote",
|
|
1306
|
+
"syn",
|
|
1307
|
+
]
|
|
1015
1308
|
|
|
1016
1309
|
[[package]]
|
|
1017
|
-
name = "
|
|
1018
|
-
version = "
|
|
1310
|
+
name = "zeroize"
|
|
1311
|
+
version = "1.8.2"
|
|
1019
1312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
-
checksum = "
|
|
1313
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1314
|
+
dependencies = [
|
|
1315
|
+
"zeroize_derive",
|
|
1316
|
+
]
|
|
1021
1317
|
|
|
1022
1318
|
[[package]]
|
|
1023
|
-
name = "
|
|
1024
|
-
version = "
|
|
1319
|
+
name = "zeroize_derive"
|
|
1320
|
+
version = "1.4.3"
|
|
1025
1321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
-
checksum = "
|
|
1322
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"proc-macro2",
|
|
1325
|
+
"quote",
|
|
1326
|
+
"syn",
|
|
1327
|
+
]
|
|
1027
1328
|
|
|
1028
1329
|
[[package]]
|
|
1029
1330
|
name = "zmij"
|