@caatinga/cli 0.2.1 → 0.2.2
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.
- package/README.md +11 -4
- package/dist/index.js +325 -38
- package/package.json +3 -3
- package/templates/marketplace-with-token/README.md +4 -2
- package/templates/marketplace-with-token/caatinga.config.ts +2 -2
- package/templates/marketplace-with-token/caatinga.template.json +1 -1
- package/templates/marketplace-with-token/contracts/marketplace/Cargo.lock +1731 -0
- package/templates/marketplace-with-token/contracts/marketplace/Cargo.toml +1 -0
- package/templates/marketplace-with-token/contracts/marketplace/src/lib.rs +31 -1
- package/templates/marketplace-with-token/contracts/token/Cargo.lock +1731 -0
- package/templates/marketplace-with-token/contracts/token/Cargo.toml +1 -0
- package/templates/marketplace-with-token/index.html +12 -0
- package/templates/marketplace-with-token/package.json +14 -3
- package/templates/marketplace-with-token/src/App.tsx +57 -0
- package/templates/marketplace-with-token/src/main.ts +3 -1
- package/templates/marketplace-with-token/src/main.tsx +10 -0
- package/templates/marketplace-with-token/src/styles.css +157 -0
- package/templates/marketplace-with-token/tsconfig.json +14 -4
- package/templates/marketplace-with-token/vite.config.ts +6 -0
- package/templates/react-vite-counter/README.md +1 -1
- package/templates/react-vite-counter/caatinga.artifacts.json +10 -0
- package/templates/react-vite-counter/caatinga.config.ts +1 -1
- package/templates/react-vite-counter/caatinga.template.json +1 -1
- package/templates/react-vite-counter/contracts/counter/Cargo.lock +1731 -0
- package/templates/react-vite-counter/contracts/counter/Cargo.toml +1 -0
- package/templates/react-vite-counter/package.json +3 -3
- package/templates/react-vite-counter/src/caatinga.ts +20 -0
- package/templates/react-vite-counter/src/components/CounterCard.tsx +40 -3
- package/templates/react-vite-counter/src/components/WalletButton.tsx +58 -5
- package/templates/react-vite-counter/src/contracts/generated/counter.ts +49 -0
- package/templates/react-vite-counter/src/styles.css +21 -0
- package/templates/react-vite-counter/tsconfig.json +1 -1
- package/templates/react-vite-counter/src/contracts/generated/.gitkeep +0 -1
|
@@ -0,0 +1,1731 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "android_system_properties"
|
|
19
|
+
version = "0.1.5"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"libc",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "arbitrary"
|
|
28
|
+
version = "1.3.2"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"derive_arbitrary",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "ark-bls12-381"
|
|
37
|
+
version = "0.4.0"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"ark-ec",
|
|
42
|
+
"ark-ff",
|
|
43
|
+
"ark-serialize",
|
|
44
|
+
"ark-std",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "ark-ec"
|
|
49
|
+
version = "0.4.2"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"ark-ff",
|
|
54
|
+
"ark-poly",
|
|
55
|
+
"ark-serialize",
|
|
56
|
+
"ark-std",
|
|
57
|
+
"derivative",
|
|
58
|
+
"hashbrown 0.13.2",
|
|
59
|
+
"itertools",
|
|
60
|
+
"num-traits",
|
|
61
|
+
"zeroize",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "ark-ff"
|
|
66
|
+
version = "0.4.2"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"ark-ff-asm",
|
|
71
|
+
"ark-ff-macros",
|
|
72
|
+
"ark-serialize",
|
|
73
|
+
"ark-std",
|
|
74
|
+
"derivative",
|
|
75
|
+
"digest",
|
|
76
|
+
"itertools",
|
|
77
|
+
"num-bigint",
|
|
78
|
+
"num-traits",
|
|
79
|
+
"paste",
|
|
80
|
+
"rustc_version",
|
|
81
|
+
"zeroize",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "ark-ff-asm"
|
|
86
|
+
version = "0.4.2"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"quote",
|
|
91
|
+
"syn 1.0.109",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "ark-ff-macros"
|
|
96
|
+
version = "0.4.2"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"num-bigint",
|
|
101
|
+
"num-traits",
|
|
102
|
+
"proc-macro2",
|
|
103
|
+
"quote",
|
|
104
|
+
"syn 1.0.109",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "ark-poly"
|
|
109
|
+
version = "0.4.2"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"ark-ff",
|
|
114
|
+
"ark-serialize",
|
|
115
|
+
"ark-std",
|
|
116
|
+
"derivative",
|
|
117
|
+
"hashbrown 0.13.2",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "ark-serialize"
|
|
122
|
+
version = "0.4.2"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"ark-serialize-derive",
|
|
127
|
+
"ark-std",
|
|
128
|
+
"digest",
|
|
129
|
+
"num-bigint",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "ark-serialize-derive"
|
|
134
|
+
version = "0.4.2"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "ae3281bc6d0fd7e549af32b52511e1302185bd688fd3359fa36423346ff682ea"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"proc-macro2",
|
|
139
|
+
"quote",
|
|
140
|
+
"syn 1.0.109",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "ark-std"
|
|
145
|
+
version = "0.4.0"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"num-traits",
|
|
150
|
+
"rand",
|
|
151
|
+
]
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "autocfg"
|
|
155
|
+
version = "1.5.0"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "base16ct"
|
|
161
|
+
version = "0.2.0"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "base64"
|
|
167
|
+
version = "0.13.1"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "base64"
|
|
173
|
+
version = "0.22.1"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "base64ct"
|
|
179
|
+
version = "1.7.3"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "block-buffer"
|
|
185
|
+
version = "0.10.4"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"generic-array",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "bumpalo"
|
|
194
|
+
version = "3.20.2"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "bytes-lit"
|
|
200
|
+
version = "0.0.5"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "0adabf37211a5276e46335feabcbb1530c95eb3fdf85f324c7db942770aa025d"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"num-bigint",
|
|
205
|
+
"proc-macro2",
|
|
206
|
+
"quote",
|
|
207
|
+
"syn 2.0.117",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "cc"
|
|
212
|
+
version = "1.2.62"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
215
|
+
dependencies = [
|
|
216
|
+
"find-msvc-tools",
|
|
217
|
+
"shlex",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "cfg-if"
|
|
222
|
+
version = "1.0.4"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "chrono"
|
|
228
|
+
version = "0.4.44"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"iana-time-zone",
|
|
233
|
+
"num-traits",
|
|
234
|
+
"serde",
|
|
235
|
+
"windows-link",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "const-oid"
|
|
240
|
+
version = "0.9.6"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "core-foundation-sys"
|
|
246
|
+
version = "0.8.7"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "cpufeatures"
|
|
252
|
+
version = "0.2.17"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"libc",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "crate-git-revision"
|
|
261
|
+
version = "0.0.6"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "c521bf1f43d31ed2f73441775ed31935d77901cb3451e44b38a1c1612fcbaf98"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"serde",
|
|
266
|
+
"serde_derive",
|
|
267
|
+
"serde_json",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "crypto-bigint"
|
|
272
|
+
version = "0.5.5"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"generic-array",
|
|
277
|
+
"rand_core",
|
|
278
|
+
"subtle",
|
|
279
|
+
"zeroize",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "crypto-common"
|
|
284
|
+
version = "0.1.6"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"generic-array",
|
|
289
|
+
"typenum",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "ctor"
|
|
294
|
+
version = "0.2.9"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"quote",
|
|
299
|
+
"syn 2.0.117",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "curve25519-dalek"
|
|
304
|
+
version = "4.1.3"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"cfg-if",
|
|
309
|
+
"cpufeatures",
|
|
310
|
+
"curve25519-dalek-derive",
|
|
311
|
+
"digest",
|
|
312
|
+
"fiat-crypto",
|
|
313
|
+
"rustc_version",
|
|
314
|
+
"subtle",
|
|
315
|
+
"zeroize",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "curve25519-dalek-derive"
|
|
320
|
+
version = "0.1.1"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"proc-macro2",
|
|
325
|
+
"quote",
|
|
326
|
+
"syn 2.0.117",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "darling"
|
|
331
|
+
version = "0.20.11"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"darling_core 0.20.11",
|
|
336
|
+
"darling_macro 0.20.11",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "darling"
|
|
341
|
+
version = "0.21.3"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"darling_core 0.21.3",
|
|
346
|
+
"darling_macro 0.21.3",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "darling_core"
|
|
351
|
+
version = "0.20.11"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"fnv",
|
|
356
|
+
"ident_case",
|
|
357
|
+
"proc-macro2",
|
|
358
|
+
"quote",
|
|
359
|
+
"strsim",
|
|
360
|
+
"syn 2.0.117",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "darling_core"
|
|
365
|
+
version = "0.21.3"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"fnv",
|
|
370
|
+
"ident_case",
|
|
371
|
+
"proc-macro2",
|
|
372
|
+
"quote",
|
|
373
|
+
"strsim",
|
|
374
|
+
"syn 2.0.117",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "darling_macro"
|
|
379
|
+
version = "0.20.11"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"darling_core 0.20.11",
|
|
384
|
+
"quote",
|
|
385
|
+
"syn 2.0.117",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "darling_macro"
|
|
390
|
+
version = "0.21.3"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"darling_core 0.21.3",
|
|
395
|
+
"quote",
|
|
396
|
+
"syn 2.0.117",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "data-encoding"
|
|
401
|
+
version = "2.11.0"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "der"
|
|
407
|
+
version = "0.7.10"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"const-oid",
|
|
412
|
+
"zeroize",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "deranged"
|
|
417
|
+
version = "0.5.5"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"powerfmt",
|
|
422
|
+
"serde_core",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "derivative"
|
|
427
|
+
version = "2.2.0"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"proc-macro2",
|
|
432
|
+
"quote",
|
|
433
|
+
"syn 1.0.109",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "derive_arbitrary"
|
|
438
|
+
version = "1.3.2"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"proc-macro2",
|
|
443
|
+
"quote",
|
|
444
|
+
"syn 2.0.117",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "digest"
|
|
449
|
+
version = "0.10.7"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"block-buffer",
|
|
454
|
+
"const-oid",
|
|
455
|
+
"crypto-common",
|
|
456
|
+
"subtle",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "downcast-rs"
|
|
461
|
+
version = "1.2.1"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "dyn-clone"
|
|
467
|
+
version = "1.0.20"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "ecdsa"
|
|
473
|
+
version = "0.16.9"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"der",
|
|
478
|
+
"digest",
|
|
479
|
+
"elliptic-curve",
|
|
480
|
+
"rfc6979",
|
|
481
|
+
"signature",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "ed25519"
|
|
486
|
+
version = "2.2.3"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"pkcs8",
|
|
491
|
+
"signature",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "ed25519-dalek"
|
|
496
|
+
version = "2.2.0"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"curve25519-dalek",
|
|
501
|
+
"ed25519",
|
|
502
|
+
"rand_core",
|
|
503
|
+
"serde",
|
|
504
|
+
"sha2",
|
|
505
|
+
"subtle",
|
|
506
|
+
"zeroize",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "either"
|
|
511
|
+
version = "1.15.0"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "elliptic-curve"
|
|
517
|
+
version = "0.13.8"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"base16ct",
|
|
522
|
+
"crypto-bigint",
|
|
523
|
+
"digest",
|
|
524
|
+
"ff",
|
|
525
|
+
"generic-array",
|
|
526
|
+
"group",
|
|
527
|
+
"rand_core",
|
|
528
|
+
"sec1",
|
|
529
|
+
"subtle",
|
|
530
|
+
"zeroize",
|
|
531
|
+
]
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "equivalent"
|
|
535
|
+
version = "1.0.2"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "escape-bytes"
|
|
541
|
+
version = "0.1.1"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "2bfcf67fea2815c2fc3b90873fae90957be12ff417335dfadc7f52927feb03b2"
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "ethnum"
|
|
547
|
+
version = "1.5.3"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "40404c3f5f511ec4da6fe866ddf6a717c309fdbb69fbbad7b0f3edab8f2e835f"
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "ff"
|
|
553
|
+
version = "0.13.1"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"rand_core",
|
|
558
|
+
"subtle",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "fiat-crypto"
|
|
563
|
+
version = "0.2.9"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "find-msvc-tools"
|
|
569
|
+
version = "0.1.9"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "fnv"
|
|
575
|
+
version = "1.0.7"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "futures-core"
|
|
581
|
+
version = "0.3.32"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "futures-task"
|
|
587
|
+
version = "0.3.32"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "futures-util"
|
|
593
|
+
version = "0.3.32"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"futures-core",
|
|
598
|
+
"futures-task",
|
|
599
|
+
"pin-project-lite",
|
|
600
|
+
"slab",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "generic-array"
|
|
605
|
+
version = "0.14.9"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"typenum",
|
|
610
|
+
"version_check",
|
|
611
|
+
"zeroize",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "getrandom"
|
|
616
|
+
version = "0.2.17"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"cfg-if",
|
|
621
|
+
"js-sys",
|
|
622
|
+
"libc",
|
|
623
|
+
"wasi",
|
|
624
|
+
"wasm-bindgen",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "group"
|
|
629
|
+
version = "0.13.0"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"ff",
|
|
634
|
+
"rand_core",
|
|
635
|
+
"subtle",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "hashbrown"
|
|
640
|
+
version = "0.12.3"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "hashbrown"
|
|
646
|
+
version = "0.13.2"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"ahash",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "hashbrown"
|
|
655
|
+
version = "0.16.1"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "hex"
|
|
661
|
+
version = "0.4.3"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"serde",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "hex-literal"
|
|
670
|
+
version = "0.4.1"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "hmac"
|
|
676
|
+
version = "0.12.1"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"digest",
|
|
681
|
+
]
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "iana-time-zone"
|
|
685
|
+
version = "0.1.65"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"android_system_properties",
|
|
690
|
+
"core-foundation-sys",
|
|
691
|
+
"iana-time-zone-haiku",
|
|
692
|
+
"js-sys",
|
|
693
|
+
"log",
|
|
694
|
+
"wasm-bindgen",
|
|
695
|
+
"windows-core",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "iana-time-zone-haiku"
|
|
700
|
+
version = "0.1.2"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"cc",
|
|
705
|
+
]
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "ident_case"
|
|
709
|
+
version = "1.0.1"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "indexmap"
|
|
715
|
+
version = "1.9.3"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"autocfg",
|
|
720
|
+
"hashbrown 0.12.3",
|
|
721
|
+
"serde",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "indexmap"
|
|
726
|
+
version = "2.13.1"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"equivalent",
|
|
731
|
+
"hashbrown 0.16.1",
|
|
732
|
+
"serde",
|
|
733
|
+
"serde_core",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "indexmap-nostd"
|
|
738
|
+
version = "0.4.0"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590"
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "itertools"
|
|
744
|
+
version = "0.10.5"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"either",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "itoa"
|
|
753
|
+
version = "1.0.18"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "js-sys"
|
|
759
|
+
version = "0.3.98"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"cfg-if",
|
|
764
|
+
"futures-util",
|
|
765
|
+
"once_cell",
|
|
766
|
+
"wasm-bindgen",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "k256"
|
|
771
|
+
version = "0.13.4"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"cfg-if",
|
|
776
|
+
"ecdsa",
|
|
777
|
+
"elliptic-curve",
|
|
778
|
+
"sha2",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "keccak"
|
|
783
|
+
version = "0.1.6"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"cpufeatures",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "libc"
|
|
792
|
+
version = "0.2.186"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "libm"
|
|
798
|
+
version = "0.2.16"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "log"
|
|
804
|
+
version = "0.4.29"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "marketplace"
|
|
810
|
+
version = "0.1.0"
|
|
811
|
+
dependencies = [
|
|
812
|
+
"soroban-sdk",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "memchr"
|
|
817
|
+
version = "2.8.0"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "num-bigint"
|
|
823
|
+
version = "0.4.6"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"num-integer",
|
|
828
|
+
"num-traits",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "num-conv"
|
|
833
|
+
version = "0.1.0"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "num-derive"
|
|
839
|
+
version = "0.4.2"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"proc-macro2",
|
|
844
|
+
"quote",
|
|
845
|
+
"syn 2.0.117",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "num-integer"
|
|
850
|
+
version = "0.1.46"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"num-traits",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "num-traits"
|
|
859
|
+
version = "0.2.19"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"autocfg",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "once_cell"
|
|
868
|
+
version = "1.21.4"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "p256"
|
|
874
|
+
version = "0.13.2"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"ecdsa",
|
|
879
|
+
"elliptic-curve",
|
|
880
|
+
"primeorder",
|
|
881
|
+
"sha2",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "paste"
|
|
886
|
+
version = "1.0.15"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "pin-project-lite"
|
|
892
|
+
version = "0.2.17"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "pkcs8"
|
|
898
|
+
version = "0.10.2"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"der",
|
|
903
|
+
"spki",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "powerfmt"
|
|
908
|
+
version = "0.2.0"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "ppv-lite86"
|
|
914
|
+
version = "0.2.21"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"zerocopy",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "prettyplease"
|
|
923
|
+
version = "0.2.37"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"proc-macro2",
|
|
928
|
+
"syn 2.0.117",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "primeorder"
|
|
933
|
+
version = "0.13.6"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"elliptic-curve",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "proc-macro2"
|
|
942
|
+
version = "1.0.106"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"unicode-ident",
|
|
947
|
+
]
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "quote"
|
|
951
|
+
version = "1.0.45"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"proc-macro2",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "rand"
|
|
960
|
+
version = "0.8.6"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"libc",
|
|
965
|
+
"rand_chacha",
|
|
966
|
+
"rand_core",
|
|
967
|
+
]
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "rand_chacha"
|
|
971
|
+
version = "0.3.1"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"ppv-lite86",
|
|
976
|
+
"rand_core",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "rand_core"
|
|
981
|
+
version = "0.6.4"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
984
|
+
dependencies = [
|
|
985
|
+
"getrandom",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "ref-cast"
|
|
990
|
+
version = "1.0.25"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"ref-cast-impl",
|
|
995
|
+
]
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "ref-cast-impl"
|
|
999
|
+
version = "1.0.25"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
1002
|
+
dependencies = [
|
|
1003
|
+
"proc-macro2",
|
|
1004
|
+
"quote",
|
|
1005
|
+
"syn 2.0.117",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "rfc6979"
|
|
1010
|
+
version = "0.4.0"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"hmac",
|
|
1015
|
+
"subtle",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "rustc_version"
|
|
1020
|
+
version = "0.4.1"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"semver",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "rustversion"
|
|
1029
|
+
version = "1.0.22"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "schemars"
|
|
1035
|
+
version = "0.9.0"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"dyn-clone",
|
|
1040
|
+
"ref-cast",
|
|
1041
|
+
"serde",
|
|
1042
|
+
"serde_json",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "schemars"
|
|
1047
|
+
version = "1.2.1"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"dyn-clone",
|
|
1052
|
+
"ref-cast",
|
|
1053
|
+
"serde",
|
|
1054
|
+
"serde_json",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "sec1"
|
|
1059
|
+
version = "0.7.3"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"base16ct",
|
|
1064
|
+
"der",
|
|
1065
|
+
"generic-array",
|
|
1066
|
+
"subtle",
|
|
1067
|
+
"zeroize",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "semver"
|
|
1072
|
+
version = "1.0.28"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "serde"
|
|
1078
|
+
version = "1.0.228"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"serde_core",
|
|
1083
|
+
"serde_derive",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "serde_core"
|
|
1088
|
+
version = "1.0.228"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"serde_derive",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "serde_derive"
|
|
1097
|
+
version = "1.0.228"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"proc-macro2",
|
|
1102
|
+
"quote",
|
|
1103
|
+
"syn 2.0.117",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "serde_json"
|
|
1108
|
+
version = "1.0.149"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"itoa",
|
|
1113
|
+
"memchr",
|
|
1114
|
+
"serde",
|
|
1115
|
+
"serde_core",
|
|
1116
|
+
"zmij",
|
|
1117
|
+
]
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "serde_with"
|
|
1121
|
+
version = "3.17.0"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "381b283ce7bc6b476d903296fb59d0d36633652b633b27f64db4fb46dcbfc3b9"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"base64 0.22.1",
|
|
1126
|
+
"chrono",
|
|
1127
|
+
"hex",
|
|
1128
|
+
"indexmap 1.9.3",
|
|
1129
|
+
"indexmap 2.13.1",
|
|
1130
|
+
"schemars 0.9.0",
|
|
1131
|
+
"schemars 1.2.1",
|
|
1132
|
+
"serde_core",
|
|
1133
|
+
"serde_json",
|
|
1134
|
+
"serde_with_macros",
|
|
1135
|
+
"time",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "serde_with_macros"
|
|
1140
|
+
version = "3.17.0"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "a6d4e30573c8cb306ed6ab1dca8423eec9a463ea0e155f45399455e0368b27e0"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"darling 0.21.3",
|
|
1145
|
+
"proc-macro2",
|
|
1146
|
+
"quote",
|
|
1147
|
+
"syn 2.0.117",
|
|
1148
|
+
]
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "sha2"
|
|
1152
|
+
version = "0.10.9"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1155
|
+
dependencies = [
|
|
1156
|
+
"cfg-if",
|
|
1157
|
+
"cpufeatures",
|
|
1158
|
+
"digest",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "sha3"
|
|
1163
|
+
version = "0.10.9"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"digest",
|
|
1168
|
+
"keccak",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "shlex"
|
|
1173
|
+
version = "1.3.0"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "signature"
|
|
1179
|
+
version = "2.2.0"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"digest",
|
|
1184
|
+
"rand_core",
|
|
1185
|
+
]
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "slab"
|
|
1189
|
+
version = "0.4.12"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "smallvec"
|
|
1195
|
+
version = "1.15.1"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "soroban-builtin-sdk-macros"
|
|
1201
|
+
version = "22.1.3"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "cf2e42bf80fcdefb3aae6ff3c7101a62cf942e95320ed5b518a1705bc11c6b2f"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"itertools",
|
|
1206
|
+
"proc-macro2",
|
|
1207
|
+
"quote",
|
|
1208
|
+
"syn 2.0.117",
|
|
1209
|
+
]
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "soroban-env-common"
|
|
1213
|
+
version = "22.1.3"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "027cd856171bfd6ad2c0ffb3b7dfe55ad7080fb3050c36ad20970f80da634472"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"arbitrary",
|
|
1218
|
+
"crate-git-revision",
|
|
1219
|
+
"ethnum",
|
|
1220
|
+
"num-derive",
|
|
1221
|
+
"num-traits",
|
|
1222
|
+
"serde",
|
|
1223
|
+
"soroban-env-macros",
|
|
1224
|
+
"soroban-wasmi",
|
|
1225
|
+
"static_assertions",
|
|
1226
|
+
"stellar-xdr",
|
|
1227
|
+
"wasmparser",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "soroban-env-guest"
|
|
1232
|
+
version = "22.1.3"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "9a07dda1ae5220d975979b19ad4fd56bc86ec7ec1b4b25bc1c5d403f934e592e"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"soroban-env-common",
|
|
1237
|
+
"static_assertions",
|
|
1238
|
+
]
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "soroban-env-host"
|
|
1242
|
+
version = "22.1.3"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "66e8b03a4191d485eab03f066336112b2a50541a7553179553dc838b986b94dd"
|
|
1245
|
+
dependencies = [
|
|
1246
|
+
"ark-bls12-381",
|
|
1247
|
+
"ark-ec",
|
|
1248
|
+
"ark-ff",
|
|
1249
|
+
"ark-serialize",
|
|
1250
|
+
"curve25519-dalek",
|
|
1251
|
+
"ecdsa",
|
|
1252
|
+
"ed25519-dalek",
|
|
1253
|
+
"elliptic-curve",
|
|
1254
|
+
"generic-array",
|
|
1255
|
+
"getrandom",
|
|
1256
|
+
"hex-literal",
|
|
1257
|
+
"hmac",
|
|
1258
|
+
"k256",
|
|
1259
|
+
"num-derive",
|
|
1260
|
+
"num-integer",
|
|
1261
|
+
"num-traits",
|
|
1262
|
+
"p256",
|
|
1263
|
+
"rand",
|
|
1264
|
+
"rand_chacha",
|
|
1265
|
+
"sec1",
|
|
1266
|
+
"sha2",
|
|
1267
|
+
"sha3",
|
|
1268
|
+
"soroban-builtin-sdk-macros",
|
|
1269
|
+
"soroban-env-common",
|
|
1270
|
+
"soroban-wasmi",
|
|
1271
|
+
"static_assertions",
|
|
1272
|
+
"stellar-strkey",
|
|
1273
|
+
"wasmparser",
|
|
1274
|
+
]
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "soroban-env-macros"
|
|
1278
|
+
version = "22.1.3"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "00eff744764ade3bc480e4909e3a581a240091f3d262acdce80b41f7069b2bd9"
|
|
1281
|
+
dependencies = [
|
|
1282
|
+
"itertools",
|
|
1283
|
+
"proc-macro2",
|
|
1284
|
+
"quote",
|
|
1285
|
+
"serde",
|
|
1286
|
+
"serde_json",
|
|
1287
|
+
"stellar-xdr",
|
|
1288
|
+
"syn 2.0.117",
|
|
1289
|
+
]
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "soroban-ledger-snapshot"
|
|
1293
|
+
version = "22.0.11"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "c30035cf1e8f02f65de3e594b6da113ecdaf1cd134d8480961d62568bb15adaf"
|
|
1296
|
+
dependencies = [
|
|
1297
|
+
"serde",
|
|
1298
|
+
"serde_json",
|
|
1299
|
+
"serde_with",
|
|
1300
|
+
"soroban-env-common",
|
|
1301
|
+
"soroban-env-host",
|
|
1302
|
+
"thiserror",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "soroban-sdk"
|
|
1307
|
+
version = "22.0.11"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "ff18e8d7ca6d5340a211605ca2c86383bd4dfacc4f8253d72a1573974ffffe69"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"arbitrary",
|
|
1312
|
+
"bytes-lit",
|
|
1313
|
+
"ctor",
|
|
1314
|
+
"derive_arbitrary",
|
|
1315
|
+
"ed25519-dalek",
|
|
1316
|
+
"rand",
|
|
1317
|
+
"rustc_version",
|
|
1318
|
+
"serde",
|
|
1319
|
+
"serde_json",
|
|
1320
|
+
"soroban-env-guest",
|
|
1321
|
+
"soroban-env-host",
|
|
1322
|
+
"soroban-ledger-snapshot",
|
|
1323
|
+
"soroban-sdk-macros",
|
|
1324
|
+
"stellar-strkey",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "soroban-sdk-macros"
|
|
1329
|
+
version = "22.0.11"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "42b205cd86b34d530db87667bd287fbb194166d79b368227fd842110a914fde8"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"crate-git-revision",
|
|
1334
|
+
"darling 0.20.11",
|
|
1335
|
+
"itertools",
|
|
1336
|
+
"proc-macro2",
|
|
1337
|
+
"quote",
|
|
1338
|
+
"rustc_version",
|
|
1339
|
+
"sha2",
|
|
1340
|
+
"soroban-env-common",
|
|
1341
|
+
"soroban-spec",
|
|
1342
|
+
"soroban-spec-rust",
|
|
1343
|
+
"stellar-xdr",
|
|
1344
|
+
"syn 2.0.117",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "soroban-spec"
|
|
1349
|
+
version = "22.0.11"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "cb6a16f2de28852c759f4da5f28cda54ec0d8dfa4c0e6e8cb3495234a72b0cea"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"base64 0.13.1",
|
|
1354
|
+
"stellar-xdr",
|
|
1355
|
+
"thiserror",
|
|
1356
|
+
"wasmparser",
|
|
1357
|
+
]
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "soroban-spec-rust"
|
|
1361
|
+
version = "22.0.11"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "cdc6db5902ab21290dddf63fec4ee95703fe59891a947646e7b8607536f043fc"
|
|
1364
|
+
dependencies = [
|
|
1365
|
+
"prettyplease",
|
|
1366
|
+
"proc-macro2",
|
|
1367
|
+
"quote",
|
|
1368
|
+
"sha2",
|
|
1369
|
+
"soroban-spec",
|
|
1370
|
+
"stellar-xdr",
|
|
1371
|
+
"syn 2.0.117",
|
|
1372
|
+
"thiserror",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "soroban-wasmi"
|
|
1377
|
+
version = "0.31.1-soroban.20.0.1"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "710403de32d0e0c35375518cb995d4fc056d0d48966f2e56ea471b8cb8fc9719"
|
|
1380
|
+
dependencies = [
|
|
1381
|
+
"smallvec",
|
|
1382
|
+
"spin",
|
|
1383
|
+
"wasmi_arena",
|
|
1384
|
+
"wasmi_core",
|
|
1385
|
+
"wasmparser-nostd",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "spin"
|
|
1390
|
+
version = "0.9.8"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "spki"
|
|
1396
|
+
version = "0.7.3"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
1399
|
+
dependencies = [
|
|
1400
|
+
"base64ct",
|
|
1401
|
+
"der",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "static_assertions"
|
|
1406
|
+
version = "1.1.0"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "stellar-strkey"
|
|
1412
|
+
version = "0.0.9"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "5e3aa3ed00e70082cb43febc1c2afa5056b9bb3e348bbb43d0cd0aa88a611144"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"crate-git-revision",
|
|
1417
|
+
"data-encoding",
|
|
1418
|
+
"thiserror",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "stellar-xdr"
|
|
1423
|
+
version = "22.1.0"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "2ce69db907e64d1e70a3dce8d4824655d154749426a6132b25395c49136013e4"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"arbitrary",
|
|
1428
|
+
"base64 0.13.1",
|
|
1429
|
+
"crate-git-revision",
|
|
1430
|
+
"escape-bytes",
|
|
1431
|
+
"hex",
|
|
1432
|
+
"serde",
|
|
1433
|
+
"serde_with",
|
|
1434
|
+
"stellar-strkey",
|
|
1435
|
+
]
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "strsim"
|
|
1439
|
+
version = "0.11.1"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "subtle"
|
|
1445
|
+
version = "2.6.1"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "syn"
|
|
1451
|
+
version = "1.0.109"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1454
|
+
dependencies = [
|
|
1455
|
+
"proc-macro2",
|
|
1456
|
+
"quote",
|
|
1457
|
+
"unicode-ident",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "syn"
|
|
1462
|
+
version = "2.0.117"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1465
|
+
dependencies = [
|
|
1466
|
+
"proc-macro2",
|
|
1467
|
+
"quote",
|
|
1468
|
+
"unicode-ident",
|
|
1469
|
+
]
|
|
1470
|
+
|
|
1471
|
+
[[package]]
|
|
1472
|
+
name = "thiserror"
|
|
1473
|
+
version = "1.0.69"
|
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1476
|
+
dependencies = [
|
|
1477
|
+
"thiserror-impl",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "thiserror-impl"
|
|
1482
|
+
version = "1.0.69"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"proc-macro2",
|
|
1487
|
+
"quote",
|
|
1488
|
+
"syn 2.0.117",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "time"
|
|
1493
|
+
version = "0.3.45"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"deranged",
|
|
1498
|
+
"itoa",
|
|
1499
|
+
"num-conv",
|
|
1500
|
+
"powerfmt",
|
|
1501
|
+
"serde_core",
|
|
1502
|
+
"time-core",
|
|
1503
|
+
"time-macros",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "time-core"
|
|
1508
|
+
version = "0.1.7"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "time-macros"
|
|
1514
|
+
version = "0.2.25"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "71e552d1249bf61ac2a52db88179fd0673def1e1ad8243a00d9ec9ed71fee3dd"
|
|
1517
|
+
dependencies = [
|
|
1518
|
+
"num-conv",
|
|
1519
|
+
"time-core",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "typenum"
|
|
1524
|
+
version = "1.20.0"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "unicode-ident"
|
|
1530
|
+
version = "1.0.24"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1533
|
+
|
|
1534
|
+
[[package]]
|
|
1535
|
+
name = "version_check"
|
|
1536
|
+
version = "0.9.5"
|
|
1537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1539
|
+
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "wasi"
|
|
1542
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "wasm-bindgen"
|
|
1548
|
+
version = "0.2.121"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"cfg-if",
|
|
1553
|
+
"once_cell",
|
|
1554
|
+
"rustversion",
|
|
1555
|
+
"wasm-bindgen-macro",
|
|
1556
|
+
"wasm-bindgen-shared",
|
|
1557
|
+
]
|
|
1558
|
+
|
|
1559
|
+
[[package]]
|
|
1560
|
+
name = "wasm-bindgen-macro"
|
|
1561
|
+
version = "0.2.121"
|
|
1562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1563
|
+
checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
|
|
1564
|
+
dependencies = [
|
|
1565
|
+
"quote",
|
|
1566
|
+
"wasm-bindgen-macro-support",
|
|
1567
|
+
]
|
|
1568
|
+
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "wasm-bindgen-macro-support"
|
|
1571
|
+
version = "0.2.121"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
|
|
1574
|
+
dependencies = [
|
|
1575
|
+
"bumpalo",
|
|
1576
|
+
"proc-macro2",
|
|
1577
|
+
"quote",
|
|
1578
|
+
"syn 2.0.117",
|
|
1579
|
+
"wasm-bindgen-shared",
|
|
1580
|
+
]
|
|
1581
|
+
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "wasm-bindgen-shared"
|
|
1584
|
+
version = "0.2.121"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"unicode-ident",
|
|
1589
|
+
]
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "wasmi_arena"
|
|
1593
|
+
version = "0.4.1"
|
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
+
checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073"
|
|
1596
|
+
|
|
1597
|
+
[[package]]
|
|
1598
|
+
name = "wasmi_core"
|
|
1599
|
+
version = "0.13.0"
|
|
1600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
+
checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a"
|
|
1602
|
+
dependencies = [
|
|
1603
|
+
"downcast-rs",
|
|
1604
|
+
"libm",
|
|
1605
|
+
"num-traits",
|
|
1606
|
+
"paste",
|
|
1607
|
+
]
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "wasmparser"
|
|
1611
|
+
version = "0.116.1"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "a58e28b80dd8340cb07b8242ae654756161f6fc8d0038123d679b7b99964fa50"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"indexmap 2.13.1",
|
|
1616
|
+
"semver",
|
|
1617
|
+
]
|
|
1618
|
+
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "wasmparser-nostd"
|
|
1621
|
+
version = "0.100.2"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa"
|
|
1624
|
+
dependencies = [
|
|
1625
|
+
"indexmap-nostd",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "windows-core"
|
|
1630
|
+
version = "0.62.2"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"windows-implement",
|
|
1635
|
+
"windows-interface",
|
|
1636
|
+
"windows-link",
|
|
1637
|
+
"windows-result",
|
|
1638
|
+
"windows-strings",
|
|
1639
|
+
]
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "windows-implement"
|
|
1643
|
+
version = "0.60.2"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"proc-macro2",
|
|
1648
|
+
"quote",
|
|
1649
|
+
"syn 2.0.117",
|
|
1650
|
+
]
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "windows-interface"
|
|
1654
|
+
version = "0.59.3"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1657
|
+
dependencies = [
|
|
1658
|
+
"proc-macro2",
|
|
1659
|
+
"quote",
|
|
1660
|
+
"syn 2.0.117",
|
|
1661
|
+
]
|
|
1662
|
+
|
|
1663
|
+
[[package]]
|
|
1664
|
+
name = "windows-link"
|
|
1665
|
+
version = "0.2.1"
|
|
1666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "windows-result"
|
|
1671
|
+
version = "0.4.1"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"windows-link",
|
|
1676
|
+
]
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "windows-strings"
|
|
1680
|
+
version = "0.5.1"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"windows-link",
|
|
1685
|
+
]
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "zerocopy"
|
|
1689
|
+
version = "0.8.48"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"zerocopy-derive",
|
|
1694
|
+
]
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "zerocopy-derive"
|
|
1698
|
+
version = "0.8.48"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1701
|
+
dependencies = [
|
|
1702
|
+
"proc-macro2",
|
|
1703
|
+
"quote",
|
|
1704
|
+
"syn 2.0.117",
|
|
1705
|
+
]
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "zeroize"
|
|
1709
|
+
version = "1.8.2"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"zeroize_derive",
|
|
1714
|
+
]
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "zeroize_derive"
|
|
1718
|
+
version = "1.4.3"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
1721
|
+
dependencies = [
|
|
1722
|
+
"proc-macro2",
|
|
1723
|
+
"quote",
|
|
1724
|
+
"syn 2.0.117",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "zmij"
|
|
1729
|
+
version = "1.0.21"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|