restate-sdk 0.4.3-aarch64-linux
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/Cargo.lock +1040 -0
- data/Cargo.toml +8 -0
- data/LICENSE +21 -0
- data/README.md +133 -0
- data/ext/restate_internal/Cargo.toml +16 -0
- data/ext/restate_internal/extconf.rb +4 -0
- data/ext/restate_internal/src/lib.rs +1094 -0
- data/lib/restate/3.2/restate_internal.so +0 -0
- data/lib/restate/3.3/restate_internal.so +0 -0
- data/lib/restate/3.4/restate_internal.so +0 -0
- data/lib/restate/4.0/restate_internal.so +0 -0
- data/lib/restate/context.rb +336 -0
- data/lib/restate/discovery.rb +150 -0
- data/lib/restate/durable_future.rb +131 -0
- data/lib/restate/endpoint.rb +69 -0
- data/lib/restate/errors.rb +60 -0
- data/lib/restate/handler.rb +51 -0
- data/lib/restate/serde.rb +313 -0
- data/lib/restate/server.rb +280 -0
- data/lib/restate/server_context.rb +812 -0
- data/lib/restate/service.rb +37 -0
- data/lib/restate/service_dsl.rb +243 -0
- data/lib/restate/testing.rb +197 -0
- data/lib/restate/version.rb +6 -0
- data/lib/restate/virtual_object.rb +58 -0
- data/lib/restate/vm.rb +325 -0
- data/lib/restate/workflow.rb +57 -0
- data/lib/restate.rb +130 -0
- data/lib/tapioca/dsl/compilers/restate.rb +45 -0
- metadata +133 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1040 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anyhow"
|
|
16
|
+
version = "1.0.102"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "autocfg"
|
|
22
|
+
version = "1.5.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "base64"
|
|
28
|
+
version = "0.22.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bindgen"
|
|
34
|
+
version = "0.69.5"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"bitflags",
|
|
39
|
+
"cexpr",
|
|
40
|
+
"clang-sys",
|
|
41
|
+
"itertools 0.12.1",
|
|
42
|
+
"lazy_static",
|
|
43
|
+
"lazycell",
|
|
44
|
+
"proc-macro2",
|
|
45
|
+
"quote",
|
|
46
|
+
"regex",
|
|
47
|
+
"rustc-hash",
|
|
48
|
+
"shlex",
|
|
49
|
+
"syn",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "bitflags"
|
|
54
|
+
version = "2.11.0"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "block-buffer"
|
|
60
|
+
version = "0.11.0-pre.5"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "3ded684142010808eb980d9974ef794da2bcf97d13396143b1515e9f0fb4a10e"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"crypto-common",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "bs58"
|
|
69
|
+
version = "0.5.1"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"tinyvec",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "bumpalo"
|
|
78
|
+
version = "3.20.2"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "bytes"
|
|
84
|
+
version = "1.11.1"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "bytes-utils"
|
|
90
|
+
version = "0.1.4"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"bytes",
|
|
95
|
+
"either",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "cc"
|
|
100
|
+
version = "1.2.56"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
103
|
+
dependencies = [
|
|
104
|
+
"find-msvc-tools",
|
|
105
|
+
"shlex",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "cexpr"
|
|
110
|
+
version = "0.6.0"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"nom",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "cfg-if"
|
|
119
|
+
version = "1.0.4"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "clang-sys"
|
|
125
|
+
version = "1.8.1"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"glob",
|
|
130
|
+
"libc",
|
|
131
|
+
"libloading",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "const-oid"
|
|
136
|
+
version = "0.10.0-pre.2"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "f7e3352a27098ba6b09546e5f13b15165e6a88b5c2723afecb3ea9576b27e3ea"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "cpufeatures"
|
|
142
|
+
version = "0.2.17"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"libc",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "crypto-common"
|
|
151
|
+
version = "0.2.0-pre.5"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "b7aa2ec04f5120b830272a481e8d9d8ba4dda140d2cda59b0f1110d5eb93c38e"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"getrandom",
|
|
156
|
+
"hybrid-array",
|
|
157
|
+
"rand_core",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "deranged"
|
|
162
|
+
version = "0.5.8"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"powerfmt",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "digest"
|
|
171
|
+
version = "0.11.0-pre.8"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "065d93ead7c220b85d5b4be4795d8398eac4ff68b5ee63895de0a3c1fb6edf25"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"block-buffer",
|
|
176
|
+
"const-oid",
|
|
177
|
+
"crypto-common",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "either"
|
|
182
|
+
version = "1.15.0"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "find-msvc-tools"
|
|
188
|
+
version = "0.1.9"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "getrandom"
|
|
194
|
+
version = "0.2.17"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"cfg-if",
|
|
199
|
+
"js-sys",
|
|
200
|
+
"libc",
|
|
201
|
+
"wasi",
|
|
202
|
+
"wasm-bindgen",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "glob"
|
|
207
|
+
version = "0.3.3"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "heck"
|
|
213
|
+
version = "0.5.0"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "hybrid-array"
|
|
219
|
+
version = "0.2.3"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "f2d35805454dc9f8662a98d6d61886ffe26bd465f5960e0e55345c70d5c0d2a9"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"typenum",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "itertools"
|
|
228
|
+
version = "0.12.1"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"either",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "itertools"
|
|
237
|
+
version = "0.14.0"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"either",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "itoa"
|
|
246
|
+
version = "1.0.17"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "js-sys"
|
|
252
|
+
version = "0.3.91"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"once_cell",
|
|
257
|
+
"wasm-bindgen",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "jsonwebtoken"
|
|
262
|
+
version = "9.3.1"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"base64",
|
|
267
|
+
"js-sys",
|
|
268
|
+
"pem",
|
|
269
|
+
"ring",
|
|
270
|
+
"serde",
|
|
271
|
+
"serde_json",
|
|
272
|
+
"simple_asn1",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "lazy_static"
|
|
277
|
+
version = "1.5.0"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "lazycell"
|
|
283
|
+
version = "1.3.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "libc"
|
|
289
|
+
version = "0.2.183"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "libloading"
|
|
295
|
+
version = "0.8.9"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"cfg-if",
|
|
300
|
+
"windows-link",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "log"
|
|
305
|
+
version = "0.4.29"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "magnus"
|
|
311
|
+
version = "0.8.2"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"magnus-macros",
|
|
316
|
+
"rb-sys",
|
|
317
|
+
"rb-sys-env",
|
|
318
|
+
"seq-macro",
|
|
319
|
+
]
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "magnus-macros"
|
|
323
|
+
version = "0.8.0"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"proc-macro2",
|
|
328
|
+
"quote",
|
|
329
|
+
"syn",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "matchers"
|
|
334
|
+
version = "0.2.0"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"regex-automata",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "memchr"
|
|
343
|
+
version = "2.8.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "minimal-lexical"
|
|
349
|
+
version = "0.2.1"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "nom"
|
|
355
|
+
version = "7.1.3"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"memchr",
|
|
360
|
+
"minimal-lexical",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "nu-ansi-term"
|
|
365
|
+
version = "0.50.3"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"windows-sys 0.61.2",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "num-bigint"
|
|
374
|
+
version = "0.4.6"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"num-integer",
|
|
379
|
+
"num-traits",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "num-conv"
|
|
384
|
+
version = "0.2.0"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "num-integer"
|
|
390
|
+
version = "0.1.46"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"num-traits",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "num-traits"
|
|
399
|
+
version = "0.2.19"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"autocfg",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "once_cell"
|
|
408
|
+
version = "1.21.4"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "paste"
|
|
414
|
+
version = "1.0.15"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "pem"
|
|
420
|
+
version = "3.0.6"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"base64",
|
|
425
|
+
"serde_core",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "pin-project-lite"
|
|
430
|
+
version = "0.2.17"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "powerfmt"
|
|
436
|
+
version = "0.2.0"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "proc-macro2"
|
|
442
|
+
version = "1.0.106"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"unicode-ident",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "prost"
|
|
451
|
+
version = "0.13.5"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"bytes",
|
|
456
|
+
"prost-derive",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "prost-derive"
|
|
461
|
+
version = "0.13.5"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"anyhow",
|
|
466
|
+
"itertools 0.14.0",
|
|
467
|
+
"proc-macro2",
|
|
468
|
+
"quote",
|
|
469
|
+
"syn",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "quote"
|
|
474
|
+
version = "1.0.45"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"proc-macro2",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "rand_core"
|
|
483
|
+
version = "0.6.4"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"getrandom",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "rb-sys"
|
|
492
|
+
version = "0.9.124"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"rb-sys-build",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "rb-sys-build"
|
|
501
|
+
version = "0.9.124"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"bindgen",
|
|
506
|
+
"lazy_static",
|
|
507
|
+
"proc-macro2",
|
|
508
|
+
"quote",
|
|
509
|
+
"regex",
|
|
510
|
+
"shell-words",
|
|
511
|
+
"syn",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "rb-sys-env"
|
|
516
|
+
version = "0.2.3"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "regex"
|
|
522
|
+
version = "1.12.3"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"aho-corasick",
|
|
527
|
+
"memchr",
|
|
528
|
+
"regex-automata",
|
|
529
|
+
"regex-syntax",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "regex-automata"
|
|
534
|
+
version = "0.4.14"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"aho-corasick",
|
|
539
|
+
"memchr",
|
|
540
|
+
"regex-syntax",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "regex-syntax"
|
|
545
|
+
version = "0.8.10"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "restate-sdk-shared-core"
|
|
551
|
+
version = "0.7.0"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "dc31df792d23376df8d3a6d4264ec3ce658bf68f0ec5296da43de8377c9352aa"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"base64",
|
|
556
|
+
"bs58",
|
|
557
|
+
"bytes",
|
|
558
|
+
"bytes-utils",
|
|
559
|
+
"jsonwebtoken",
|
|
560
|
+
"paste",
|
|
561
|
+
"prost",
|
|
562
|
+
"ring",
|
|
563
|
+
"serde",
|
|
564
|
+
"sha2",
|
|
565
|
+
"strum",
|
|
566
|
+
"thiserror",
|
|
567
|
+
"tracing",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "restate_internal"
|
|
572
|
+
version = "0.4.3"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"magnus",
|
|
575
|
+
"rb-sys",
|
|
576
|
+
"restate-sdk-shared-core",
|
|
577
|
+
"tracing-subscriber",
|
|
578
|
+
]
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "ring"
|
|
582
|
+
version = "0.17.14"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"cc",
|
|
587
|
+
"cfg-if",
|
|
588
|
+
"getrandom",
|
|
589
|
+
"libc",
|
|
590
|
+
"untrusted",
|
|
591
|
+
"windows-sys 0.52.0",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "rustc-hash"
|
|
596
|
+
version = "1.1.0"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "rustversion"
|
|
602
|
+
version = "1.0.22"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "seq-macro"
|
|
608
|
+
version = "0.3.6"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "serde"
|
|
614
|
+
version = "1.0.228"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"serde_core",
|
|
619
|
+
"serde_derive",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "serde_core"
|
|
624
|
+
version = "1.0.228"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"serde_derive",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "serde_derive"
|
|
633
|
+
version = "1.0.228"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"proc-macro2",
|
|
638
|
+
"quote",
|
|
639
|
+
"syn",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "serde_json"
|
|
644
|
+
version = "1.0.149"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"itoa",
|
|
649
|
+
"memchr",
|
|
650
|
+
"serde",
|
|
651
|
+
"serde_core",
|
|
652
|
+
"zmij",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "sha2"
|
|
657
|
+
version = "0.11.0-pre.3"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "8f33549bf3064b62478926aa89cbfc7c109aab66ae8f0d5d2ef839e482cc30d6"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"cfg-if",
|
|
662
|
+
"cpufeatures",
|
|
663
|
+
"digest",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "sharded-slab"
|
|
668
|
+
version = "0.1.7"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"lazy_static",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "shell-words"
|
|
677
|
+
version = "1.1.1"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "shlex"
|
|
683
|
+
version = "1.3.0"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "simple_asn1"
|
|
689
|
+
version = "0.6.4"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"num-bigint",
|
|
694
|
+
"num-traits",
|
|
695
|
+
"thiserror",
|
|
696
|
+
"time",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "smallvec"
|
|
701
|
+
version = "1.15.1"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "strum"
|
|
707
|
+
version = "0.27.2"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"strum_macros",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "strum_macros"
|
|
716
|
+
version = "0.27.2"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"heck",
|
|
721
|
+
"proc-macro2",
|
|
722
|
+
"quote",
|
|
723
|
+
"syn",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "syn"
|
|
728
|
+
version = "2.0.117"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"proc-macro2",
|
|
733
|
+
"quote",
|
|
734
|
+
"unicode-ident",
|
|
735
|
+
]
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "thiserror"
|
|
739
|
+
version = "2.0.18"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"thiserror-impl",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "thiserror-impl"
|
|
748
|
+
version = "2.0.18"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"proc-macro2",
|
|
753
|
+
"quote",
|
|
754
|
+
"syn",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "thread_local"
|
|
759
|
+
version = "1.1.9"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"cfg-if",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "time"
|
|
768
|
+
version = "0.3.47"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"deranged",
|
|
773
|
+
"itoa",
|
|
774
|
+
"num-conv",
|
|
775
|
+
"powerfmt",
|
|
776
|
+
"serde_core",
|
|
777
|
+
"time-core",
|
|
778
|
+
"time-macros",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "time-core"
|
|
783
|
+
version = "0.1.8"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "time-macros"
|
|
789
|
+
version = "0.2.27"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"num-conv",
|
|
794
|
+
"time-core",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "tinyvec"
|
|
799
|
+
version = "1.10.0"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"tinyvec_macros",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "tinyvec_macros"
|
|
808
|
+
version = "0.1.1"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "tracing"
|
|
814
|
+
version = "0.1.44"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
817
|
+
dependencies = [
|
|
818
|
+
"pin-project-lite",
|
|
819
|
+
"tracing-attributes",
|
|
820
|
+
"tracing-core",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "tracing-attributes"
|
|
825
|
+
version = "0.1.31"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"proc-macro2",
|
|
830
|
+
"quote",
|
|
831
|
+
"syn",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "tracing-core"
|
|
836
|
+
version = "0.1.36"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"once_cell",
|
|
841
|
+
"valuable",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "tracing-log"
|
|
846
|
+
version = "0.2.0"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"log",
|
|
851
|
+
"once_cell",
|
|
852
|
+
"tracing-core",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "tracing-subscriber"
|
|
857
|
+
version = "0.3.23"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"matchers",
|
|
862
|
+
"nu-ansi-term",
|
|
863
|
+
"once_cell",
|
|
864
|
+
"regex-automata",
|
|
865
|
+
"sharded-slab",
|
|
866
|
+
"smallvec",
|
|
867
|
+
"thread_local",
|
|
868
|
+
"tracing",
|
|
869
|
+
"tracing-core",
|
|
870
|
+
"tracing-log",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "typenum"
|
|
875
|
+
version = "1.19.0"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "unicode-ident"
|
|
881
|
+
version = "1.0.24"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "untrusted"
|
|
887
|
+
version = "0.9.0"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "valuable"
|
|
893
|
+
version = "0.1.1"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "wasi"
|
|
899
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "wasm-bindgen"
|
|
905
|
+
version = "0.2.114"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"cfg-if",
|
|
910
|
+
"once_cell",
|
|
911
|
+
"rustversion",
|
|
912
|
+
"wasm-bindgen-macro",
|
|
913
|
+
"wasm-bindgen-shared",
|
|
914
|
+
]
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "wasm-bindgen-macro"
|
|
918
|
+
version = "0.2.114"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"quote",
|
|
923
|
+
"wasm-bindgen-macro-support",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "wasm-bindgen-macro-support"
|
|
928
|
+
version = "0.2.114"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"bumpalo",
|
|
933
|
+
"proc-macro2",
|
|
934
|
+
"quote",
|
|
935
|
+
"syn",
|
|
936
|
+
"wasm-bindgen-shared",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "wasm-bindgen-shared"
|
|
941
|
+
version = "0.2.114"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"unicode-ident",
|
|
946
|
+
]
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "windows-link"
|
|
950
|
+
version = "0.2.1"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "windows-sys"
|
|
956
|
+
version = "0.52.0"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
959
|
+
dependencies = [
|
|
960
|
+
"windows-targets",
|
|
961
|
+
]
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "windows-sys"
|
|
965
|
+
version = "0.61.2"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
968
|
+
dependencies = [
|
|
969
|
+
"windows-link",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "windows-targets"
|
|
974
|
+
version = "0.52.6"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"windows_aarch64_gnullvm",
|
|
979
|
+
"windows_aarch64_msvc",
|
|
980
|
+
"windows_i686_gnu",
|
|
981
|
+
"windows_i686_gnullvm",
|
|
982
|
+
"windows_i686_msvc",
|
|
983
|
+
"windows_x86_64_gnu",
|
|
984
|
+
"windows_x86_64_gnullvm",
|
|
985
|
+
"windows_x86_64_msvc",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "windows_aarch64_gnullvm"
|
|
990
|
+
version = "0.52.6"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "windows_aarch64_msvc"
|
|
996
|
+
version = "0.52.6"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "windows_i686_gnu"
|
|
1002
|
+
version = "0.52.6"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "windows_i686_gnullvm"
|
|
1008
|
+
version = "0.52.6"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "windows_i686_msvc"
|
|
1014
|
+
version = "0.52.6"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "windows_x86_64_gnu"
|
|
1020
|
+
version = "0.52.6"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "windows_x86_64_gnullvm"
|
|
1026
|
+
version = "0.52.6"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "windows_x86_64_msvc"
|
|
1032
|
+
version = "0.52.6"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "zmij"
|
|
1038
|
+
version = "1.0.21"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|