quicknode-sdk 0.6.0__tar.gz → 0.8.0__tar.gz
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.
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/Cargo.lock +2660 -392
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/Cargo.toml +1 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/PKG-INFO +230 -2
- quicknode_sdk-0.8.0/crates/core/Cargo.toml +109 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/README.md +264 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/examples/admin_e2e.rs +3 -0
- quicknode_sdk-0.8.0/crates/core/examples/rpc.rs +83 -0
- quicknode_sdk-0.8.0/crates/core/examples/rpc_payment.rs +76 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/mod.rs +6 -2
- quicknode_sdk-0.8.0/crates/core/src/admin/tooling_access.rs +386 -0
- quicknode_sdk-0.8.0/crates/core/src/config.rs +549 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/errors.rs +24 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/kvstore/mod.rs +2 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/lib.rs +78 -23
- quicknode_sdk-0.8.0/crates/core/src/rpc/mod.rs +1323 -0
- quicknode_sdk-0.8.0/crates/core/src/rpc/payment/drawdown.rs +905 -0
- quicknode_sdk-0.8.0/crates/core/src/rpc/payment/mod.rs +1735 -0
- quicknode_sdk-0.8.0/crates/core/src/rpc/payment/session.rs +1067 -0
- quicknode_sdk-0.8.0/crates/core/src/rpc/payment/signer/mod.rs +581 -0
- quicknode_sdk-0.8.0/crates/core/src/rpc/payment/signer/svm.rs +463 -0
- quicknode_sdk-0.8.0/crates/core/src/rpc/payment/signer/tempo.rs +641 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/sql/mod.rs +2 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/streams/mod.rs +2 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/webhooks/mod.rs +2 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/python/Cargo.toml +3 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/python/src/errors.rs +54 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/python/src/lib.rs +602 -2
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/pyproject.toml +1 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/python/README.md +229 -1
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/python/quicknode_sdk/__init__.py +22 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/python/quicknode_sdk/__init__.pyi +22 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/python/quicknode_sdk/_core/__init__.pyi +450 -3
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/python/quicknode_sdk/init_manual_override.pyi +22 -0
- quicknode_sdk-0.6.0/crates/core/Cargo.toml +0 -60
- quicknode_sdk-0.6.0/crates/core/src/config.rs +0 -311
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/LICENSE +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/LICENSE +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/examples/admin.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/examples/kvstore_e2e.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/examples/sql.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/examples/streams.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/examples/streams_e2e.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/examples/webhooks_e2e.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/account.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/api_credits.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/billing.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/bulk.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/chains.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/endpoint_metrics.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/endpoint_rate_limits.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/endpoint_security.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/endpoint_urls.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/endpoints.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/logs.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/tags.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/teams.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/admin/usage.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/streams/stream.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/core/src/webhooks/webhook.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/python/src/sql.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/python/src/streams_destination.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/crates/python/src/webhooks_template.rs +0 -0
- {quicknode_sdk-0.6.0 → quicknode_sdk-0.8.0}/python/quicknode_sdk/py.typed +0 -0
|
@@ -4,341 +4,1255 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "aho-corasick"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.5"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
|
-
name = "
|
|
16
|
-
version = "
|
|
15
|
+
name = "alloy-consensus"
|
|
16
|
+
version = "2.3.0"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
18
|
+
checksum = "51b9eb70841f76b69b1205bb57b551b7d7afd8407ad57cbda02e833877507c16"
|
|
19
19
|
dependencies = [
|
|
20
|
-
"
|
|
20
|
+
"alloy-eips",
|
|
21
|
+
"alloy-primitives",
|
|
22
|
+
"alloy-rlp",
|
|
23
|
+
"alloy-serde",
|
|
24
|
+
"alloy-trie",
|
|
25
|
+
"alloy-tx-macros",
|
|
26
|
+
"auto_impl",
|
|
27
|
+
"borsh",
|
|
28
|
+
"c-kzg",
|
|
29
|
+
"derive_more",
|
|
30
|
+
"either",
|
|
31
|
+
"k256 0.13.4",
|
|
32
|
+
"once_cell",
|
|
33
|
+
"secp256k1 0.30.0",
|
|
34
|
+
"serde",
|
|
35
|
+
"serde_json",
|
|
36
|
+
"serde_with",
|
|
37
|
+
"thiserror 2.0.19",
|
|
21
38
|
]
|
|
22
39
|
|
|
23
40
|
[[package]]
|
|
24
|
-
name = "
|
|
25
|
-
version = "
|
|
41
|
+
name = "alloy-eip2124"
|
|
42
|
+
version = "0.2.0"
|
|
26
43
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
-
checksum = "
|
|
44
|
+
checksum = "741bdd7499908b3aa0b159bba11e71c8cddd009a2c2eb7a06e825f1ec87900a5"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"alloy-primitives",
|
|
47
|
+
"alloy-rlp",
|
|
48
|
+
"crc",
|
|
49
|
+
"serde",
|
|
50
|
+
"thiserror 2.0.19",
|
|
51
|
+
]
|
|
28
52
|
|
|
29
53
|
[[package]]
|
|
30
|
-
name = "
|
|
31
|
-
version = "0.
|
|
54
|
+
name = "alloy-eip2930"
|
|
55
|
+
version = "0.2.3"
|
|
32
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "
|
|
57
|
+
checksum = "9441120fa82df73e8959ae0e4ab8ade03de2aaae61be313fbf5746277847ce25"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"alloy-primitives",
|
|
60
|
+
"alloy-rlp",
|
|
61
|
+
"borsh",
|
|
62
|
+
"serde",
|
|
63
|
+
]
|
|
34
64
|
|
|
35
65
|
[[package]]
|
|
36
|
-
name = "
|
|
37
|
-
version = "
|
|
66
|
+
name = "alloy-eip7702"
|
|
67
|
+
version = "0.6.3"
|
|
38
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "
|
|
69
|
+
checksum = "2919c5a56a1007492da313e7a3b6d45ef5edc5d33416fdec63c0d7a2702a0d20"
|
|
40
70
|
dependencies = [
|
|
71
|
+
"alloy-primitives",
|
|
72
|
+
"alloy-rlp",
|
|
73
|
+
"borsh",
|
|
74
|
+
"k256 0.13.4",
|
|
41
75
|
"serde",
|
|
42
|
-
"
|
|
76
|
+
"thiserror 2.0.19",
|
|
43
77
|
]
|
|
44
78
|
|
|
45
79
|
[[package]]
|
|
46
|
-
name = "
|
|
47
|
-
version = "0.
|
|
80
|
+
name = "alloy-eip7928"
|
|
81
|
+
version = "0.4.5"
|
|
48
82
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
-
checksum = "
|
|
83
|
+
checksum = "b3b12337f74cbfa451cb04dac173974814a6ff463079e1793aa09600ba8813ab"
|
|
50
84
|
dependencies = [
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
85
|
+
"alloy-primitives",
|
|
86
|
+
"alloy-rlp",
|
|
87
|
+
"borsh",
|
|
88
|
+
"once_cell",
|
|
89
|
+
"serde",
|
|
90
|
+
"thiserror 2.0.19",
|
|
54
91
|
]
|
|
55
92
|
|
|
56
93
|
[[package]]
|
|
57
|
-
name = "
|
|
58
|
-
version = "
|
|
94
|
+
name = "alloy-eips"
|
|
95
|
+
version = "2.3.0"
|
|
59
96
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
-
checksum = "
|
|
97
|
+
checksum = "fddc9c1868d6331b56926de8ab4c4a80d8dcb7bc4f8f7bebc6a89d0548f79af2"
|
|
98
|
+
dependencies = [
|
|
99
|
+
"alloy-eip2124",
|
|
100
|
+
"alloy-eip2930",
|
|
101
|
+
"alloy-eip7702",
|
|
102
|
+
"alloy-eip7928",
|
|
103
|
+
"alloy-primitives",
|
|
104
|
+
"alloy-rlp",
|
|
105
|
+
"alloy-serde",
|
|
106
|
+
"auto_impl",
|
|
107
|
+
"borsh",
|
|
108
|
+
"c-kzg",
|
|
109
|
+
"derive_more",
|
|
110
|
+
"either",
|
|
111
|
+
"serde",
|
|
112
|
+
"serde_with",
|
|
113
|
+
"sha2 0.10.9",
|
|
114
|
+
]
|
|
61
115
|
|
|
62
116
|
[[package]]
|
|
63
|
-
name = "
|
|
64
|
-
version = "1.
|
|
117
|
+
name = "alloy-json-abi"
|
|
118
|
+
version = "1.6.1"
|
|
65
119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
-
checksum = "
|
|
120
|
+
checksum = "6cee30dd4c2f4b23f434fdf675e7bf9681b86768141277266c6f548ef25cba0a"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"alloy-primitives",
|
|
123
|
+
"alloy-sol-type-parser",
|
|
124
|
+
"serde",
|
|
125
|
+
"serde_json",
|
|
126
|
+
]
|
|
67
127
|
|
|
68
128
|
[[package]]
|
|
69
|
-
name = "
|
|
70
|
-
version = "1.
|
|
129
|
+
name = "alloy-primitives"
|
|
130
|
+
version = "1.6.1"
|
|
71
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
-
checksum = "
|
|
132
|
+
checksum = "f007e257069855bdf21d27762fd3f3705a613f805c9a08309bf353503f081d71"
|
|
73
133
|
dependencies = [
|
|
74
|
-
"
|
|
75
|
-
"
|
|
134
|
+
"alloy-rlp",
|
|
135
|
+
"bytes",
|
|
136
|
+
"cfg-if",
|
|
137
|
+
"const-hex",
|
|
138
|
+
"derive_more",
|
|
139
|
+
"fixed-cache",
|
|
140
|
+
"foldhash",
|
|
141
|
+
"hashbrown 0.17.1",
|
|
142
|
+
"indexmap 2.14.0",
|
|
143
|
+
"itoa",
|
|
144
|
+
"k256 0.13.4",
|
|
145
|
+
"keccak-asm",
|
|
146
|
+
"paste",
|
|
147
|
+
"proptest",
|
|
148
|
+
"rand 0.9.5",
|
|
149
|
+
"rapidhash",
|
|
150
|
+
"ruint",
|
|
151
|
+
"rustc-hash 2.1.3",
|
|
152
|
+
"secp256k1 0.31.1",
|
|
153
|
+
"serde",
|
|
154
|
+
"sha3 0.11.0",
|
|
76
155
|
]
|
|
77
156
|
|
|
78
157
|
[[package]]
|
|
79
|
-
name = "
|
|
80
|
-
version = "0.
|
|
158
|
+
name = "alloy-rlp"
|
|
159
|
+
version = "0.3.16"
|
|
81
160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
161
|
+
checksum = "24671b1f62edcf0f9b62994c7bf72cd621a04a4b99f5020ece1a647b40e2f103"
|
|
83
162
|
dependencies = [
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"fs_extra",
|
|
88
|
-
"pkg-config",
|
|
163
|
+
"alloy-rlp-derive",
|
|
164
|
+
"arrayvec",
|
|
165
|
+
"bytes",
|
|
89
166
|
]
|
|
90
167
|
|
|
91
168
|
[[package]]
|
|
92
|
-
name = "
|
|
93
|
-
version = "0.
|
|
169
|
+
name = "alloy-rlp-derive"
|
|
170
|
+
version = "0.3.16"
|
|
94
171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
-
checksum = "
|
|
172
|
+
checksum = "9d4311c03125e8a18296504560b9de3d75ecbd0dcda7f71e6cf2a196d57e6fba"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"proc-macro2",
|
|
175
|
+
"quote",
|
|
176
|
+
"syn 2.0.119",
|
|
177
|
+
]
|
|
96
178
|
|
|
97
179
|
[[package]]
|
|
98
|
-
name = "
|
|
99
|
-
version = "
|
|
180
|
+
name = "alloy-serde"
|
|
181
|
+
version = "2.3.0"
|
|
100
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
-
checksum = "
|
|
183
|
+
checksum = "3ad7efdd5e8fe92f5bab87956d6d3f717d1614c4ab6ad0d1f869b16e83b0dff9"
|
|
102
184
|
dependencies = [
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"itertools 0.13.0",
|
|
107
|
-
"proc-macro2",
|
|
108
|
-
"quote",
|
|
109
|
-
"regex",
|
|
110
|
-
"rustc-hash 2.1.3",
|
|
111
|
-
"shlex 1.3.0",
|
|
112
|
-
"syn",
|
|
185
|
+
"alloy-primitives",
|
|
186
|
+
"serde",
|
|
187
|
+
"serde_json",
|
|
113
188
|
]
|
|
114
189
|
|
|
115
190
|
[[package]]
|
|
116
|
-
name = "
|
|
117
|
-
version = "
|
|
191
|
+
name = "alloy-sol-macro"
|
|
192
|
+
version = "1.6.1"
|
|
118
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
-
checksum = "
|
|
194
|
+
checksum = "b5655c38d5f84955bf727b2eeb62fddd91ebb98fd1d7ae6eb77f73ea88f9b9cf"
|
|
120
195
|
dependencies = [
|
|
121
|
-
"
|
|
196
|
+
"alloy-sol-macro-expander",
|
|
197
|
+
"alloy-sol-macro-input",
|
|
198
|
+
"proc-macro-error3",
|
|
199
|
+
"proc-macro2",
|
|
200
|
+
"quote",
|
|
201
|
+
"syn 2.0.119",
|
|
122
202
|
]
|
|
123
203
|
|
|
124
204
|
[[package]]
|
|
125
|
-
name = "
|
|
126
|
-
version = "
|
|
205
|
+
name = "alloy-sol-macro-expander"
|
|
206
|
+
version = "1.6.1"
|
|
127
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
208
|
+
checksum = "6277c780e07b76951e09a59788dde230d1582612324177d11a43a61e21a6bb83"
|
|
129
209
|
dependencies = [
|
|
130
|
-
"
|
|
131
|
-
"
|
|
210
|
+
"alloy-json-abi",
|
|
211
|
+
"alloy-sol-macro-input",
|
|
212
|
+
"const-hex",
|
|
213
|
+
"heck",
|
|
214
|
+
"indexmap 2.14.0",
|
|
215
|
+
"proc-macro-error3",
|
|
216
|
+
"proc-macro2",
|
|
217
|
+
"quote",
|
|
218
|
+
"sha3 0.11.0",
|
|
219
|
+
"syn 2.0.119",
|
|
220
|
+
"syn-solidity",
|
|
132
221
|
]
|
|
133
222
|
|
|
134
223
|
[[package]]
|
|
135
|
-
name = "
|
|
136
|
-
version = "
|
|
224
|
+
name = "alloy-sol-macro-input"
|
|
225
|
+
version = "1.6.1"
|
|
137
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
-
checksum = "
|
|
227
|
+
checksum = "9762b2ad3e5a0c09886de54fe549ab0056681df843cb082e2df7e1c0eb270d30"
|
|
139
228
|
dependencies = [
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
229
|
+
"alloy-json-abi",
|
|
230
|
+
"const-hex",
|
|
231
|
+
"dunce",
|
|
232
|
+
"heck",
|
|
233
|
+
"macro-string",
|
|
143
234
|
"proc-macro2",
|
|
144
235
|
"quote",
|
|
145
|
-
"
|
|
146
|
-
"syn",
|
|
236
|
+
"serde_json",
|
|
237
|
+
"syn 2.0.119",
|
|
238
|
+
"syn-solidity",
|
|
147
239
|
]
|
|
148
240
|
|
|
149
241
|
[[package]]
|
|
150
|
-
name = "
|
|
151
|
-
version = "
|
|
242
|
+
name = "alloy-sol-type-parser"
|
|
243
|
+
version = "1.6.1"
|
|
152
244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
-
checksum = "
|
|
245
|
+
checksum = "da4c7130f0f01f4719678bda3db3bc7267fc2f7f9d0565e3bd964cd2bb45050d"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"serde",
|
|
248
|
+
"winnow",
|
|
249
|
+
]
|
|
154
250
|
|
|
155
251
|
[[package]]
|
|
156
|
-
name = "
|
|
157
|
-
version = "1.
|
|
252
|
+
name = "alloy-sol-types"
|
|
253
|
+
version = "1.6.1"
|
|
158
254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
-
checksum = "
|
|
255
|
+
checksum = "d96e74d6213180f78dbdccddce8af02a639c160c94b0a543fa35c77c58b8a7fc"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"alloy-json-abi",
|
|
258
|
+
"alloy-primitives",
|
|
259
|
+
"alloy-sol-macro",
|
|
260
|
+
]
|
|
160
261
|
|
|
161
262
|
[[package]]
|
|
162
|
-
name = "
|
|
163
|
-
version = "
|
|
263
|
+
name = "alloy-trie"
|
|
264
|
+
version = "0.9.5"
|
|
164
265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
266
|
+
checksum = "3f14b5d9b2c2173980202c6ff470d96e7c5e202c65a9f67884ad565226df7fbb"
|
|
166
267
|
dependencies = [
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
268
|
+
"alloy-primitives",
|
|
269
|
+
"alloy-rlp",
|
|
270
|
+
"derive_more",
|
|
271
|
+
"nybbles",
|
|
272
|
+
"serde",
|
|
273
|
+
"smallvec",
|
|
274
|
+
"thiserror 2.0.19",
|
|
275
|
+
"tracing",
|
|
171
276
|
]
|
|
172
277
|
|
|
173
278
|
[[package]]
|
|
174
|
-
name = "
|
|
175
|
-
version = "
|
|
279
|
+
name = "alloy-tx-macros"
|
|
280
|
+
version = "2.3.0"
|
|
176
281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
-
checksum = "
|
|
282
|
+
checksum = "b3e2386593cef5b12c7d439dbcf62d7d51c3a50dc943909b42ae34b48f1b69dc"
|
|
178
283
|
dependencies = [
|
|
179
|
-
"
|
|
284
|
+
"darling",
|
|
285
|
+
"proc-macro2",
|
|
286
|
+
"quote",
|
|
287
|
+
"syn 2.0.119",
|
|
180
288
|
]
|
|
181
289
|
|
|
182
290
|
[[package]]
|
|
183
|
-
name = "
|
|
184
|
-
version = "1.
|
|
291
|
+
name = "android_system_properties"
|
|
292
|
+
version = "0.1.5"
|
|
185
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "
|
|
294
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"libc",
|
|
297
|
+
]
|
|
187
298
|
|
|
188
299
|
[[package]]
|
|
189
|
-
name = "
|
|
190
|
-
version = "0.
|
|
300
|
+
name = "anyhow"
|
|
301
|
+
version = "1.0.104"
|
|
191
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "
|
|
303
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
193
304
|
|
|
194
305
|
[[package]]
|
|
195
|
-
name = "
|
|
196
|
-
version = "0.
|
|
306
|
+
name = "ark-ff"
|
|
307
|
+
version = "0.3.0"
|
|
197
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
-
checksum = "
|
|
309
|
+
checksum = "6b3235cc41ee7a12aaaf2c575a2ad7b46713a8a50bda2fc3b003a04845c05dd6"
|
|
199
310
|
dependencies = [
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
311
|
+
"ark-ff-asm 0.3.0",
|
|
312
|
+
"ark-ff-macros 0.3.0",
|
|
313
|
+
"ark-serialize 0.3.0",
|
|
314
|
+
"ark-std 0.3.0",
|
|
315
|
+
"derivative",
|
|
316
|
+
"num-bigint",
|
|
317
|
+
"num-traits",
|
|
318
|
+
"paste",
|
|
319
|
+
"rustc_version 0.3.3",
|
|
320
|
+
"zeroize",
|
|
203
321
|
]
|
|
204
322
|
|
|
205
323
|
[[package]]
|
|
206
|
-
name = "
|
|
207
|
-
version = "0.4.
|
|
324
|
+
name = "ark-ff"
|
|
325
|
+
version = "0.4.2"
|
|
208
326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
-
checksum = "
|
|
327
|
+
checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba"
|
|
210
328
|
dependencies = [
|
|
211
|
-
"
|
|
212
|
-
"
|
|
329
|
+
"ark-ff-asm 0.4.2",
|
|
330
|
+
"ark-ff-macros 0.4.2",
|
|
331
|
+
"ark-serialize 0.4.2",
|
|
332
|
+
"ark-std 0.4.0",
|
|
333
|
+
"derivative",
|
|
334
|
+
"digest 0.10.7",
|
|
335
|
+
"itertools 0.10.5",
|
|
336
|
+
"num-bigint",
|
|
213
337
|
"num-traits",
|
|
214
|
-
"
|
|
215
|
-
"
|
|
338
|
+
"paste",
|
|
339
|
+
"rustc_version 0.4.1",
|
|
340
|
+
"zeroize",
|
|
216
341
|
]
|
|
217
342
|
|
|
218
343
|
[[package]]
|
|
219
|
-
name = "
|
|
220
|
-
version = "
|
|
344
|
+
name = "ark-ff"
|
|
345
|
+
version = "0.5.0"
|
|
221
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
347
|
+
checksum = "a177aba0ed1e0fbb62aa9f6d0502e9b46dad8c2eab04c14258a1212d2557ea70"
|
|
223
348
|
dependencies = [
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
349
|
+
"ark-ff-asm 0.5.0",
|
|
350
|
+
"ark-ff-macros 0.5.0",
|
|
351
|
+
"ark-serialize 0.5.0",
|
|
352
|
+
"ark-std 0.5.0",
|
|
353
|
+
"arrayvec",
|
|
354
|
+
"digest 0.10.7",
|
|
355
|
+
"educe",
|
|
356
|
+
"itertools 0.13.0",
|
|
357
|
+
"num-bigint",
|
|
358
|
+
"num-traits",
|
|
359
|
+
"paste",
|
|
360
|
+
"zeroize",
|
|
227
361
|
]
|
|
228
362
|
|
|
229
363
|
[[package]]
|
|
230
|
-
name = "
|
|
231
|
-
version = "0.
|
|
364
|
+
name = "ark-ff"
|
|
365
|
+
version = "0.6.0"
|
|
232
366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
-
checksum = "
|
|
367
|
+
checksum = "f7a806ac6c8307b929df4645776290a50ee2aac754ad09d8bdf73391309e43af"
|
|
234
368
|
dependencies = [
|
|
235
|
-
"
|
|
369
|
+
"ark-ff-asm 0.6.0",
|
|
370
|
+
"ark-ff-macros 0.6.0",
|
|
371
|
+
"ark-serialize 0.6.0",
|
|
372
|
+
"ark-std 0.6.0",
|
|
373
|
+
"digest 0.10.7",
|
|
374
|
+
"educe",
|
|
375
|
+
"num-bigint",
|
|
376
|
+
"num-traits",
|
|
377
|
+
"zeroize",
|
|
236
378
|
]
|
|
237
379
|
|
|
238
380
|
[[package]]
|
|
239
|
-
name = "
|
|
240
|
-
version = "
|
|
381
|
+
name = "ark-ff-asm"
|
|
382
|
+
version = "0.3.0"
|
|
241
383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
-
checksum = "
|
|
384
|
+
checksum = "db02d390bf6643fb404d3d22d31aee1c4bc4459600aef9113833d17e786c6e44"
|
|
243
385
|
dependencies = [
|
|
244
|
-
"
|
|
245
|
-
"
|
|
386
|
+
"quote",
|
|
387
|
+
"syn 1.0.109",
|
|
246
388
|
]
|
|
247
389
|
|
|
248
390
|
[[package]]
|
|
249
|
-
name = "
|
|
250
|
-
version = "0.
|
|
391
|
+
name = "ark-ff-asm"
|
|
392
|
+
version = "0.4.2"
|
|
251
393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
-
checksum = "
|
|
394
|
+
checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348"
|
|
253
395
|
dependencies = [
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"json5",
|
|
257
|
-
"pathdiff",
|
|
258
|
-
"ron",
|
|
259
|
-
"rust-ini",
|
|
260
|
-
"serde-untagged",
|
|
261
|
-
"serde_core",
|
|
262
|
-
"serde_json",
|
|
263
|
-
"toml",
|
|
264
|
-
"winnow",
|
|
265
|
-
"yaml-rust2",
|
|
396
|
+
"quote",
|
|
397
|
+
"syn 1.0.109",
|
|
266
398
|
]
|
|
267
399
|
|
|
268
400
|
[[package]]
|
|
269
|
-
name = "
|
|
270
|
-
version = "0.
|
|
401
|
+
name = "ark-ff-asm"
|
|
402
|
+
version = "0.5.0"
|
|
271
403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
-
checksum = "
|
|
404
|
+
checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60"
|
|
273
405
|
dependencies = [
|
|
274
|
-
"
|
|
406
|
+
"quote",
|
|
407
|
+
"syn 2.0.119",
|
|
275
408
|
]
|
|
276
409
|
|
|
277
410
|
[[package]]
|
|
278
|
-
name = "
|
|
279
|
-
version = "0.
|
|
411
|
+
name = "ark-ff-asm"
|
|
412
|
+
version = "0.6.0"
|
|
280
413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
-
checksum = "
|
|
414
|
+
checksum = "1479009684adc073dff49a1025d3a7065b317a9ead25aaaca38cdc70058ba8a2"
|
|
282
415
|
dependencies = [
|
|
283
|
-
"
|
|
284
|
-
"
|
|
285
|
-
"tiny-keccak",
|
|
416
|
+
"quote",
|
|
417
|
+
"syn 2.0.119",
|
|
286
418
|
]
|
|
287
419
|
|
|
288
420
|
[[package]]
|
|
289
|
-
name = "
|
|
290
|
-
version = "0.
|
|
421
|
+
name = "ark-ff-macros"
|
|
422
|
+
version = "0.3.0"
|
|
291
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
-
checksum = "
|
|
424
|
+
checksum = "db2fd794a08ccb318058009eefdf15bcaaaaf6f8161eb3345f907222bac38b20"
|
|
293
425
|
dependencies = [
|
|
294
|
-
"
|
|
426
|
+
"num-bigint",
|
|
427
|
+
"num-traits",
|
|
428
|
+
"quote",
|
|
429
|
+
"syn 1.0.109",
|
|
295
430
|
]
|
|
296
431
|
|
|
297
432
|
[[package]]
|
|
298
|
-
name = "
|
|
299
|
-
version = "0.
|
|
433
|
+
name = "ark-ff-macros"
|
|
434
|
+
version = "0.4.2"
|
|
300
435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
-
checksum = "
|
|
436
|
+
checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565"
|
|
302
437
|
dependencies = [
|
|
303
|
-
"
|
|
438
|
+
"num-bigint",
|
|
439
|
+
"num-traits",
|
|
440
|
+
"proc-macro2",
|
|
441
|
+
"quote",
|
|
442
|
+
"syn 1.0.109",
|
|
304
443
|
]
|
|
305
444
|
|
|
306
445
|
[[package]]
|
|
307
|
-
name = "
|
|
308
|
-
version = "0.
|
|
446
|
+
name = "ark-ff-macros"
|
|
447
|
+
version = "0.5.0"
|
|
309
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
-
checksum = "
|
|
449
|
+
checksum = "09be120733ee33f7693ceaa202ca41accd5653b779563608f1234f78ae07c4b3"
|
|
311
450
|
dependencies = [
|
|
312
|
-
"
|
|
313
|
-
"
|
|
451
|
+
"num-bigint",
|
|
452
|
+
"num-traits",
|
|
453
|
+
"proc-macro2",
|
|
454
|
+
"quote",
|
|
455
|
+
"syn 2.0.119",
|
|
314
456
|
]
|
|
315
457
|
|
|
316
458
|
[[package]]
|
|
317
|
-
name = "
|
|
318
|
-
version = "0.
|
|
459
|
+
name = "ark-ff-macros"
|
|
460
|
+
version = "0.6.0"
|
|
319
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "
|
|
462
|
+
checksum = "4a0691ed21ef00ef89c1e9bda832eba493dda3ec2f8d892fb25b705f73f06bb8"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"num-bigint",
|
|
465
|
+
"num-traits",
|
|
466
|
+
"proc-macro2",
|
|
467
|
+
"quote",
|
|
468
|
+
"syn 2.0.119",
|
|
469
|
+
]
|
|
321
470
|
|
|
322
471
|
[[package]]
|
|
323
|
-
name = "
|
|
472
|
+
name = "ark-serialize"
|
|
324
473
|
version = "0.3.0"
|
|
325
474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
-
checksum = "
|
|
475
|
+
checksum = "1d6c2b318ee6e10f8c2853e73a83adc0ccb88995aa978d8a3408d492ab2ee671"
|
|
327
476
|
dependencies = [
|
|
328
|
-
"
|
|
477
|
+
"ark-std 0.3.0",
|
|
478
|
+
"digest 0.9.0",
|
|
329
479
|
]
|
|
330
480
|
|
|
331
481
|
[[package]]
|
|
332
|
-
name = "
|
|
333
|
-
version = "0.2
|
|
482
|
+
name = "ark-serialize"
|
|
483
|
+
version = "0.4.2"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"ark-std 0.4.0",
|
|
488
|
+
"digest 0.10.7",
|
|
489
|
+
"num-bigint",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "ark-serialize"
|
|
494
|
+
version = "0.5.0"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "3f4d068aaf107ebcd7dfb52bc748f8030e0fc930ac8e360146ca54c1203088f7"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"ark-std 0.5.0",
|
|
499
|
+
"arrayvec",
|
|
500
|
+
"digest 0.10.7",
|
|
501
|
+
"num-bigint",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "ark-serialize"
|
|
506
|
+
version = "0.6.0"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "a74dd304fd536fb95d0a328e72be759209cc496a9da094c5bc56e5fea4f9e86b"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"ark-serialize-derive",
|
|
511
|
+
"ark-std 0.6.0",
|
|
512
|
+
"digest 0.10.7",
|
|
513
|
+
"num-bigint",
|
|
514
|
+
"serde_with",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "ark-serialize-derive"
|
|
519
|
+
version = "0.6.0"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "4f153690697a2b91e5e1251ff98411ee5371500a111a0fd317a70e588eb300f9"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"proc-macro2",
|
|
524
|
+
"quote",
|
|
525
|
+
"syn 2.0.119",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "ark-std"
|
|
530
|
+
version = "0.3.0"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"num-traits",
|
|
535
|
+
"rand 0.8.7",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "ark-std"
|
|
540
|
+
version = "0.4.0"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"num-traits",
|
|
545
|
+
"rand 0.8.7",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "ark-std"
|
|
550
|
+
version = "0.5.0"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "246a225cc6131e9ee4f24619af0f19d67761fff15d7ccc22e42b80846e69449a"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"num-traits",
|
|
555
|
+
"rand 0.8.7",
|
|
556
|
+
]
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "ark-std"
|
|
560
|
+
version = "0.6.0"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "367c9c827ed431bff6868b7aa926e05b16eb46603cc8b6e768e4a5553fa1d155"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"num-traits",
|
|
565
|
+
"rand 0.8.7",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "arraydeque"
|
|
570
|
+
version = "0.5.1"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "arrayvec"
|
|
576
|
+
version = "0.7.8"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "assert-json-diff"
|
|
582
|
+
version = "2.0.2"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"serde",
|
|
587
|
+
"serde_json",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "async-trait"
|
|
592
|
+
version = "0.1.91"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"proc-macro2",
|
|
597
|
+
"quote",
|
|
598
|
+
"syn 3.0.3",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "atomic-waker"
|
|
603
|
+
version = "1.1.2"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "auto_impl"
|
|
609
|
+
version = "1.3.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"proc-macro2",
|
|
614
|
+
"quote",
|
|
615
|
+
"syn 2.0.119",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "autocfg"
|
|
620
|
+
version = "1.5.1"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "aws-lc-rs"
|
|
626
|
+
version = "1.17.3"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"aws-lc-sys",
|
|
631
|
+
"zeroize",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "aws-lc-sys"
|
|
636
|
+
version = "0.43.0"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"cc",
|
|
641
|
+
"cmake",
|
|
642
|
+
"dunce",
|
|
643
|
+
"fs_extra",
|
|
644
|
+
"pkg-config",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "base16ct"
|
|
649
|
+
version = "0.2.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "base16ct"
|
|
655
|
+
version = "1.0.0"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "base64"
|
|
661
|
+
version = "0.22.1"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "base64ct"
|
|
667
|
+
version = "1.8.3"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "bindgen"
|
|
673
|
+
version = "0.72.1"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"bitflags",
|
|
678
|
+
"cexpr",
|
|
679
|
+
"clang-sys",
|
|
680
|
+
"itertools 0.13.0",
|
|
681
|
+
"proc-macro2",
|
|
682
|
+
"quote",
|
|
683
|
+
"regex",
|
|
684
|
+
"rustc-hash 2.1.3",
|
|
685
|
+
"shlex 1.3.0",
|
|
686
|
+
"syn 2.0.119",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "bitcoin-consensus-encoding"
|
|
691
|
+
version = "1.1.0"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "207311705279250ba465076a1bac4b1ac982855fff73fc5f67e22158ac58cdc9"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"bitcoin-internals",
|
|
696
|
+
"hex-conservative 1.2.0",
|
|
697
|
+
"serde",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "bitcoin-internals"
|
|
702
|
+
version = "0.6.0"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "d573f4cf32996a8dce612e4348cece65a241f1882ed594047c9ba348e8869fa5"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "bitcoin-io"
|
|
708
|
+
version = "0.1.101"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "bb5de036369d1ac59d3c1819ebc4d850f89466f5401c571a285b6ed564a4cb78"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"bitcoin-consensus-encoding",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "bitcoin_hashes"
|
|
717
|
+
version = "0.14.101"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "bca4c7abb40c8817d77403c880988cfd484f23ab2365726afb2f798363e2c4a2"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"bitcoin-io",
|
|
722
|
+
"hex-conservative 0.2.2",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "bitflags"
|
|
727
|
+
version = "2.13.1"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"serde_core",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "bitvec"
|
|
736
|
+
version = "1.1.1"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"funty",
|
|
741
|
+
"radium",
|
|
742
|
+
"tap",
|
|
743
|
+
"wyz",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "block-buffer"
|
|
748
|
+
version = "0.9.0"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"generic-array",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "block-buffer"
|
|
757
|
+
version = "0.10.4"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"generic-array",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "block-buffer"
|
|
766
|
+
version = "0.12.1"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"hybrid-array",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "blst"
|
|
775
|
+
version = "0.3.17"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "c20659f9bbee16cbbd2f7393e40ab6309f5a98f76a2eb57a995ec508b72387fe"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"cc",
|
|
780
|
+
"glob",
|
|
781
|
+
"threadpool",
|
|
782
|
+
"zeroize",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "bon"
|
|
787
|
+
version = "3.9.3"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "a602c73c7b0148ec6d12af6fd5cc7a46e2eacc8878271a999abac56eed12f561"
|
|
790
|
+
dependencies = [
|
|
791
|
+
"bon-macros",
|
|
792
|
+
"rustversion",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "bon-macros"
|
|
797
|
+
version = "3.9.3"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "6dee98b0db6a962de883bf5d20362dee4d7ca0d12fe39a7c6c73c844e1cd7c1f"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"darling",
|
|
802
|
+
"ident_case",
|
|
803
|
+
"prettyplease",
|
|
804
|
+
"proc-macro2",
|
|
805
|
+
"quote",
|
|
806
|
+
"rustversion",
|
|
807
|
+
"syn 2.0.119",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "borsh"
|
|
812
|
+
version = "1.8.0"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"borsh-derive",
|
|
817
|
+
"bytes",
|
|
818
|
+
"cfg_aliases",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "borsh-derive"
|
|
823
|
+
version = "1.8.0"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"once_cell",
|
|
828
|
+
"proc-macro-crate",
|
|
829
|
+
"proc-macro2",
|
|
830
|
+
"quote",
|
|
831
|
+
"syn 2.0.119",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "bs58"
|
|
836
|
+
version = "0.5.1"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"tinyvec",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "bumpalo"
|
|
845
|
+
version = "3.20.3"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "byte-slice-cast"
|
|
851
|
+
version = "1.2.3"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d"
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "byteorder"
|
|
857
|
+
version = "1.5.0"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "bytes"
|
|
863
|
+
version = "1.12.1"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"serde",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "c-kzg"
|
|
872
|
+
version = "2.1.8"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "38d04308254695569fdb9bfe3bacc1c91837a670d0806605eb82d63748fbd3a6"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"blst",
|
|
877
|
+
"cc",
|
|
878
|
+
"glob",
|
|
879
|
+
"hex",
|
|
880
|
+
"libc",
|
|
881
|
+
"once_cell",
|
|
882
|
+
"serde",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "cc"
|
|
887
|
+
version = "1.4.0"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
|
|
890
|
+
dependencies = [
|
|
891
|
+
"find-msvc-tools",
|
|
892
|
+
"jobserver",
|
|
893
|
+
"libc",
|
|
894
|
+
"shlex 2.0.1",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "cexpr"
|
|
899
|
+
version = "0.6.0"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"nom",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "cfg-if"
|
|
908
|
+
version = "1.0.4"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "cfg_aliases"
|
|
914
|
+
version = "0.2.2"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "chacha20"
|
|
920
|
+
version = "0.10.1"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"cfg-if",
|
|
925
|
+
"cpufeatures 0.3.0",
|
|
926
|
+
"rand_core 0.10.1",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "chrono"
|
|
931
|
+
version = "0.4.45"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"iana-time-zone",
|
|
936
|
+
"js-sys",
|
|
937
|
+
"num-traits",
|
|
938
|
+
"serde",
|
|
939
|
+
"wasm-bindgen",
|
|
940
|
+
"windows-link",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "clang-sys"
|
|
945
|
+
version = "1.9.1"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"glob",
|
|
950
|
+
"libc",
|
|
951
|
+
"libloading 0.8.9",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "cmake"
|
|
956
|
+
version = "0.1.58"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
959
|
+
dependencies = [
|
|
960
|
+
"cc",
|
|
961
|
+
]
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "cmov"
|
|
965
|
+
version = "0.5.4"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "combine"
|
|
971
|
+
version = "4.6.7"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"bytes",
|
|
976
|
+
"memchr",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "config"
|
|
981
|
+
version = "0.15.25"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "b85f248a4de22d204ceabc6299d89d2c70fbd7f09fea53c06c852369652d8139"
|
|
984
|
+
dependencies = [
|
|
985
|
+
"async-trait",
|
|
986
|
+
"convert_case 0.6.0",
|
|
987
|
+
"json5",
|
|
988
|
+
"pathdiff",
|
|
989
|
+
"ron",
|
|
990
|
+
"rust-ini",
|
|
991
|
+
"serde-untagged",
|
|
992
|
+
"serde_core",
|
|
993
|
+
"serde_json",
|
|
994
|
+
"toml",
|
|
995
|
+
"winnow",
|
|
996
|
+
"yaml-rust2",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "const-hex"
|
|
1001
|
+
version = "1.19.1"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "33e2a781ebdf4467d1428dc4593067825fb646f6871475098d8577421af73558"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"cfg-if",
|
|
1006
|
+
"cpufeatures 0.2.17",
|
|
1007
|
+
"proptest",
|
|
1008
|
+
"serde_core",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "const-oid"
|
|
1013
|
+
version = "0.9.6"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "const-oid"
|
|
1019
|
+
version = "0.10.2"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "const-random"
|
|
1025
|
+
version = "0.1.18"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"const-random-macro",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "const-random-macro"
|
|
1034
|
+
version = "0.1.16"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"getrandom 0.2.17",
|
|
1039
|
+
"once_cell",
|
|
1040
|
+
"tiny-keccak",
|
|
1041
|
+
]
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "const_format"
|
|
1045
|
+
version = "0.2.36"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e"
|
|
1048
|
+
dependencies = [
|
|
1049
|
+
"const_format_proc_macros",
|
|
1050
|
+
"konst",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "const_format_proc_macros"
|
|
1055
|
+
version = "0.2.34"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"proc-macro2",
|
|
1060
|
+
"quote",
|
|
1061
|
+
"unicode-xid",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "convert_case"
|
|
1066
|
+
version = "0.6.0"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"unicode-segmentation",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "convert_case"
|
|
1075
|
+
version = "0.10.0"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"unicode-segmentation",
|
|
1080
|
+
]
|
|
1081
|
+
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "convert_case"
|
|
1084
|
+
version = "0.11.0"
|
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
+
checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
|
|
1087
|
+
dependencies = [
|
|
1088
|
+
"unicode-segmentation",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "core-foundation"
|
|
1093
|
+
version = "0.10.1"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"core-foundation-sys",
|
|
1098
|
+
"libc",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "core-foundation-sys"
|
|
1103
|
+
version = "0.8.7"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "cpubits"
|
|
1109
|
+
version = "0.1.1"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "cpufeatures"
|
|
1115
|
+
version = "0.2.17"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"libc",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "cpufeatures"
|
|
1124
|
+
version = "0.3.0"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"libc",
|
|
1129
|
+
]
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "crc"
|
|
1133
|
+
version = "3.4.0"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"crc-catalog",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "crc-catalog"
|
|
1142
|
+
version = "2.5.0"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "crunchy"
|
|
1148
|
+
version = "0.2.4"
|
|
334
1149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
1150
|
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
336
1151
|
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "crypto-bigint"
|
|
1154
|
+
version = "0.5.5"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"generic-array",
|
|
1159
|
+
"rand_core 0.6.4",
|
|
1160
|
+
"subtle",
|
|
1161
|
+
"zeroize",
|
|
1162
|
+
]
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "crypto-bigint"
|
|
1166
|
+
version = "0.7.5"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "1a52aa3fcda4e6302a9f48734f234d35d4721b96f8fe07d073f07ce9df4f0271"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"cpubits",
|
|
1171
|
+
"ctutils",
|
|
1172
|
+
"getrandom 0.4.3",
|
|
1173
|
+
"hybrid-array",
|
|
1174
|
+
"num-traits",
|
|
1175
|
+
"rand_core 0.10.1",
|
|
1176
|
+
"subtle",
|
|
1177
|
+
"zeroize",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "crypto-common"
|
|
1182
|
+
version = "0.1.6"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"generic-array",
|
|
1187
|
+
"typenum",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "crypto-common"
|
|
1192
|
+
version = "0.2.2"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"getrandom 0.4.3",
|
|
1197
|
+
"hybrid-array",
|
|
1198
|
+
"rand_core 0.10.1",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
337
1201
|
[[package]]
|
|
338
1202
|
name = "ctor"
|
|
339
|
-
version = "1.0.
|
|
1203
|
+
version = "1.0.12"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "2d83cb7e7a873830708d6b02a78cd36a592c6fa14bf267b68725103b85c0d77f"
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "ctutils"
|
|
1209
|
+
version = "0.4.2"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"cmov",
|
|
1214
|
+
"subtle",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "curve25519-dalek"
|
|
1219
|
+
version = "4.1.3"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"cfg-if",
|
|
1224
|
+
"cpufeatures 0.2.17",
|
|
1225
|
+
"curve25519-dalek-derive",
|
|
1226
|
+
"digest 0.10.7",
|
|
1227
|
+
"fiat-crypto",
|
|
1228
|
+
"rustc_version 0.4.1",
|
|
1229
|
+
"subtle",
|
|
1230
|
+
"zeroize",
|
|
1231
|
+
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "curve25519-dalek-derive"
|
|
1235
|
+
version = "0.1.1"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"proc-macro2",
|
|
1240
|
+
"quote",
|
|
1241
|
+
"syn 2.0.119",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "curve25519-dalek-ng"
|
|
1246
|
+
version = "4.1.1"
|
|
340
1247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
-
checksum = "
|
|
1248
|
+
checksum = "1c359b7249347e46fb28804470d071c921156ad62b3eef5d34e2ba867533dec8"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"byteorder",
|
|
1251
|
+
"digest 0.9.0",
|
|
1252
|
+
"rand_core 0.6.4",
|
|
1253
|
+
"subtle-ng",
|
|
1254
|
+
"zeroize",
|
|
1255
|
+
]
|
|
342
1256
|
|
|
343
1257
|
[[package]]
|
|
344
1258
|
name = "darling"
|
|
@@ -360,7 +1274,7 @@ dependencies = [
|
|
|
360
1274
|
"proc-macro2",
|
|
361
1275
|
"quote",
|
|
362
1276
|
"strsim",
|
|
363
|
-
"syn",
|
|
1277
|
+
"syn 2.0.119",
|
|
364
1278
|
]
|
|
365
1279
|
|
|
366
1280
|
[[package]]
|
|
@@ -371,7 +1285,7 @@ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
|
371
1285
|
dependencies = [
|
|
372
1286
|
"darling_core",
|
|
373
1287
|
"quote",
|
|
374
|
-
"syn",
|
|
1288
|
+
"syn 2.0.119",
|
|
375
1289
|
]
|
|
376
1290
|
|
|
377
1291
|
[[package]]
|
|
@@ -392,76 +1306,379 @@ version = "0.1.4"
|
|
|
392
1306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
1307
|
checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
|
|
394
1308
|
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "der"
|
|
1311
|
+
version = "0.7.10"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
1314
|
+
dependencies = [
|
|
1315
|
+
"const-oid 0.9.6",
|
|
1316
|
+
"zeroize",
|
|
1317
|
+
]
|
|
1318
|
+
|
|
1319
|
+
[[package]]
|
|
1320
|
+
name = "der"
|
|
1321
|
+
version = "0.8.1"
|
|
1322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
+
checksum = "a69dedd701da44b0536442edf09c81a64b0ab97a7a4a5e3d1971f00027cbc63d"
|
|
1324
|
+
dependencies = [
|
|
1325
|
+
"const-oid 0.10.2",
|
|
1326
|
+
"zeroize",
|
|
1327
|
+
]
|
|
1328
|
+
|
|
395
1329
|
[[package]]
|
|
396
1330
|
name = "deranged"
|
|
397
1331
|
version = "0.5.8"
|
|
398
1332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
1333
|
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
1334
|
+
dependencies = [
|
|
1335
|
+
"serde_core",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "derivative"
|
|
1340
|
+
version = "2.2.0"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"proc-macro2",
|
|
1345
|
+
"quote",
|
|
1346
|
+
"syn 1.0.109",
|
|
1347
|
+
]
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "derive_more"
|
|
1351
|
+
version = "2.1.1"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"derive_more-impl",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "derive_more-impl"
|
|
1360
|
+
version = "2.1.1"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"convert_case 0.10.0",
|
|
1365
|
+
"proc-macro2",
|
|
1366
|
+
"quote",
|
|
1367
|
+
"rustc_version 0.4.1",
|
|
1368
|
+
"syn 2.0.119",
|
|
1369
|
+
"unicode-xid",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "digest"
|
|
1374
|
+
version = "0.9.0"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"generic-array",
|
|
1379
|
+
]
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "digest"
|
|
1383
|
+
version = "0.10.7"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"block-buffer 0.10.4",
|
|
1388
|
+
"const-oid 0.9.6",
|
|
1389
|
+
"crypto-common 0.1.6",
|
|
1390
|
+
"subtle",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "digest"
|
|
1395
|
+
version = "0.11.3"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1398
|
+
dependencies = [
|
|
1399
|
+
"block-buffer 0.12.1",
|
|
1400
|
+
"const-oid 0.10.2",
|
|
1401
|
+
"crypto-common 0.2.2",
|
|
1402
|
+
"ctutils",
|
|
1403
|
+
]
|
|
400
1404
|
|
|
401
1405
|
[[package]]
|
|
402
1406
|
name = "displaydoc"
|
|
403
|
-
version = "0.2.
|
|
1407
|
+
version = "0.2.7"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"proc-macro2",
|
|
1412
|
+
"quote",
|
|
1413
|
+
"syn 3.0.3",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "dlv-list"
|
|
1418
|
+
version = "0.5.2"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"const-random",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "dunce"
|
|
1427
|
+
version = "1.0.5"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "dyn-clone"
|
|
1433
|
+
version = "1.0.20"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "ecdsa"
|
|
1439
|
+
version = "0.16.9"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
1442
|
+
dependencies = [
|
|
1443
|
+
"der 0.7.10",
|
|
1444
|
+
"digest 0.10.7",
|
|
1445
|
+
"elliptic-curve 0.13.8",
|
|
1446
|
+
"rfc6979 0.4.0",
|
|
1447
|
+
"signature 2.2.0",
|
|
1448
|
+
"spki 0.7.3",
|
|
1449
|
+
]
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "ecdsa"
|
|
1453
|
+
version = "0.17.0"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"der 0.8.1",
|
|
1458
|
+
"digest 0.11.3",
|
|
1459
|
+
"elliptic-curve 0.14.1",
|
|
1460
|
+
"rfc6979 0.6.0",
|
|
1461
|
+
"signature 3.0.0",
|
|
1462
|
+
"spki 0.8.0",
|
|
1463
|
+
"zeroize",
|
|
1464
|
+
]
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "ed25519"
|
|
1468
|
+
version = "2.2.3"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
1471
|
+
dependencies = [
|
|
1472
|
+
"pkcs8 0.10.2",
|
|
1473
|
+
"signature 2.2.0",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "ed25519-consensus"
|
|
1478
|
+
version = "2.1.0"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "3c8465edc8ee7436ffea81d21a019b16676ee3db267aa8d5a8d729581ecf998b"
|
|
1481
|
+
dependencies = [
|
|
1482
|
+
"curve25519-dalek-ng",
|
|
1483
|
+
"hex",
|
|
1484
|
+
"rand_core 0.6.4",
|
|
1485
|
+
"sha2 0.9.9",
|
|
1486
|
+
"zeroize",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "ed25519-dalek"
|
|
1491
|
+
version = "2.2.0"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"curve25519-dalek",
|
|
1496
|
+
"ed25519",
|
|
1497
|
+
"serde",
|
|
1498
|
+
"sha2 0.10.9",
|
|
1499
|
+
"subtle",
|
|
1500
|
+
"zeroize",
|
|
1501
|
+
]
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "educe"
|
|
1505
|
+
version = "0.6.0"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "1d7bc049e1bd8cdeb31b68bbd586a9464ecf9f3944af3958a7a9d0f8b9799417"
|
|
1508
|
+
dependencies = [
|
|
1509
|
+
"enum-ordinalize",
|
|
1510
|
+
"proc-macro2",
|
|
1511
|
+
"quote",
|
|
1512
|
+
"syn 2.0.119",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "either"
|
|
1517
|
+
version = "1.17.0"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "elliptic-curve"
|
|
1523
|
+
version = "0.13.8"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"base16ct 0.2.0",
|
|
1528
|
+
"crypto-bigint 0.5.5",
|
|
1529
|
+
"digest 0.10.7",
|
|
1530
|
+
"ff 0.13.1",
|
|
1531
|
+
"generic-array",
|
|
1532
|
+
"group 0.13.0",
|
|
1533
|
+
"pkcs8 0.10.2",
|
|
1534
|
+
"rand_core 0.6.4",
|
|
1535
|
+
"sec1 0.7.3",
|
|
1536
|
+
"subtle",
|
|
1537
|
+
"zeroize",
|
|
1538
|
+
]
|
|
1539
|
+
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "elliptic-curve"
|
|
1542
|
+
version = "0.14.1"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "9d65aa39b3a5c1c9c1b745c9a019234bb7a21b77abcb4f4d266d706e2d577d65"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"base16ct 1.0.0",
|
|
1547
|
+
"crypto-bigint 0.7.5",
|
|
1548
|
+
"crypto-common 0.2.2",
|
|
1549
|
+
"digest 0.11.3",
|
|
1550
|
+
"ff 0.14.0",
|
|
1551
|
+
"group 0.14.0",
|
|
1552
|
+
"hybrid-array",
|
|
1553
|
+
"pkcs8 0.11.0",
|
|
1554
|
+
"rand_core 0.10.1",
|
|
1555
|
+
"sec1 0.8.1",
|
|
1556
|
+
"subtle",
|
|
1557
|
+
"zeroize",
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "encoding_rs"
|
|
1562
|
+
version = "0.8.35"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
1565
|
+
dependencies = [
|
|
1566
|
+
"cfg-if",
|
|
1567
|
+
]
|
|
1568
|
+
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "enum-ordinalize"
|
|
1571
|
+
version = "4.4.2"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "89dd01549b09589510cf0647475075d12071456586d70f5c75c98ae2a5537677"
|
|
1574
|
+
dependencies = [
|
|
1575
|
+
"enum-ordinalize-derive",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "enum-ordinalize-derive"
|
|
1580
|
+
version = "4.4.2"
|
|
404
1581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
-
checksum = "
|
|
1582
|
+
checksum = "a65863d15a4ce2888bd2f0f543cc963d3879c3a022c8ee43f6141d479a3ac815"
|
|
406
1583
|
dependencies = [
|
|
407
1584
|
"proc-macro2",
|
|
408
1585
|
"quote",
|
|
409
|
-
"syn",
|
|
1586
|
+
"syn 3.0.3",
|
|
1587
|
+
]
|
|
1588
|
+
|
|
1589
|
+
[[package]]
|
|
1590
|
+
name = "equivalent"
|
|
1591
|
+
version = "1.0.2"
|
|
1592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1593
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "erased-serde"
|
|
1597
|
+
version = "0.4.10"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
|
|
1600
|
+
dependencies = [
|
|
1601
|
+
"serde",
|
|
1602
|
+
"serde_core",
|
|
1603
|
+
"typeid",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "fastrlp"
|
|
1608
|
+
version = "0.3.1"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"arrayvec",
|
|
1613
|
+
"auto_impl",
|
|
1614
|
+
"bytes",
|
|
1615
|
+
]
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "fastrlp"
|
|
1619
|
+
version = "0.4.0"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "ce8dba4714ef14b8274c371879b175aa55b16b30f269663f19d576f380018dc4"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"arrayvec",
|
|
1624
|
+
"auto_impl",
|
|
1625
|
+
"bytes",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "ff"
|
|
1630
|
+
version = "0.13.1"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"rand_core 0.6.4",
|
|
1635
|
+
"subtle",
|
|
410
1636
|
]
|
|
411
1637
|
|
|
412
1638
|
[[package]]
|
|
413
|
-
name = "
|
|
414
|
-
version = "0.
|
|
1639
|
+
name = "ff"
|
|
1640
|
+
version = "0.14.0"
|
|
415
1641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "
|
|
1642
|
+
checksum = "a1f686ab92a9fb0eaf188f6c6c87b89490baa6fdb0db4544ba4dc47f7942489f"
|
|
417
1643
|
dependencies = [
|
|
418
|
-
"
|
|
1644
|
+
"rand_core 0.10.1",
|
|
1645
|
+
"subtle",
|
|
419
1646
|
]
|
|
420
1647
|
|
|
421
1648
|
[[package]]
|
|
422
|
-
name = "
|
|
423
|
-
version = "
|
|
1649
|
+
name = "fiat-crypto"
|
|
1650
|
+
version = "0.2.9"
|
|
424
1651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
-
checksum = "
|
|
1652
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
426
1653
|
|
|
427
1654
|
[[package]]
|
|
428
|
-
name = "
|
|
429
|
-
version = "1.
|
|
1655
|
+
name = "find-msvc-tools"
|
|
1656
|
+
version = "0.1.9"
|
|
430
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
-
checksum = "
|
|
1658
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
432
1659
|
|
|
433
1660
|
[[package]]
|
|
434
|
-
name = "
|
|
435
|
-
version = "0.
|
|
1661
|
+
name = "fixed-cache"
|
|
1662
|
+
version = "0.1.10"
|
|
436
1663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
-
checksum = "
|
|
1664
|
+
checksum = "2fe63500644ef0269fe6b744e7e5dc5c20b5eebf3d881bc2be53f194636f6583"
|
|
438
1665
|
dependencies = [
|
|
439
|
-
"
|
|
1666
|
+
"equivalent",
|
|
1667
|
+
"rapidhash",
|
|
440
1668
|
]
|
|
441
1669
|
|
|
442
1670
|
[[package]]
|
|
443
|
-
name = "
|
|
444
|
-
version = "
|
|
445
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
-
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
447
|
-
|
|
448
|
-
[[package]]
|
|
449
|
-
name = "erased-serde"
|
|
450
|
-
version = "0.4.10"
|
|
1671
|
+
name = "fixed-hash"
|
|
1672
|
+
version = "0.8.0"
|
|
451
1673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
-
checksum = "
|
|
1674
|
+
checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
|
|
453
1675
|
dependencies = [
|
|
454
|
-
"
|
|
455
|
-
"
|
|
456
|
-
"
|
|
1676
|
+
"byteorder",
|
|
1677
|
+
"rand 0.8.7",
|
|
1678
|
+
"rustc-hex",
|
|
1679
|
+
"static_assertions",
|
|
457
1680
|
]
|
|
458
1681
|
|
|
459
|
-
[[package]]
|
|
460
|
-
name = "find-msvc-tools"
|
|
461
|
-
version = "0.1.9"
|
|
462
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
-
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
464
|
-
|
|
465
1682
|
[[package]]
|
|
466
1683
|
name = "fnv"
|
|
467
1684
|
version = "1.0.7"
|
|
@@ -489,11 +1706,17 @@ version = "1.3.0"
|
|
|
489
1706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
1707
|
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
491
1708
|
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "funty"
|
|
1711
|
+
version = "2.0.0"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
1714
|
+
|
|
492
1715
|
[[package]]
|
|
493
1716
|
name = "futures"
|
|
494
|
-
version = "0.3.
|
|
1717
|
+
version = "0.3.33"
|
|
495
1718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
-
checksum = "
|
|
1719
|
+
checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
|
|
497
1720
|
dependencies = [
|
|
498
1721
|
"futures-channel",
|
|
499
1722
|
"futures-core",
|
|
@@ -506,9 +1729,9 @@ dependencies = [
|
|
|
506
1729
|
|
|
507
1730
|
[[package]]
|
|
508
1731
|
name = "futures-channel"
|
|
509
|
-
version = "0.3.
|
|
1732
|
+
version = "0.3.33"
|
|
510
1733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
-
checksum = "
|
|
1734
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
512
1735
|
dependencies = [
|
|
513
1736
|
"futures-core",
|
|
514
1737
|
"futures-sink",
|
|
@@ -516,15 +1739,15 @@ dependencies = [
|
|
|
516
1739
|
|
|
517
1740
|
[[package]]
|
|
518
1741
|
name = "futures-core"
|
|
519
|
-
version = "0.3.
|
|
1742
|
+
version = "0.3.33"
|
|
520
1743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
-
checksum = "
|
|
1744
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
522
1745
|
|
|
523
1746
|
[[package]]
|
|
524
1747
|
name = "futures-executor"
|
|
525
|
-
version = "0.3.
|
|
1748
|
+
version = "0.3.33"
|
|
526
1749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
-
checksum = "
|
|
1750
|
+
checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
|
|
528
1751
|
dependencies = [
|
|
529
1752
|
"futures-core",
|
|
530
1753
|
"futures-task",
|
|
@@ -533,38 +1756,38 @@ dependencies = [
|
|
|
533
1756
|
|
|
534
1757
|
[[package]]
|
|
535
1758
|
name = "futures-io"
|
|
536
|
-
version = "0.3.
|
|
1759
|
+
version = "0.3.33"
|
|
537
1760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "
|
|
1761
|
+
checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
|
|
539
1762
|
|
|
540
1763
|
[[package]]
|
|
541
1764
|
name = "futures-macro"
|
|
542
|
-
version = "0.3.
|
|
1765
|
+
version = "0.3.33"
|
|
543
1766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "
|
|
1767
|
+
checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
|
|
545
1768
|
dependencies = [
|
|
546
1769
|
"proc-macro2",
|
|
547
1770
|
"quote",
|
|
548
|
-
"syn",
|
|
1771
|
+
"syn 2.0.119",
|
|
549
1772
|
]
|
|
550
1773
|
|
|
551
1774
|
[[package]]
|
|
552
1775
|
name = "futures-sink"
|
|
553
|
-
version = "0.3.
|
|
1776
|
+
version = "0.3.33"
|
|
554
1777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
-
checksum = "
|
|
1778
|
+
checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
|
|
556
1779
|
|
|
557
1780
|
[[package]]
|
|
558
1781
|
name = "futures-task"
|
|
559
|
-
version = "0.3.
|
|
1782
|
+
version = "0.3.33"
|
|
560
1783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
-
checksum = "
|
|
1784
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
562
1785
|
|
|
563
1786
|
[[package]]
|
|
564
1787
|
name = "futures-util"
|
|
565
|
-
version = "0.3.
|
|
1788
|
+
version = "0.3.33"
|
|
566
1789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
-
checksum = "
|
|
1790
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
568
1791
|
dependencies = [
|
|
569
1792
|
"futures-channel",
|
|
570
1793
|
"futures-core",
|
|
@@ -577,6 +1800,17 @@ dependencies = [
|
|
|
577
1800
|
"slab",
|
|
578
1801
|
]
|
|
579
1802
|
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "generic-array"
|
|
1805
|
+
version = "0.14.9"
|
|
1806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
1808
|
+
dependencies = [
|
|
1809
|
+
"typenum",
|
|
1810
|
+
"version_check",
|
|
1811
|
+
"zeroize",
|
|
1812
|
+
]
|
|
1813
|
+
|
|
580
1814
|
[[package]]
|
|
581
1815
|
name = "getopts"
|
|
582
1816
|
version = "0.2.24"
|
|
@@ -599,6 +1833,18 @@ dependencies = [
|
|
|
599
1833
|
"wasm-bindgen",
|
|
600
1834
|
]
|
|
601
1835
|
|
|
1836
|
+
[[package]]
|
|
1837
|
+
name = "getrandom"
|
|
1838
|
+
version = "0.3.4"
|
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1841
|
+
dependencies = [
|
|
1842
|
+
"cfg-if",
|
|
1843
|
+
"libc",
|
|
1844
|
+
"r-efi 5.3.0",
|
|
1845
|
+
"wasip2",
|
|
1846
|
+
]
|
|
1847
|
+
|
|
602
1848
|
[[package]]
|
|
603
1849
|
name = "getrandom"
|
|
604
1850
|
version = "0.4.3"
|
|
@@ -608,16 +1854,38 @@ dependencies = [
|
|
|
608
1854
|
"cfg-if",
|
|
609
1855
|
"js-sys",
|
|
610
1856
|
"libc",
|
|
611
|
-
"r-efi",
|
|
1857
|
+
"r-efi 6.0.0",
|
|
612
1858
|
"rand_core 0.10.1",
|
|
613
1859
|
"wasm-bindgen",
|
|
614
1860
|
]
|
|
615
1861
|
|
|
616
1862
|
[[package]]
|
|
617
1863
|
name = "glob"
|
|
618
|
-
version = "0.3.
|
|
1864
|
+
version = "0.3.4"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
1867
|
+
|
|
1868
|
+
[[package]]
|
|
1869
|
+
name = "group"
|
|
1870
|
+
version = "0.13.0"
|
|
1871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
1873
|
+
dependencies = [
|
|
1874
|
+
"ff 0.13.1",
|
|
1875
|
+
"rand_core 0.6.4",
|
|
1876
|
+
"subtle",
|
|
1877
|
+
]
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "group"
|
|
1881
|
+
version = "0.14.0"
|
|
619
1882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
1883
|
+
checksum = "7fd1a1c7a5206c5b7a3f5a0d7ccd3ff85d0c8f5133d62a02680255b0004af5f4"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"ff 0.14.0",
|
|
1886
|
+
"rand_core 0.10.1",
|
|
1887
|
+
"subtle",
|
|
1888
|
+
]
|
|
621
1889
|
|
|
622
1890
|
[[package]]
|
|
623
1891
|
name = "h2"
|
|
@@ -631,13 +1899,19 @@ dependencies = [
|
|
|
631
1899
|
"futures-core",
|
|
632
1900
|
"futures-sink",
|
|
633
1901
|
"http",
|
|
634
|
-
"indexmap",
|
|
1902
|
+
"indexmap 2.14.0",
|
|
635
1903
|
"slab",
|
|
636
1904
|
"tokio",
|
|
637
1905
|
"tokio-util",
|
|
638
1906
|
"tracing",
|
|
639
1907
|
]
|
|
640
1908
|
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "hashbrown"
|
|
1911
|
+
version = "0.12.3"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1914
|
+
|
|
641
1915
|
[[package]]
|
|
642
1916
|
name = "hashbrown"
|
|
643
1917
|
version = "0.14.5"
|
|
@@ -658,6 +1932,11 @@ name = "hashbrown"
|
|
|
658
1932
|
version = "0.17.1"
|
|
659
1933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
1934
|
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1935
|
+
dependencies = [
|
|
1936
|
+
"foldhash",
|
|
1937
|
+
"serde",
|
|
1938
|
+
"serde_core",
|
|
1939
|
+
]
|
|
661
1940
|
|
|
662
1941
|
[[package]]
|
|
663
1942
|
name = "hashlink"
|
|
@@ -680,11 +1959,53 @@ version = "0.5.2"
|
|
|
680
1959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
1960
|
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
682
1961
|
|
|
1962
|
+
[[package]]
|
|
1963
|
+
name = "hex"
|
|
1964
|
+
version = "0.4.3"
|
|
1965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1966
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "hex-conservative"
|
|
1970
|
+
version = "0.2.2"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
|
|
1973
|
+
dependencies = [
|
|
1974
|
+
"arrayvec",
|
|
1975
|
+
]
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "hex-conservative"
|
|
1979
|
+
version = "1.2.0"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "35431185f361ccf3ffc58254628af5f1f5d5f28531da2e02e5d6c82bbc282a10"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"arrayvec",
|
|
1984
|
+
]
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "hmac"
|
|
1988
|
+
version = "0.12.1"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1991
|
+
dependencies = [
|
|
1992
|
+
"digest 0.10.7",
|
|
1993
|
+
]
|
|
1994
|
+
|
|
1995
|
+
[[package]]
|
|
1996
|
+
name = "hmac"
|
|
1997
|
+
version = "0.13.0"
|
|
1998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1999
|
+
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
2000
|
+
dependencies = [
|
|
2001
|
+
"digest 0.11.3",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
683
2004
|
[[package]]
|
|
684
2005
|
name = "http"
|
|
685
|
-
version = "1.
|
|
2006
|
+
version = "1.5.0"
|
|
686
2007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
2008
|
+
checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
|
|
688
2009
|
dependencies = [
|
|
689
2010
|
"bytes",
|
|
690
2011
|
"itoa",
|
|
@@ -692,9 +2013,9 @@ dependencies = [
|
|
|
692
2013
|
|
|
693
2014
|
[[package]]
|
|
694
2015
|
name = "http-body"
|
|
695
|
-
version = "1.0
|
|
2016
|
+
version = "1.1.0"
|
|
696
2017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
-
checksum = "
|
|
2018
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
698
2019
|
dependencies = [
|
|
699
2020
|
"bytes",
|
|
700
2021
|
"http",
|
|
@@ -702,9 +2023,9 @@ dependencies = [
|
|
|
702
2023
|
|
|
703
2024
|
[[package]]
|
|
704
2025
|
name = "http-body-util"
|
|
705
|
-
version = "0.1.
|
|
2026
|
+
version = "0.1.4"
|
|
706
2027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
-
checksum = "
|
|
2028
|
+
checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
|
|
708
2029
|
dependencies = [
|
|
709
2030
|
"bytes",
|
|
710
2031
|
"futures-core",
|
|
@@ -725,11 +2046,22 @@ version = "1.0.3"
|
|
|
725
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
2047
|
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
727
2048
|
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "hybrid-array"
|
|
2051
|
+
version = "0.4.14"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"subtle",
|
|
2056
|
+
"typenum",
|
|
2057
|
+
"zeroize",
|
|
2058
|
+
]
|
|
2059
|
+
|
|
728
2060
|
[[package]]
|
|
729
2061
|
name = "hyper"
|
|
730
|
-
version = "1.
|
|
2062
|
+
version = "1.11.0"
|
|
731
2063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
-
checksum = "
|
|
2064
|
+
checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
|
|
733
2065
|
dependencies = [
|
|
734
2066
|
"atomic-waker",
|
|
735
2067
|
"bytes",
|
|
@@ -918,6 +2250,37 @@ dependencies = [
|
|
|
918
2250
|
"icu_properties",
|
|
919
2251
|
]
|
|
920
2252
|
|
|
2253
|
+
[[package]]
|
|
2254
|
+
name = "impl-codec"
|
|
2255
|
+
version = "0.6.0"
|
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
+
checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f"
|
|
2258
|
+
dependencies = [
|
|
2259
|
+
"parity-scale-codec",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "impl-trait-for-tuples"
|
|
2264
|
+
version = "0.2.3"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9"
|
|
2267
|
+
dependencies = [
|
|
2268
|
+
"proc-macro2",
|
|
2269
|
+
"quote",
|
|
2270
|
+
"syn 2.0.119",
|
|
2271
|
+
]
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "indexmap"
|
|
2275
|
+
version = "1.9.3"
|
|
2276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
2278
|
+
dependencies = [
|
|
2279
|
+
"autocfg",
|
|
2280
|
+
"hashbrown 0.12.3",
|
|
2281
|
+
"serde",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
921
2284
|
[[package]]
|
|
922
2285
|
name = "indexmap"
|
|
923
2286
|
version = "2.14.0"
|
|
@@ -926,6 +2289,8 @@ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
|
926
2289
|
dependencies = [
|
|
927
2290
|
"equivalent",
|
|
928
2291
|
"hashbrown 0.17.1",
|
|
2292
|
+
"serde",
|
|
2293
|
+
"serde_core",
|
|
929
2294
|
]
|
|
930
2295
|
|
|
931
2296
|
[[package]]
|
|
@@ -948,9 +2313,9 @@ dependencies = [
|
|
|
948
2313
|
|
|
949
2314
|
[[package]]
|
|
950
2315
|
name = "ipnet"
|
|
951
|
-
version = "2.12.
|
|
2316
|
+
version = "2.12.1"
|
|
952
2317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
-
checksum = "
|
|
2318
|
+
checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
|
|
954
2319
|
|
|
955
2320
|
[[package]]
|
|
956
2321
|
name = "is-macro"
|
|
@@ -961,7 +2326,16 @@ dependencies = [
|
|
|
961
2326
|
"heck",
|
|
962
2327
|
"proc-macro2",
|
|
963
2328
|
"quote",
|
|
964
|
-
"syn",
|
|
2329
|
+
"syn 2.0.119",
|
|
2330
|
+
]
|
|
2331
|
+
|
|
2332
|
+
[[package]]
|
|
2333
|
+
name = "itertools"
|
|
2334
|
+
version = "0.10.5"
|
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2336
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
2337
|
+
dependencies = [
|
|
2338
|
+
"either",
|
|
965
2339
|
]
|
|
966
2340
|
|
|
967
2341
|
[[package]]
|
|
@@ -1009,7 +2383,7 @@ dependencies = [
|
|
|
1009
2383
|
"jni-sys",
|
|
1010
2384
|
"log",
|
|
1011
2385
|
"simd_cesu8",
|
|
1012
|
-
"thiserror 2.0.
|
|
2386
|
+
"thiserror 2.0.19",
|
|
1013
2387
|
"walkdir",
|
|
1014
2388
|
"windows-link",
|
|
1015
2389
|
]
|
|
@@ -1022,9 +2396,9 @@ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
|
1022
2396
|
dependencies = [
|
|
1023
2397
|
"proc-macro2",
|
|
1024
2398
|
"quote",
|
|
1025
|
-
"rustc_version",
|
|
2399
|
+
"rustc_version 0.4.1",
|
|
1026
2400
|
"simd_cesu8",
|
|
1027
|
-
"syn",
|
|
2401
|
+
"syn 2.0.119",
|
|
1028
2402
|
]
|
|
1029
2403
|
|
|
1030
2404
|
[[package]]
|
|
@@ -1043,7 +2417,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1043
2417
|
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1044
2418
|
dependencies = [
|
|
1045
2419
|
"quote",
|
|
1046
|
-
"syn",
|
|
2420
|
+
"syn 2.0.119",
|
|
1047
2421
|
]
|
|
1048
2422
|
|
|
1049
2423
|
[[package]]
|
|
@@ -1078,6 +2452,78 @@ dependencies = [
|
|
|
1078
2452
|
"serde",
|
|
1079
2453
|
]
|
|
1080
2454
|
|
|
2455
|
+
[[package]]
|
|
2456
|
+
name = "k256"
|
|
2457
|
+
version = "0.13.4"
|
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
+
checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
|
|
2460
|
+
dependencies = [
|
|
2461
|
+
"cfg-if",
|
|
2462
|
+
"ecdsa 0.16.9",
|
|
2463
|
+
"elliptic-curve 0.13.8",
|
|
2464
|
+
"once_cell",
|
|
2465
|
+
"sha2 0.10.9",
|
|
2466
|
+
]
|
|
2467
|
+
|
|
2468
|
+
[[package]]
|
|
2469
|
+
name = "k256"
|
|
2470
|
+
version = "0.14.0"
|
|
2471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2472
|
+
checksum = "93f50113171a713f4a4231ef82eb26703607139b35dcb56241f0ceab2ae1f7d8"
|
|
2473
|
+
dependencies = [
|
|
2474
|
+
"cpubits",
|
|
2475
|
+
"ecdsa 0.17.0",
|
|
2476
|
+
"elliptic-curve 0.14.1",
|
|
2477
|
+
"primeorder 0.14.0",
|
|
2478
|
+
"sha2 0.11.0",
|
|
2479
|
+
"signature 3.0.0",
|
|
2480
|
+
"wnaf",
|
|
2481
|
+
]
|
|
2482
|
+
|
|
2483
|
+
[[package]]
|
|
2484
|
+
name = "keccak"
|
|
2485
|
+
version = "0.1.6"
|
|
2486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2487
|
+
checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
|
|
2488
|
+
dependencies = [
|
|
2489
|
+
"cpufeatures 0.2.17",
|
|
2490
|
+
]
|
|
2491
|
+
|
|
2492
|
+
[[package]]
|
|
2493
|
+
name = "keccak"
|
|
2494
|
+
version = "0.2.0"
|
|
2495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2496
|
+
checksum = "9e24a010dd405bd7ed803e5253182815b41bf2e6a80cc3bfc066658e03a198aa"
|
|
2497
|
+
dependencies = [
|
|
2498
|
+
"cfg-if",
|
|
2499
|
+
"cpufeatures 0.3.0",
|
|
2500
|
+
]
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "keccak-asm"
|
|
2504
|
+
version = "0.1.8"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "dd5dc2c0d691cbf7595cde551ced329cca99c2387c2cbc97754c5d0cd045d3ee"
|
|
2507
|
+
dependencies = [
|
|
2508
|
+
"digest 0.10.7",
|
|
2509
|
+
"sha3-asm",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "konst"
|
|
2514
|
+
version = "0.2.20"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb"
|
|
2517
|
+
dependencies = [
|
|
2518
|
+
"konst_macro_rules",
|
|
2519
|
+
]
|
|
2520
|
+
|
|
2521
|
+
[[package]]
|
|
2522
|
+
name = "konst_macro_rules"
|
|
2523
|
+
version = "0.2.19"
|
|
2524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2525
|
+
checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37"
|
|
2526
|
+
|
|
1081
2527
|
[[package]]
|
|
1082
2528
|
name = "lalrpop-util"
|
|
1083
2529
|
version = "0.20.2"
|
|
@@ -1092,9 +2538,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
1092
2538
|
|
|
1093
2539
|
[[package]]
|
|
1094
2540
|
name = "libc"
|
|
1095
|
-
version = "0.2.
|
|
2541
|
+
version = "0.2.189"
|
|
1096
2542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
-
checksum = "
|
|
2543
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
1098
2544
|
|
|
1099
2545
|
[[package]]
|
|
1100
2546
|
name = "libloading"
|
|
@@ -1116,6 +2562,12 @@ dependencies = [
|
|
|
1116
2562
|
"windows-link",
|
|
1117
2563
|
]
|
|
1118
2564
|
|
|
2565
|
+
[[package]]
|
|
2566
|
+
name = "libm"
|
|
2567
|
+
version = "0.2.16"
|
|
2568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
2570
|
+
|
|
1119
2571
|
[[package]]
|
|
1120
2572
|
name = "litemap"
|
|
1121
2573
|
version = "0.8.2"
|
|
@@ -1134,6 +2586,17 @@ version = "0.1.2"
|
|
|
1134
2586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
2587
|
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1136
2588
|
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "macro-string"
|
|
2591
|
+
version = "0.2.0"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "59a9dbbfc75d2688ed057456ce8a3ee3f48d12eec09229f560f3643b9f275653"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"proc-macro2",
|
|
2596
|
+
"quote",
|
|
2597
|
+
"syn 2.0.119",
|
|
2598
|
+
]
|
|
2599
|
+
|
|
1137
2600
|
[[package]]
|
|
1138
2601
|
name = "magnus"
|
|
1139
2602
|
version = "0.8.2"
|
|
@@ -1154,7 +2617,7 @@ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
|
1154
2617
|
dependencies = [
|
|
1155
2618
|
"proc-macro2",
|
|
1156
2619
|
"quote",
|
|
1157
|
-
"syn",
|
|
2620
|
+
"syn 2.0.119",
|
|
1158
2621
|
]
|
|
1159
2622
|
|
|
1160
2623
|
[[package]]
|
|
@@ -1165,9 +2628,9 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
|
1165
2628
|
|
|
1166
2629
|
[[package]]
|
|
1167
2630
|
name = "matrixmultiply"
|
|
1168
|
-
version = "0.3.
|
|
2631
|
+
version = "0.3.11"
|
|
1169
2632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
-
checksum = "
|
|
2633
|
+
checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
|
|
1171
2634
|
dependencies = [
|
|
1172
2635
|
"autocfg",
|
|
1173
2636
|
"rawpointer",
|
|
@@ -1175,9 +2638,9 @@ dependencies = [
|
|
|
1175
2638
|
|
|
1176
2639
|
[[package]]
|
|
1177
2640
|
name = "memchr"
|
|
1178
|
-
version = "2.8.
|
|
2641
|
+
version = "2.8.3"
|
|
1179
2642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
-
checksum = "
|
|
2643
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1181
2644
|
|
|
1182
2645
|
[[package]]
|
|
1183
2646
|
name = "memoffset"
|
|
@@ -1196,9 +2659,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1196
2659
|
|
|
1197
2660
|
[[package]]
|
|
1198
2661
|
name = "mio"
|
|
1199
|
-
version = "1.2.
|
|
2662
|
+
version = "1.2.2"
|
|
1200
2663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
-
checksum = "
|
|
2664
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
1202
2665
|
dependencies = [
|
|
1203
2666
|
"libc",
|
|
1204
2667
|
"wasi",
|
|
@@ -1207,9 +2670,9 @@ dependencies = [
|
|
|
1207
2670
|
|
|
1208
2671
|
[[package]]
|
|
1209
2672
|
name = "napi"
|
|
1210
|
-
version = "3.
|
|
2673
|
+
version = "3.12.0"
|
|
1211
2674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
-
checksum = "
|
|
2675
|
+
checksum = "6f71d6bc097c4a6eb853c3f24991ab8c9f50f57d1f719e305175541482217e36"
|
|
1213
2676
|
dependencies = [
|
|
1214
2677
|
"bitflags",
|
|
1215
2678
|
"ctor",
|
|
@@ -1225,42 +2688,42 @@ dependencies = [
|
|
|
1225
2688
|
|
|
1226
2689
|
[[package]]
|
|
1227
2690
|
name = "napi-build"
|
|
1228
|
-
version = "2.
|
|
2691
|
+
version = "2.4.0"
|
|
1229
2692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
-
checksum = "
|
|
2693
|
+
checksum = "5282704fbe8d49b0cf8b08e3f33233416a528658f205c7e5ace63b582de0b11c"
|
|
1231
2694
|
|
|
1232
2695
|
[[package]]
|
|
1233
2696
|
name = "napi-derive"
|
|
1234
|
-
version = "3.
|
|
2697
|
+
version = "3.6.2"
|
|
1235
2698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
-
checksum = "
|
|
2699
|
+
checksum = "6d9002b2940f0184444754546e0fcd15182f56948e6f381968b019d549387c42"
|
|
1237
2700
|
dependencies = [
|
|
1238
2701
|
"convert_case 0.11.0",
|
|
1239
2702
|
"ctor",
|
|
1240
2703
|
"napi-derive-backend",
|
|
1241
2704
|
"proc-macro2",
|
|
1242
2705
|
"quote",
|
|
1243
|
-
"syn",
|
|
2706
|
+
"syn 2.0.119",
|
|
1244
2707
|
]
|
|
1245
2708
|
|
|
1246
2709
|
[[package]]
|
|
1247
2710
|
name = "napi-derive-backend"
|
|
1248
|
-
version = "
|
|
2711
|
+
version = "6.1.1"
|
|
1249
2712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
-
checksum = "
|
|
2713
|
+
checksum = "d60b5d773ad46c698c8cc2cd9fde0b283d39cbb7f71c04bee633c7bdba4423bd"
|
|
1251
2714
|
dependencies = [
|
|
1252
2715
|
"convert_case 0.11.0",
|
|
1253
2716
|
"proc-macro2",
|
|
1254
2717
|
"quote",
|
|
1255
|
-
"semver",
|
|
1256
|
-
"syn",
|
|
2718
|
+
"semver 1.0.28",
|
|
2719
|
+
"syn 2.0.119",
|
|
1257
2720
|
]
|
|
1258
2721
|
|
|
1259
2722
|
[[package]]
|
|
1260
2723
|
name = "napi-sys"
|
|
1261
|
-
version = "3.
|
|
2724
|
+
version = "3.3.0"
|
|
1262
2725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
-
checksum = "
|
|
2726
|
+
checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
|
|
1264
2727
|
dependencies = [
|
|
1265
2728
|
"libloading 0.9.0",
|
|
1266
2729
|
]
|
|
@@ -1337,6 +2800,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1337
2800
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1338
2801
|
dependencies = [
|
|
1339
2802
|
"autocfg",
|
|
2803
|
+
"libm",
|
|
1340
2804
|
]
|
|
1341
2805
|
|
|
1342
2806
|
[[package]]
|
|
@@ -1365,12 +2829,32 @@ dependencies = [
|
|
|
1365
2829
|
"rustc-hash 2.1.3",
|
|
1366
2830
|
]
|
|
1367
2831
|
|
|
2832
|
+
[[package]]
|
|
2833
|
+
name = "nybbles"
|
|
2834
|
+
version = "0.4.8"
|
|
2835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
+
checksum = "0d49ff0c0d00d4a502b39df9af3a525e1efeb14b9dabb5bb83335284c1309210"
|
|
2837
|
+
dependencies = [
|
|
2838
|
+
"alloy-rlp",
|
|
2839
|
+
"cfg-if",
|
|
2840
|
+
"proptest",
|
|
2841
|
+
"ruint",
|
|
2842
|
+
"serde",
|
|
2843
|
+
"smallvec",
|
|
2844
|
+
]
|
|
2845
|
+
|
|
1368
2846
|
[[package]]
|
|
1369
2847
|
name = "once_cell"
|
|
1370
2848
|
version = "1.21.4"
|
|
1371
2849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
2850
|
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1373
2851
|
|
|
2852
|
+
[[package]]
|
|
2853
|
+
name = "opaque-debug"
|
|
2854
|
+
version = "0.3.1"
|
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
2857
|
+
|
|
1374
2858
|
[[package]]
|
|
1375
2859
|
name = "openssl-probe"
|
|
1376
2860
|
version = "0.2.1"
|
|
@@ -1378,24 +2862,70 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1378
2862
|
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1379
2863
|
|
|
1380
2864
|
[[package]]
|
|
1381
|
-
name = "ordered-float"
|
|
1382
|
-
version = "5.3.0"
|
|
2865
|
+
name = "ordered-float"
|
|
2866
|
+
version = "5.3.0"
|
|
2867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
+
checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
|
|
2869
|
+
dependencies = [
|
|
2870
|
+
"num-traits",
|
|
2871
|
+
]
|
|
2872
|
+
|
|
2873
|
+
[[package]]
|
|
2874
|
+
name = "ordered-multimap"
|
|
2875
|
+
version = "0.7.3"
|
|
2876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2877
|
+
checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
|
|
2878
|
+
dependencies = [
|
|
2879
|
+
"dlv-list",
|
|
2880
|
+
"hashbrown 0.14.5",
|
|
2881
|
+
]
|
|
2882
|
+
|
|
2883
|
+
[[package]]
|
|
2884
|
+
name = "p256"
|
|
2885
|
+
version = "0.13.2"
|
|
2886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
2888
|
+
dependencies = [
|
|
2889
|
+
"ecdsa 0.16.9",
|
|
2890
|
+
"elliptic-curve 0.13.8",
|
|
2891
|
+
"primeorder 0.13.6",
|
|
2892
|
+
"sha2 0.10.9",
|
|
2893
|
+
]
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "parity-scale-codec"
|
|
2897
|
+
version = "3.7.5"
|
|
1383
2898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
-
checksum = "
|
|
2899
|
+
checksum = "799781ae679d79a948e13d4824a40970bfa500058d245760dd857301059810fa"
|
|
1385
2900
|
dependencies = [
|
|
1386
|
-
"
|
|
2901
|
+
"arrayvec",
|
|
2902
|
+
"bitvec",
|
|
2903
|
+
"byte-slice-cast",
|
|
2904
|
+
"const_format",
|
|
2905
|
+
"impl-trait-for-tuples",
|
|
2906
|
+
"parity-scale-codec-derive",
|
|
2907
|
+
"rustversion",
|
|
2908
|
+
"serde",
|
|
1387
2909
|
]
|
|
1388
2910
|
|
|
1389
2911
|
[[package]]
|
|
1390
|
-
name = "
|
|
1391
|
-
version = "
|
|
2912
|
+
name = "parity-scale-codec-derive"
|
|
2913
|
+
version = "3.7.5"
|
|
1392
2914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
-
checksum = "
|
|
2915
|
+
checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a"
|
|
1394
2916
|
dependencies = [
|
|
1395
|
-
"
|
|
1396
|
-
"
|
|
2917
|
+
"proc-macro-crate",
|
|
2918
|
+
"proc-macro2",
|
|
2919
|
+
"quote",
|
|
2920
|
+
"syn 2.0.119",
|
|
1397
2921
|
]
|
|
1398
2922
|
|
|
2923
|
+
[[package]]
|
|
2924
|
+
name = "paste"
|
|
2925
|
+
version = "1.0.15"
|
|
2926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2928
|
+
|
|
1399
2929
|
[[package]]
|
|
1400
2930
|
name = "pathdiff"
|
|
1401
2931
|
version = "0.2.3"
|
|
@@ -1410,9 +2940,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
1410
2940
|
|
|
1411
2941
|
[[package]]
|
|
1412
2942
|
name = "pest"
|
|
1413
|
-
version = "2.8.
|
|
2943
|
+
version = "2.8.8"
|
|
1414
2944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
-
checksum = "
|
|
2945
|
+
checksum = "7df728be843c7070fab6ab7c328c4e9e9d78e23bf749c0669c86ee7ebfa050a2"
|
|
1416
2946
|
dependencies = [
|
|
1417
2947
|
"memchr",
|
|
1418
2948
|
"ucd-trie",
|
|
@@ -1420,9 +2950,9 @@ dependencies = [
|
|
|
1420
2950
|
|
|
1421
2951
|
[[package]]
|
|
1422
2952
|
name = "pest_derive"
|
|
1423
|
-
version = "2.8.
|
|
2953
|
+
version = "2.8.8"
|
|
1424
2954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
-
checksum = "
|
|
2955
|
+
checksum = "9e2dd6fc3b26b3462ee188aac870f5a41d398f1cd5e2408d16531bd71c9591fd"
|
|
1426
2956
|
dependencies = [
|
|
1427
2957
|
"pest",
|
|
1428
2958
|
"pest_generator",
|
|
@@ -1430,22 +2960,22 @@ dependencies = [
|
|
|
1430
2960
|
|
|
1431
2961
|
[[package]]
|
|
1432
2962
|
name = "pest_generator"
|
|
1433
|
-
version = "2.8.
|
|
2963
|
+
version = "2.8.8"
|
|
1434
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
-
checksum = "
|
|
2965
|
+
checksum = "6a7a9205cfb6f596a9e8b689c0a15f9ceb7a1aafae7aaf788150ac65b29975b6"
|
|
1436
2966
|
dependencies = [
|
|
1437
2967
|
"pest",
|
|
1438
2968
|
"pest_meta",
|
|
1439
2969
|
"proc-macro2",
|
|
1440
2970
|
"quote",
|
|
1441
|
-
"syn",
|
|
2971
|
+
"syn 2.0.119",
|
|
1442
2972
|
]
|
|
1443
2973
|
|
|
1444
2974
|
[[package]]
|
|
1445
2975
|
name = "pest_meta"
|
|
1446
|
-
version = "2.8.
|
|
2976
|
+
version = "2.8.8"
|
|
1447
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
-
checksum = "
|
|
2978
|
+
checksum = "85abd351c0de1e8384fc791a0737111a350394937e92b956b743dac12429f57c"
|
|
1449
2979
|
dependencies = [
|
|
1450
2980
|
"pest",
|
|
1451
2981
|
]
|
|
@@ -1476,7 +3006,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1476
3006
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
1477
3007
|
dependencies = [
|
|
1478
3008
|
"phf_shared",
|
|
1479
|
-
"rand 0.8.
|
|
3009
|
+
"rand 0.8.7",
|
|
1480
3010
|
]
|
|
1481
3011
|
|
|
1482
3012
|
[[package]]
|
|
@@ -1494,6 +3024,26 @@ version = "0.2.17"
|
|
|
1494
3024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
3025
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1496
3026
|
|
|
3027
|
+
[[package]]
|
|
3028
|
+
name = "pkcs8"
|
|
3029
|
+
version = "0.10.2"
|
|
3030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3031
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
3032
|
+
dependencies = [
|
|
3033
|
+
"der 0.7.10",
|
|
3034
|
+
"spki 0.7.3",
|
|
3035
|
+
]
|
|
3036
|
+
|
|
3037
|
+
[[package]]
|
|
3038
|
+
name = "pkcs8"
|
|
3039
|
+
version = "0.11.0"
|
|
3040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
|
+
checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
|
|
3042
|
+
dependencies = [
|
|
3043
|
+
"der 0.8.1",
|
|
3044
|
+
"spki 0.8.0",
|
|
3045
|
+
]
|
|
3046
|
+
|
|
1497
3047
|
[[package]]
|
|
1498
3048
|
name = "pkg-config"
|
|
1499
3049
|
version = "0.3.33"
|
|
@@ -1502,9 +3052,9 @@ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
|
1502
3052
|
|
|
1503
3053
|
[[package]]
|
|
1504
3054
|
name = "portable-atomic"
|
|
1505
|
-
version = "1.
|
|
3055
|
+
version = "1.14.0"
|
|
1506
3056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
-
checksum = "
|
|
3057
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
1508
3058
|
|
|
1509
3059
|
[[package]]
|
|
1510
3060
|
name = "portable-atomic-util"
|
|
@@ -1546,18 +3096,111 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1546
3096
|
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1547
3097
|
dependencies = [
|
|
1548
3098
|
"proc-macro2",
|
|
1549
|
-
"syn",
|
|
3099
|
+
"syn 2.0.119",
|
|
3100
|
+
]
|
|
3101
|
+
|
|
3102
|
+
[[package]]
|
|
3103
|
+
name = "primefield"
|
|
3104
|
+
version = "0.14.0"
|
|
3105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
+
checksum = "c555a6e4eb7d4e158fcb028c835c3b8642206ddc279b5c6b202ef9a8bdb592f4"
|
|
3107
|
+
dependencies = [
|
|
3108
|
+
"crypto-bigint 0.7.5",
|
|
3109
|
+
"crypto-common 0.2.2",
|
|
3110
|
+
"ff 0.14.0",
|
|
3111
|
+
"rand_core 0.10.1",
|
|
3112
|
+
"subtle",
|
|
3113
|
+
"zeroize",
|
|
3114
|
+
]
|
|
3115
|
+
|
|
3116
|
+
[[package]]
|
|
3117
|
+
name = "primeorder"
|
|
3118
|
+
version = "0.13.6"
|
|
3119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3120
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
3121
|
+
dependencies = [
|
|
3122
|
+
"elliptic-curve 0.13.8",
|
|
3123
|
+
]
|
|
3124
|
+
|
|
3125
|
+
[[package]]
|
|
3126
|
+
name = "primeorder"
|
|
3127
|
+
version = "0.14.0"
|
|
3128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
+
checksum = "5c9f42978c78a00e3d68f69fc03e57a234debae69da4020a4fb588fcdcd07b06"
|
|
3130
|
+
dependencies = [
|
|
3131
|
+
"elliptic-curve 0.14.1",
|
|
3132
|
+
"once_cell",
|
|
3133
|
+
"primefield",
|
|
3134
|
+
"serdect",
|
|
3135
|
+
"wnaf",
|
|
3136
|
+
]
|
|
3137
|
+
|
|
3138
|
+
[[package]]
|
|
3139
|
+
name = "primitive-types"
|
|
3140
|
+
version = "0.12.2"
|
|
3141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3142
|
+
checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2"
|
|
3143
|
+
dependencies = [
|
|
3144
|
+
"fixed-hash",
|
|
3145
|
+
"impl-codec",
|
|
3146
|
+
"uint",
|
|
3147
|
+
]
|
|
3148
|
+
|
|
3149
|
+
[[package]]
|
|
3150
|
+
name = "proc-macro-crate"
|
|
3151
|
+
version = "3.5.0"
|
|
3152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3153
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
3154
|
+
dependencies = [
|
|
3155
|
+
"toml_edit",
|
|
3156
|
+
]
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "proc-macro-error-attr3"
|
|
3160
|
+
version = "3.0.1"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "82366fd7d8b7a440d66d13418820c69df9b3908bcb1a0476d7f5ce5d12f5a04d"
|
|
3163
|
+
dependencies = [
|
|
3164
|
+
"proc-macro2",
|
|
3165
|
+
"quote",
|
|
3166
|
+
]
|
|
3167
|
+
|
|
3168
|
+
[[package]]
|
|
3169
|
+
name = "proc-macro-error3"
|
|
3170
|
+
version = "3.0.1"
|
|
3171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3172
|
+
checksum = "b511283ea8a74b4b39447b128c5d00f03a356b7424554b13e298a5550100d9ac"
|
|
3173
|
+
dependencies = [
|
|
3174
|
+
"proc-macro-error-attr3",
|
|
3175
|
+
"proc-macro2",
|
|
3176
|
+
"quote",
|
|
3177
|
+
"syn 2.0.119",
|
|
1550
3178
|
]
|
|
1551
3179
|
|
|
1552
3180
|
[[package]]
|
|
1553
3181
|
name = "proc-macro2"
|
|
1554
|
-
version = "1.0.
|
|
3182
|
+
version = "1.0.107"
|
|
1555
3183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
-
checksum = "
|
|
3184
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1557
3185
|
dependencies = [
|
|
1558
3186
|
"unicode-ident",
|
|
1559
3187
|
]
|
|
1560
3188
|
|
|
3189
|
+
[[package]]
|
|
3190
|
+
name = "proptest"
|
|
3191
|
+
version = "1.11.0"
|
|
3192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
3194
|
+
dependencies = [
|
|
3195
|
+
"bitflags",
|
|
3196
|
+
"num-traits",
|
|
3197
|
+
"rand 0.9.5",
|
|
3198
|
+
"rand_chacha 0.9.0",
|
|
3199
|
+
"rand_xorshift",
|
|
3200
|
+
"regex-syntax",
|
|
3201
|
+
"unarray",
|
|
3202
|
+
]
|
|
3203
|
+
|
|
1561
3204
|
[[package]]
|
|
1562
3205
|
name = "pyo3"
|
|
1563
3206
|
version = "0.27.2"
|
|
@@ -1616,7 +3259,7 @@ dependencies = [
|
|
|
1616
3259
|
"proc-macro2",
|
|
1617
3260
|
"pyo3-macros-backend",
|
|
1618
3261
|
"quote",
|
|
1619
|
-
"syn",
|
|
3262
|
+
"syn 2.0.119",
|
|
1620
3263
|
]
|
|
1621
3264
|
|
|
1622
3265
|
[[package]]
|
|
@@ -1629,7 +3272,7 @@ dependencies = [
|
|
|
1629
3272
|
"proc-macro2",
|
|
1630
3273
|
"pyo3-build-config",
|
|
1631
3274
|
"quote",
|
|
1632
|
-
"syn",
|
|
3275
|
+
"syn 2.0.119",
|
|
1633
3276
|
]
|
|
1634
3277
|
|
|
1635
3278
|
[[package]]
|
|
@@ -1641,7 +3284,7 @@ dependencies = [
|
|
|
1641
3284
|
"anyhow",
|
|
1642
3285
|
"chrono",
|
|
1643
3286
|
"either",
|
|
1644
|
-
"indexmap",
|
|
3287
|
+
"indexmap 2.14.0",
|
|
1645
3288
|
"inventory",
|
|
1646
3289
|
"itertools 0.14.0",
|
|
1647
3290
|
"log",
|
|
@@ -1665,11 +3308,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1665
3308
|
checksum = "a8c79e7c5b1fcec7c39ab186594658a971c59911eb6fbab5a5932cf2318534be"
|
|
1666
3309
|
dependencies = [
|
|
1667
3310
|
"heck",
|
|
1668
|
-
"indexmap",
|
|
3311
|
+
"indexmap 2.14.0",
|
|
1669
3312
|
"proc-macro2",
|
|
1670
3313
|
"quote",
|
|
1671
3314
|
"rustpython-parser",
|
|
1672
|
-
"syn",
|
|
3315
|
+
"syn 2.0.119",
|
|
1673
3316
|
]
|
|
1674
3317
|
|
|
1675
3318
|
[[package]]
|
|
@@ -1684,20 +3327,32 @@ dependencies = [
|
|
|
1684
3327
|
|
|
1685
3328
|
[[package]]
|
|
1686
3329
|
name = "quicknode-sdk"
|
|
1687
|
-
version = "0.
|
|
3330
|
+
version = "0.8.0"
|
|
1688
3331
|
dependencies = [
|
|
3332
|
+
"alloy-consensus",
|
|
3333
|
+
"alloy-primitives",
|
|
3334
|
+
"alloy-rlp",
|
|
3335
|
+
"base64",
|
|
1689
3336
|
"bon",
|
|
3337
|
+
"bs58",
|
|
1690
3338
|
"config",
|
|
3339
|
+
"ed25519-dalek",
|
|
3340
|
+
"hex",
|
|
3341
|
+
"k256 0.14.0",
|
|
1691
3342
|
"magnus",
|
|
1692
3343
|
"napi",
|
|
1693
3344
|
"napi-derive",
|
|
1694
3345
|
"pyo3",
|
|
1695
3346
|
"pyo3-async-runtimes",
|
|
1696
3347
|
"pyo3-stub-gen",
|
|
3348
|
+
"rand 0.8.7",
|
|
1697
3349
|
"reqwest",
|
|
1698
3350
|
"secrecy",
|
|
1699
3351
|
"serde",
|
|
1700
3352
|
"serde_json",
|
|
3353
|
+
"sha2 0.10.9",
|
|
3354
|
+
"sha3 0.10.9",
|
|
3355
|
+
"tempo-primitives",
|
|
1701
3356
|
"thiserror 1.0.69",
|
|
1702
3357
|
"tokio",
|
|
1703
3358
|
"url",
|
|
@@ -1718,7 +3373,7 @@ dependencies = [
|
|
|
1718
3373
|
"rustc-hash 2.1.3",
|
|
1719
3374
|
"rustls",
|
|
1720
3375
|
"socket2",
|
|
1721
|
-
"thiserror 2.0.
|
|
3376
|
+
"thiserror 2.0.19",
|
|
1722
3377
|
"tokio",
|
|
1723
3378
|
"tracing",
|
|
1724
3379
|
"web-time",
|
|
@@ -1741,7 +3396,7 @@ dependencies = [
|
|
|
1741
3396
|
"rustls",
|
|
1742
3397
|
"rustls-pki-types",
|
|
1743
3398
|
"slab",
|
|
1744
|
-
"thiserror 2.0.
|
|
3399
|
+
"thiserror 2.0.19",
|
|
1745
3400
|
"tinyvec",
|
|
1746
3401
|
"tracing",
|
|
1747
3402
|
"web-time",
|
|
@@ -1763,30 +3418,53 @@ dependencies = [
|
|
|
1763
3418
|
|
|
1764
3419
|
[[package]]
|
|
1765
3420
|
name = "quote"
|
|
1766
|
-
version = "1.0.
|
|
3421
|
+
version = "1.0.47"
|
|
1767
3422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
-
checksum = "
|
|
3423
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1769
3424
|
dependencies = [
|
|
1770
3425
|
"proc-macro2",
|
|
1771
3426
|
]
|
|
1772
3427
|
|
|
3428
|
+
[[package]]
|
|
3429
|
+
name = "r-efi"
|
|
3430
|
+
version = "5.3.0"
|
|
3431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3432
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
3433
|
+
|
|
1773
3434
|
[[package]]
|
|
1774
3435
|
name = "r-efi"
|
|
1775
3436
|
version = "6.0.0"
|
|
1776
3437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
3438
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1778
3439
|
|
|
3440
|
+
[[package]]
|
|
3441
|
+
name = "radium"
|
|
3442
|
+
version = "0.7.0"
|
|
3443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3444
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
3445
|
+
|
|
1779
3446
|
[[package]]
|
|
1780
3447
|
name = "rand"
|
|
1781
|
-
version = "0.8.
|
|
3448
|
+
version = "0.8.7"
|
|
1782
3449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
-
checksum = "
|
|
3450
|
+
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
1784
3451
|
dependencies = [
|
|
1785
3452
|
"libc",
|
|
1786
|
-
"rand_chacha",
|
|
3453
|
+
"rand_chacha 0.3.1",
|
|
1787
3454
|
"rand_core 0.6.4",
|
|
1788
3455
|
]
|
|
1789
3456
|
|
|
3457
|
+
[[package]]
|
|
3458
|
+
name = "rand"
|
|
3459
|
+
version = "0.9.5"
|
|
3460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3461
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
3462
|
+
dependencies = [
|
|
3463
|
+
"rand_chacha 0.9.0",
|
|
3464
|
+
"rand_core 0.9.5",
|
|
3465
|
+
"serde",
|
|
3466
|
+
]
|
|
3467
|
+
|
|
1790
3468
|
[[package]]
|
|
1791
3469
|
name = "rand"
|
|
1792
3470
|
version = "0.10.2"
|
|
@@ -1808,6 +3486,16 @@ dependencies = [
|
|
|
1808
3486
|
"rand_core 0.6.4",
|
|
1809
3487
|
]
|
|
1810
3488
|
|
|
3489
|
+
[[package]]
|
|
3490
|
+
name = "rand_chacha"
|
|
3491
|
+
version = "0.9.0"
|
|
3492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
3494
|
+
dependencies = [
|
|
3495
|
+
"ppv-lite86",
|
|
3496
|
+
"rand_core 0.9.5",
|
|
3497
|
+
]
|
|
3498
|
+
|
|
1811
3499
|
[[package]]
|
|
1812
3500
|
name = "rand_core"
|
|
1813
3501
|
version = "0.6.4"
|
|
@@ -1817,6 +3505,16 @@ dependencies = [
|
|
|
1817
3505
|
"getrandom 0.2.17",
|
|
1818
3506
|
]
|
|
1819
3507
|
|
|
3508
|
+
[[package]]
|
|
3509
|
+
name = "rand_core"
|
|
3510
|
+
version = "0.9.5"
|
|
3511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3512
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
3513
|
+
dependencies = [
|
|
3514
|
+
"getrandom 0.3.4",
|
|
3515
|
+
"serde",
|
|
3516
|
+
]
|
|
3517
|
+
|
|
1820
3518
|
[[package]]
|
|
1821
3519
|
name = "rand_core"
|
|
1822
3520
|
version = "0.10.1"
|
|
@@ -1832,6 +3530,24 @@ dependencies = [
|
|
|
1832
3530
|
"rand_core 0.10.1",
|
|
1833
3531
|
]
|
|
1834
3532
|
|
|
3533
|
+
[[package]]
|
|
3534
|
+
name = "rand_xorshift"
|
|
3535
|
+
version = "0.4.0"
|
|
3536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3537
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
3538
|
+
dependencies = [
|
|
3539
|
+
"rand_core 0.9.5",
|
|
3540
|
+
]
|
|
3541
|
+
|
|
3542
|
+
[[package]]
|
|
3543
|
+
name = "rapidhash"
|
|
3544
|
+
version = "4.5.1"
|
|
3545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
+
checksum = "5da7e78a036ce858e8d55b7e7dc8ba3a88b78350fd2155d3591bbd966b58589e"
|
|
3547
|
+
dependencies = [
|
|
3548
|
+
"rustversion",
|
|
3549
|
+
]
|
|
3550
|
+
|
|
1835
3551
|
[[package]]
|
|
1836
3552
|
name = "rawpointer"
|
|
1837
3553
|
version = "0.2.1"
|
|
@@ -1859,7 +3575,7 @@ dependencies = [
|
|
|
1859
3575
|
"quote",
|
|
1860
3576
|
"regex",
|
|
1861
3577
|
"shell-words",
|
|
1862
|
-
"syn",
|
|
3578
|
+
"syn 2.0.119",
|
|
1863
3579
|
]
|
|
1864
3580
|
|
|
1865
3581
|
[[package]]
|
|
@@ -1868,11 +3584,31 @@ version = "0.2.3"
|
|
|
1868
3584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
3585
|
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
1870
3586
|
|
|
3587
|
+
[[package]]
|
|
3588
|
+
name = "ref-cast"
|
|
3589
|
+
version = "1.0.26"
|
|
3590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
+
checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
|
|
3592
|
+
dependencies = [
|
|
3593
|
+
"ref-cast-impl",
|
|
3594
|
+
]
|
|
3595
|
+
|
|
3596
|
+
[[package]]
|
|
3597
|
+
name = "ref-cast-impl"
|
|
3598
|
+
version = "1.0.26"
|
|
3599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3600
|
+
checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
|
|
3601
|
+
dependencies = [
|
|
3602
|
+
"proc-macro2",
|
|
3603
|
+
"quote",
|
|
3604
|
+
"syn 3.0.3",
|
|
3605
|
+
]
|
|
3606
|
+
|
|
1871
3607
|
[[package]]
|
|
1872
3608
|
name = "regex"
|
|
1873
|
-
version = "1.
|
|
3609
|
+
version = "1.13.1"
|
|
1874
3610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
-
checksum = "
|
|
3611
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1876
3612
|
dependencies = [
|
|
1877
3613
|
"aho-corasick",
|
|
1878
3614
|
"memchr",
|
|
@@ -1882,9 +3618,9 @@ dependencies = [
|
|
|
1882
3618
|
|
|
1883
3619
|
[[package]]
|
|
1884
3620
|
name = "regex-automata"
|
|
1885
|
-
version = "0.4.
|
|
3621
|
+
version = "0.4.18"
|
|
1886
3622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
-
checksum = "
|
|
3623
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1888
3624
|
dependencies = [
|
|
1889
3625
|
"aho-corasick",
|
|
1890
3626
|
"memchr",
|
|
@@ -1936,6 +3672,26 @@ dependencies = [
|
|
|
1936
3672
|
"web-sys",
|
|
1937
3673
|
]
|
|
1938
3674
|
|
|
3675
|
+
[[package]]
|
|
3676
|
+
name = "rfc6979"
|
|
3677
|
+
version = "0.4.0"
|
|
3678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3679
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
3680
|
+
dependencies = [
|
|
3681
|
+
"hmac 0.12.1",
|
|
3682
|
+
"subtle",
|
|
3683
|
+
]
|
|
3684
|
+
|
|
3685
|
+
[[package]]
|
|
3686
|
+
name = "rfc6979"
|
|
3687
|
+
version = "0.6.0"
|
|
3688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
+
checksum = "b4a459cddafb3fe76b31fd8f1108007566c40301feb64dc7b54656eb7388172b"
|
|
3690
|
+
dependencies = [
|
|
3691
|
+
"crypto-bigint 0.7.5",
|
|
3692
|
+
"hmac 0.13.0",
|
|
3693
|
+
]
|
|
3694
|
+
|
|
1939
3695
|
[[package]]
|
|
1940
3696
|
name = "ring"
|
|
1941
3697
|
version = "0.17.14"
|
|
@@ -1950,6 +3706,16 @@ dependencies = [
|
|
|
1950
3706
|
"windows-sys 0.52.0",
|
|
1951
3707
|
]
|
|
1952
3708
|
|
|
3709
|
+
[[package]]
|
|
3710
|
+
name = "rlp"
|
|
3711
|
+
version = "0.5.2"
|
|
3712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
+
checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec"
|
|
3714
|
+
dependencies = [
|
|
3715
|
+
"bytes",
|
|
3716
|
+
"rustc-hex",
|
|
3717
|
+
]
|
|
3718
|
+
|
|
1953
3719
|
[[package]]
|
|
1954
3720
|
name = "ron"
|
|
1955
3721
|
version = "0.12.2"
|
|
@@ -1964,6 +3730,41 @@ dependencies = [
|
|
|
1964
3730
|
"unicode-ident",
|
|
1965
3731
|
]
|
|
1966
3732
|
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "ruint"
|
|
3735
|
+
version = "1.20.0"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "f5e99bff0393163bb25029a6af25d3d8d202ba5b5438a74d1bd8789f5c822970"
|
|
3738
|
+
dependencies = [
|
|
3739
|
+
"alloy-rlp",
|
|
3740
|
+
"ark-ff 0.3.0",
|
|
3741
|
+
"ark-ff 0.4.2",
|
|
3742
|
+
"ark-ff 0.5.0",
|
|
3743
|
+
"ark-ff 0.6.0",
|
|
3744
|
+
"bytes",
|
|
3745
|
+
"fastrlp 0.3.1",
|
|
3746
|
+
"fastrlp 0.4.0",
|
|
3747
|
+
"num-bigint",
|
|
3748
|
+
"num-integer",
|
|
3749
|
+
"num-traits",
|
|
3750
|
+
"parity-scale-codec",
|
|
3751
|
+
"primitive-types",
|
|
3752
|
+
"proptest",
|
|
3753
|
+
"rand 0.8.7",
|
|
3754
|
+
"rand 0.9.5",
|
|
3755
|
+
"rlp",
|
|
3756
|
+
"ruint-macro",
|
|
3757
|
+
"serde_core",
|
|
3758
|
+
"valuable",
|
|
3759
|
+
"zeroize",
|
|
3760
|
+
]
|
|
3761
|
+
|
|
3762
|
+
[[package]]
|
|
3763
|
+
name = "ruint-macro"
|
|
3764
|
+
version = "1.2.1"
|
|
3765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3766
|
+
checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18"
|
|
3767
|
+
|
|
1967
3768
|
[[package]]
|
|
1968
3769
|
name = "rust-ini"
|
|
1969
3770
|
version = "0.21.3"
|
|
@@ -1986,20 +3787,35 @@ version = "2.1.3"
|
|
|
1986
3787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
3788
|
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
1988
3789
|
|
|
3790
|
+
[[package]]
|
|
3791
|
+
name = "rustc-hex"
|
|
3792
|
+
version = "2.1.0"
|
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3794
|
+
checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
|
|
3795
|
+
|
|
3796
|
+
[[package]]
|
|
3797
|
+
name = "rustc_version"
|
|
3798
|
+
version = "0.3.3"
|
|
3799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3800
|
+
checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
|
|
3801
|
+
dependencies = [
|
|
3802
|
+
"semver 0.11.0",
|
|
3803
|
+
]
|
|
3804
|
+
|
|
1989
3805
|
[[package]]
|
|
1990
3806
|
name = "rustc_version"
|
|
1991
3807
|
version = "0.4.1"
|
|
1992
3808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
3809
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1994
3810
|
dependencies = [
|
|
1995
|
-
"semver",
|
|
3811
|
+
"semver 1.0.28",
|
|
1996
3812
|
]
|
|
1997
3813
|
|
|
1998
3814
|
[[package]]
|
|
1999
3815
|
name = "rustls"
|
|
2000
|
-
version = "0.23.
|
|
3816
|
+
version = "0.23.43"
|
|
2001
3817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
-
checksum = "
|
|
3818
|
+
checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
|
|
2003
3819
|
dependencies = [
|
|
2004
3820
|
"aws-lc-rs",
|
|
2005
3821
|
"once_cell",
|
|
@@ -2023,9 +3839,9 @@ dependencies = [
|
|
|
2023
3839
|
|
|
2024
3840
|
[[package]]
|
|
2025
3841
|
name = "rustls-pki-types"
|
|
2026
|
-
version = "1.15.
|
|
3842
|
+
version = "1.15.1"
|
|
2027
3843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
-
checksum = "
|
|
3844
|
+
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
2029
3845
|
dependencies = [
|
|
2030
3846
|
"web-time",
|
|
2031
3847
|
"zeroize",
|
|
@@ -2157,9 +3973,33 @@ dependencies = [
|
|
|
2157
3973
|
"windows-sys 0.61.2",
|
|
2158
3974
|
]
|
|
2159
3975
|
|
|
3976
|
+
[[package]]
|
|
3977
|
+
name = "schemars"
|
|
3978
|
+
version = "0.9.0"
|
|
3979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3980
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
3981
|
+
dependencies = [
|
|
3982
|
+
"dyn-clone",
|
|
3983
|
+
"ref-cast",
|
|
3984
|
+
"serde",
|
|
3985
|
+
"serde_json",
|
|
3986
|
+
]
|
|
3987
|
+
|
|
3988
|
+
[[package]]
|
|
3989
|
+
name = "schemars"
|
|
3990
|
+
version = "1.2.2"
|
|
3991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3992
|
+
checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
|
|
3993
|
+
dependencies = [
|
|
3994
|
+
"dyn-clone",
|
|
3995
|
+
"ref-cast",
|
|
3996
|
+
"serde",
|
|
3997
|
+
"serde_json",
|
|
3998
|
+
]
|
|
3999
|
+
|
|
2160
4000
|
[[package]]
|
|
2161
4001
|
name = "sdk-node"
|
|
2162
|
-
version = "0.
|
|
4002
|
+
version = "0.8.0"
|
|
2163
4003
|
dependencies = [
|
|
2164
4004
|
"napi",
|
|
2165
4005
|
"napi-build",
|
|
@@ -2171,7 +4011,7 @@ dependencies = [
|
|
|
2171
4011
|
|
|
2172
4012
|
[[package]]
|
|
2173
4013
|
name = "sdk-python"
|
|
2174
|
-
version = "0.
|
|
4014
|
+
version = "0.8.0"
|
|
2175
4015
|
dependencies = [
|
|
2176
4016
|
"pyo3",
|
|
2177
4017
|
"pyo3-async-runtimes",
|
|
@@ -2182,24 +4022,92 @@ dependencies = [
|
|
|
2182
4022
|
]
|
|
2183
4023
|
|
|
2184
4024
|
[[package]]
|
|
2185
|
-
name = "sdk-python-stubs"
|
|
2186
|
-
version = "0.
|
|
4025
|
+
name = "sdk-python-stubs"
|
|
4026
|
+
version = "0.8.0"
|
|
4027
|
+
dependencies = [
|
|
4028
|
+
"pyo3-stub-gen",
|
|
4029
|
+
"sdk-python",
|
|
4030
|
+
]
|
|
4031
|
+
|
|
4032
|
+
[[package]]
|
|
4033
|
+
name = "sdk-ruby"
|
|
4034
|
+
version = "0.8.0"
|
|
4035
|
+
dependencies = [
|
|
4036
|
+
"magnus",
|
|
4037
|
+
"quicknode-sdk",
|
|
4038
|
+
"rb-sys-build",
|
|
4039
|
+
"serde",
|
|
4040
|
+
"serde_json",
|
|
4041
|
+
"serde_magnus",
|
|
4042
|
+
"tokio",
|
|
4043
|
+
]
|
|
4044
|
+
|
|
4045
|
+
[[package]]
|
|
4046
|
+
name = "sec1"
|
|
4047
|
+
version = "0.7.3"
|
|
4048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4049
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
4050
|
+
dependencies = [
|
|
4051
|
+
"base16ct 0.2.0",
|
|
4052
|
+
"der 0.7.10",
|
|
4053
|
+
"generic-array",
|
|
4054
|
+
"pkcs8 0.10.2",
|
|
4055
|
+
"subtle",
|
|
4056
|
+
"zeroize",
|
|
4057
|
+
]
|
|
4058
|
+
|
|
4059
|
+
[[package]]
|
|
4060
|
+
name = "sec1"
|
|
4061
|
+
version = "0.8.1"
|
|
4062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4063
|
+
checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
|
|
4064
|
+
dependencies = [
|
|
4065
|
+
"base16ct 1.0.0",
|
|
4066
|
+
"ctutils",
|
|
4067
|
+
"der 0.8.1",
|
|
4068
|
+
"hybrid-array",
|
|
4069
|
+
"subtle",
|
|
4070
|
+
"zeroize",
|
|
4071
|
+
]
|
|
4072
|
+
|
|
4073
|
+
[[package]]
|
|
4074
|
+
name = "secp256k1"
|
|
4075
|
+
version = "0.30.0"
|
|
4076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4077
|
+
checksum = "b50c5943d326858130af85e049f2661ba3c78b26589b8ab98e65e80ae44a1252"
|
|
4078
|
+
dependencies = [
|
|
4079
|
+
"bitcoin_hashes",
|
|
4080
|
+
"rand 0.8.7",
|
|
4081
|
+
"secp256k1-sys 0.10.1",
|
|
4082
|
+
]
|
|
4083
|
+
|
|
4084
|
+
[[package]]
|
|
4085
|
+
name = "secp256k1"
|
|
4086
|
+
version = "0.31.1"
|
|
4087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4088
|
+
checksum = "2c3c81b43dc2d8877c216a3fccf76677ee1ebccd429566d3e67447290d0c42b2"
|
|
4089
|
+
dependencies = [
|
|
4090
|
+
"bitcoin_hashes",
|
|
4091
|
+
"rand 0.9.5",
|
|
4092
|
+
"secp256k1-sys 0.11.0",
|
|
4093
|
+
]
|
|
4094
|
+
|
|
4095
|
+
[[package]]
|
|
4096
|
+
name = "secp256k1-sys"
|
|
4097
|
+
version = "0.10.1"
|
|
4098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
|
+
checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9"
|
|
2187
4100
|
dependencies = [
|
|
2188
|
-
"
|
|
2189
|
-
"sdk-python",
|
|
4101
|
+
"cc",
|
|
2190
4102
|
]
|
|
2191
4103
|
|
|
2192
4104
|
[[package]]
|
|
2193
|
-
name = "
|
|
2194
|
-
version = "0.
|
|
4105
|
+
name = "secp256k1-sys"
|
|
4106
|
+
version = "0.11.0"
|
|
4107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4108
|
+
checksum = "dcb913707158fadaf0d8702c2db0e857de66eb003ccfdda5924b5f5ac98efb38"
|
|
2195
4109
|
dependencies = [
|
|
2196
|
-
"
|
|
2197
|
-
"quicknode-sdk",
|
|
2198
|
-
"rb-sys-build",
|
|
2199
|
-
"serde",
|
|
2200
|
-
"serde_json",
|
|
2201
|
-
"serde_magnus",
|
|
2202
|
-
"tokio",
|
|
4110
|
+
"cc",
|
|
2203
4111
|
]
|
|
2204
4112
|
|
|
2205
4113
|
[[package]]
|
|
@@ -2234,12 +4142,30 @@ dependencies = [
|
|
|
2234
4142
|
"libc",
|
|
2235
4143
|
]
|
|
2236
4144
|
|
|
4145
|
+
[[package]]
|
|
4146
|
+
name = "semver"
|
|
4147
|
+
version = "0.11.0"
|
|
4148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4149
|
+
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
|
|
4150
|
+
dependencies = [
|
|
4151
|
+
"semver-parser",
|
|
4152
|
+
]
|
|
4153
|
+
|
|
2237
4154
|
[[package]]
|
|
2238
4155
|
name = "semver"
|
|
2239
4156
|
version = "1.0.28"
|
|
2240
4157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
4158
|
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2242
4159
|
|
|
4160
|
+
[[package]]
|
|
4161
|
+
name = "semver-parser"
|
|
4162
|
+
version = "0.10.3"
|
|
4163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4164
|
+
checksum = "9900206b54a3527fdc7b8a938bffd94a568bac4f4aa8113b209df75a09c0dec2"
|
|
4165
|
+
dependencies = [
|
|
4166
|
+
"pest",
|
|
4167
|
+
]
|
|
4168
|
+
|
|
2243
4169
|
[[package]]
|
|
2244
4170
|
name = "seq-macro"
|
|
2245
4171
|
version = "0.3.6"
|
|
@@ -2248,9 +4174,9 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
2248
4174
|
|
|
2249
4175
|
[[package]]
|
|
2250
4176
|
name = "serde"
|
|
2251
|
-
version = "1.0.
|
|
4177
|
+
version = "1.0.229"
|
|
2252
4178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2253
|
-
checksum = "
|
|
4179
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
2254
4180
|
dependencies = [
|
|
2255
4181
|
"serde_core",
|
|
2256
4182
|
"serde_derive",
|
|
@@ -2270,29 +4196,29 @@ dependencies = [
|
|
|
2270
4196
|
|
|
2271
4197
|
[[package]]
|
|
2272
4198
|
name = "serde_core"
|
|
2273
|
-
version = "1.0.
|
|
4199
|
+
version = "1.0.229"
|
|
2274
4200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
-
checksum = "
|
|
4201
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
2276
4202
|
dependencies = [
|
|
2277
4203
|
"serde_derive",
|
|
2278
4204
|
]
|
|
2279
4205
|
|
|
2280
4206
|
[[package]]
|
|
2281
4207
|
name = "serde_derive"
|
|
2282
|
-
version = "1.0.
|
|
4208
|
+
version = "1.0.229"
|
|
2283
4209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
-
checksum = "
|
|
4210
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
2285
4211
|
dependencies = [
|
|
2286
4212
|
"proc-macro2",
|
|
2287
4213
|
"quote",
|
|
2288
|
-
"syn",
|
|
4214
|
+
"syn 3.0.3",
|
|
2289
4215
|
]
|
|
2290
4216
|
|
|
2291
4217
|
[[package]]
|
|
2292
4218
|
name = "serde_json"
|
|
2293
|
-
version = "1.0.
|
|
4219
|
+
version = "1.0.151"
|
|
2294
4220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
-
checksum = "
|
|
4221
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
2296
4222
|
dependencies = [
|
|
2297
4223
|
"itoa",
|
|
2298
4224
|
"memchr",
|
|
@@ -2333,6 +4259,113 @@ dependencies = [
|
|
|
2333
4259
|
"serde",
|
|
2334
4260
|
]
|
|
2335
4261
|
|
|
4262
|
+
[[package]]
|
|
4263
|
+
name = "serde_with"
|
|
4264
|
+
version = "3.21.0"
|
|
4265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4266
|
+
checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
|
|
4267
|
+
dependencies = [
|
|
4268
|
+
"base64",
|
|
4269
|
+
"bs58",
|
|
4270
|
+
"chrono",
|
|
4271
|
+
"hex",
|
|
4272
|
+
"indexmap 1.9.3",
|
|
4273
|
+
"indexmap 2.14.0",
|
|
4274
|
+
"schemars 0.9.0",
|
|
4275
|
+
"schemars 1.2.2",
|
|
4276
|
+
"serde_core",
|
|
4277
|
+
"serde_json",
|
|
4278
|
+
"serde_with_macros",
|
|
4279
|
+
"time",
|
|
4280
|
+
]
|
|
4281
|
+
|
|
4282
|
+
[[package]]
|
|
4283
|
+
name = "serde_with_macros"
|
|
4284
|
+
version = "3.21.0"
|
|
4285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4286
|
+
checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
|
|
4287
|
+
dependencies = [
|
|
4288
|
+
"darling",
|
|
4289
|
+
"proc-macro2",
|
|
4290
|
+
"quote",
|
|
4291
|
+
"syn 2.0.119",
|
|
4292
|
+
]
|
|
4293
|
+
|
|
4294
|
+
[[package]]
|
|
4295
|
+
name = "serdect"
|
|
4296
|
+
version = "0.4.3"
|
|
4297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4298
|
+
checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e"
|
|
4299
|
+
dependencies = [
|
|
4300
|
+
"base16ct 1.0.0",
|
|
4301
|
+
"serde",
|
|
4302
|
+
]
|
|
4303
|
+
|
|
4304
|
+
[[package]]
|
|
4305
|
+
name = "sha2"
|
|
4306
|
+
version = "0.9.9"
|
|
4307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4308
|
+
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
|
|
4309
|
+
dependencies = [
|
|
4310
|
+
"block-buffer 0.9.0",
|
|
4311
|
+
"cfg-if",
|
|
4312
|
+
"cpufeatures 0.2.17",
|
|
4313
|
+
"digest 0.9.0",
|
|
4314
|
+
"opaque-debug",
|
|
4315
|
+
]
|
|
4316
|
+
|
|
4317
|
+
[[package]]
|
|
4318
|
+
name = "sha2"
|
|
4319
|
+
version = "0.10.9"
|
|
4320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4321
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
4322
|
+
dependencies = [
|
|
4323
|
+
"cfg-if",
|
|
4324
|
+
"cpufeatures 0.2.17",
|
|
4325
|
+
"digest 0.10.7",
|
|
4326
|
+
]
|
|
4327
|
+
|
|
4328
|
+
[[package]]
|
|
4329
|
+
name = "sha2"
|
|
4330
|
+
version = "0.11.0"
|
|
4331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4332
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
4333
|
+
dependencies = [
|
|
4334
|
+
"cfg-if",
|
|
4335
|
+
"cpufeatures 0.3.0",
|
|
4336
|
+
"digest 0.11.3",
|
|
4337
|
+
]
|
|
4338
|
+
|
|
4339
|
+
[[package]]
|
|
4340
|
+
name = "sha3"
|
|
4341
|
+
version = "0.10.9"
|
|
4342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4343
|
+
checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874"
|
|
4344
|
+
dependencies = [
|
|
4345
|
+
"digest 0.10.7",
|
|
4346
|
+
"keccak 0.1.6",
|
|
4347
|
+
]
|
|
4348
|
+
|
|
4349
|
+
[[package]]
|
|
4350
|
+
name = "sha3"
|
|
4351
|
+
version = "0.11.0"
|
|
4352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4353
|
+
checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1"
|
|
4354
|
+
dependencies = [
|
|
4355
|
+
"digest 0.11.3",
|
|
4356
|
+
"keccak 0.2.0",
|
|
4357
|
+
]
|
|
4358
|
+
|
|
4359
|
+
[[package]]
|
|
4360
|
+
name = "sha3-asm"
|
|
4361
|
+
version = "0.1.8"
|
|
4362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4363
|
+
checksum = "a6287fd675f713484342a89cbf0a386abef5f15919cfad607e5e1f19e1e15331"
|
|
4364
|
+
dependencies = [
|
|
4365
|
+
"cc",
|
|
4366
|
+
"cfg-if",
|
|
4367
|
+
]
|
|
4368
|
+
|
|
2336
4369
|
[[package]]
|
|
2337
4370
|
name = "shell-words"
|
|
2338
4371
|
version = "1.1.1"
|
|
@@ -2351,13 +4384,33 @@ version = "2.0.1"
|
|
|
2351
4384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2352
4385
|
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2353
4386
|
|
|
4387
|
+
[[package]]
|
|
4388
|
+
name = "signature"
|
|
4389
|
+
version = "2.2.0"
|
|
4390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4391
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
4392
|
+
dependencies = [
|
|
4393
|
+
"digest 0.10.7",
|
|
4394
|
+
"rand_core 0.6.4",
|
|
4395
|
+
]
|
|
4396
|
+
|
|
4397
|
+
[[package]]
|
|
4398
|
+
name = "signature"
|
|
4399
|
+
version = "3.0.0"
|
|
4400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4401
|
+
checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
|
|
4402
|
+
dependencies = [
|
|
4403
|
+
"digest 0.11.3",
|
|
4404
|
+
"rand_core 0.10.1",
|
|
4405
|
+
]
|
|
4406
|
+
|
|
2354
4407
|
[[package]]
|
|
2355
4408
|
name = "simd_cesu8"
|
|
2356
|
-
version = "1.
|
|
4409
|
+
version = "1.2.0"
|
|
2357
4410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2358
|
-
checksum = "
|
|
4411
|
+
checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
|
|
2359
4412
|
dependencies = [
|
|
2360
|
-
"rustc_version",
|
|
4413
|
+
"rustc_version 0.4.1",
|
|
2361
4414
|
"simdutf8",
|
|
2362
4415
|
]
|
|
2363
4416
|
|
|
@@ -2387,14 +4440,34 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
|
2387
4440
|
|
|
2388
4441
|
[[package]]
|
|
2389
4442
|
name = "socket2"
|
|
2390
|
-
version = "0.6.
|
|
4443
|
+
version = "0.6.5"
|
|
2391
4444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
-
checksum = "
|
|
4445
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
2393
4446
|
dependencies = [
|
|
2394
4447
|
"libc",
|
|
2395
4448
|
"windows-sys 0.61.2",
|
|
2396
4449
|
]
|
|
2397
4450
|
|
|
4451
|
+
[[package]]
|
|
4452
|
+
name = "spki"
|
|
4453
|
+
version = "0.7.3"
|
|
4454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4455
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
4456
|
+
dependencies = [
|
|
4457
|
+
"base64ct",
|
|
4458
|
+
"der 0.7.10",
|
|
4459
|
+
]
|
|
4460
|
+
|
|
4461
|
+
[[package]]
|
|
4462
|
+
name = "spki"
|
|
4463
|
+
version = "0.8.0"
|
|
4464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4465
|
+
checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
|
|
4466
|
+
dependencies = [
|
|
4467
|
+
"base64ct",
|
|
4468
|
+
"der 0.8.1",
|
|
4469
|
+
]
|
|
4470
|
+
|
|
2398
4471
|
[[package]]
|
|
2399
4472
|
name = "stable_deref_trait"
|
|
2400
4473
|
version = "1.2.1"
|
|
@@ -2419,17 +4492,57 @@ version = "2.6.1"
|
|
|
2419
4492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
4493
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2421
4494
|
|
|
4495
|
+
[[package]]
|
|
4496
|
+
name = "subtle-ng"
|
|
4497
|
+
version = "2.5.0"
|
|
4498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4499
|
+
checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142"
|
|
4500
|
+
|
|
4501
|
+
[[package]]
|
|
4502
|
+
name = "syn"
|
|
4503
|
+
version = "1.0.109"
|
|
4504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4505
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
4506
|
+
dependencies = [
|
|
4507
|
+
"proc-macro2",
|
|
4508
|
+
"quote",
|
|
4509
|
+
"unicode-ident",
|
|
4510
|
+
]
|
|
4511
|
+
|
|
4512
|
+
[[package]]
|
|
4513
|
+
name = "syn"
|
|
4514
|
+
version = "2.0.119"
|
|
4515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4516
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
4517
|
+
dependencies = [
|
|
4518
|
+
"proc-macro2",
|
|
4519
|
+
"quote",
|
|
4520
|
+
"unicode-ident",
|
|
4521
|
+
]
|
|
4522
|
+
|
|
2422
4523
|
[[package]]
|
|
2423
4524
|
name = "syn"
|
|
2424
|
-
version = "
|
|
4525
|
+
version = "3.0.3"
|
|
2425
4526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
-
checksum = "
|
|
4527
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
2427
4528
|
dependencies = [
|
|
2428
4529
|
"proc-macro2",
|
|
2429
4530
|
"quote",
|
|
2430
4531
|
"unicode-ident",
|
|
2431
4532
|
]
|
|
2432
4533
|
|
|
4534
|
+
[[package]]
|
|
4535
|
+
name = "syn-solidity"
|
|
4536
|
+
version = "1.6.1"
|
|
4537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4538
|
+
checksum = "083be3061e64d362cbe6ef12cfe1307ba3884326d8856448fe8a120fa2c44ebf"
|
|
4539
|
+
dependencies = [
|
|
4540
|
+
"paste",
|
|
4541
|
+
"proc-macro2",
|
|
4542
|
+
"quote",
|
|
4543
|
+
"syn 2.0.119",
|
|
4544
|
+
]
|
|
4545
|
+
|
|
2433
4546
|
[[package]]
|
|
2434
4547
|
name = "sync_wrapper"
|
|
2435
4548
|
version = "1.0.2"
|
|
@@ -2447,7 +4560,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
2447
4560
|
dependencies = [
|
|
2448
4561
|
"proc-macro2",
|
|
2449
4562
|
"quote",
|
|
2450
|
-
"syn",
|
|
4563
|
+
"syn 2.0.119",
|
|
2451
4564
|
]
|
|
2452
4565
|
|
|
2453
4566
|
[[package]]
|
|
@@ -2462,6 +4575,37 @@ version = "0.13.5"
|
|
|
2462
4575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
4576
|
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
2464
4577
|
|
|
4578
|
+
[[package]]
|
|
4579
|
+
name = "tempo-contracts"
|
|
4580
|
+
version = "1.8.1"
|
|
4581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4582
|
+
checksum = "a163690a85ff88c8cb98b42490fa95a33b114d6d90c653b7be2c9f794f7b2ab9"
|
|
4583
|
+
dependencies = [
|
|
4584
|
+
"alloy-primitives",
|
|
4585
|
+
"alloy-sol-types",
|
|
4586
|
+
]
|
|
4587
|
+
|
|
4588
|
+
[[package]]
|
|
4589
|
+
name = "tempo-primitives"
|
|
4590
|
+
version = "1.8.1"
|
|
4591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4592
|
+
checksum = "63f9919c82a4c68531609cd015994e1a81c48d4c84eeaa92a9d86651a0e6ec41"
|
|
4593
|
+
dependencies = [
|
|
4594
|
+
"alloy-consensus",
|
|
4595
|
+
"alloy-eips",
|
|
4596
|
+
"alloy-primitives",
|
|
4597
|
+
"alloy-rlp",
|
|
4598
|
+
"base64",
|
|
4599
|
+
"derive_more",
|
|
4600
|
+
"ed25519-consensus",
|
|
4601
|
+
"once_cell",
|
|
4602
|
+
"p256",
|
|
4603
|
+
"serde",
|
|
4604
|
+
"serde_json",
|
|
4605
|
+
"sha2 0.10.9",
|
|
4606
|
+
"tempo-contracts",
|
|
4607
|
+
]
|
|
4608
|
+
|
|
2465
4609
|
[[package]]
|
|
2466
4610
|
name = "thiserror"
|
|
2467
4611
|
version = "1.0.69"
|
|
@@ -2473,11 +4617,11 @@ dependencies = [
|
|
|
2473
4617
|
|
|
2474
4618
|
[[package]]
|
|
2475
4619
|
name = "thiserror"
|
|
2476
|
-
version = "2.0.
|
|
4620
|
+
version = "2.0.19"
|
|
2477
4621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
-
checksum = "
|
|
4622
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
2479
4623
|
dependencies = [
|
|
2480
|
-
"thiserror-impl 2.0.
|
|
4624
|
+
"thiserror-impl 2.0.19",
|
|
2481
4625
|
]
|
|
2482
4626
|
|
|
2483
4627
|
[[package]]
|
|
@@ -2488,31 +4632,41 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
2488
4632
|
dependencies = [
|
|
2489
4633
|
"proc-macro2",
|
|
2490
4634
|
"quote",
|
|
2491
|
-
"syn",
|
|
4635
|
+
"syn 2.0.119",
|
|
2492
4636
|
]
|
|
2493
4637
|
|
|
2494
4638
|
[[package]]
|
|
2495
4639
|
name = "thiserror-impl"
|
|
2496
|
-
version = "2.0.
|
|
4640
|
+
version = "2.0.19"
|
|
2497
4641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
-
checksum = "
|
|
4642
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
2499
4643
|
dependencies = [
|
|
2500
4644
|
"proc-macro2",
|
|
2501
4645
|
"quote",
|
|
2502
|
-
"syn",
|
|
4646
|
+
"syn 3.0.3",
|
|
4647
|
+
]
|
|
4648
|
+
|
|
4649
|
+
[[package]]
|
|
4650
|
+
name = "threadpool"
|
|
4651
|
+
version = "1.8.1"
|
|
4652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4653
|
+
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
|
|
4654
|
+
dependencies = [
|
|
4655
|
+
"num_cpus",
|
|
2503
4656
|
]
|
|
2504
4657
|
|
|
2505
4658
|
[[package]]
|
|
2506
4659
|
name = "time"
|
|
2507
|
-
version = "0.3.
|
|
4660
|
+
version = "0.3.55"
|
|
2508
4661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
-
checksum = "
|
|
4662
|
+
checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
|
|
2510
4663
|
dependencies = [
|
|
2511
4664
|
"deranged",
|
|
2512
4665
|
"num-conv",
|
|
2513
4666
|
"powerfmt",
|
|
2514
4667
|
"serde_core",
|
|
2515
4668
|
"time-core",
|
|
4669
|
+
"time-macros",
|
|
2516
4670
|
]
|
|
2517
4671
|
|
|
2518
4672
|
[[package]]
|
|
@@ -2521,6 +4675,16 @@ version = "0.1.9"
|
|
|
2521
4675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2522
4676
|
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
2523
4677
|
|
|
4678
|
+
[[package]]
|
|
4679
|
+
name = "time-macros"
|
|
4680
|
+
version = "0.2.32"
|
|
4681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4682
|
+
checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
|
|
4683
|
+
dependencies = [
|
|
4684
|
+
"num-conv",
|
|
4685
|
+
"time-core",
|
|
4686
|
+
]
|
|
4687
|
+
|
|
2524
4688
|
[[package]]
|
|
2525
4689
|
name = "tiny-keccak"
|
|
2526
4690
|
version = "2.0.2"
|
|
@@ -2542,9 +4706,9 @@ dependencies = [
|
|
|
2542
4706
|
|
|
2543
4707
|
[[package]]
|
|
2544
4708
|
name = "tinyvec"
|
|
2545
|
-
version = "1.
|
|
4709
|
+
version = "1.12.0"
|
|
2546
4710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2547
|
-
checksum = "
|
|
4711
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
2548
4712
|
dependencies = [
|
|
2549
4713
|
"tinyvec_macros",
|
|
2550
4714
|
]
|
|
@@ -2557,9 +4721,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2557
4721
|
|
|
2558
4722
|
[[package]]
|
|
2559
4723
|
name = "tokio"
|
|
2560
|
-
version = "1.
|
|
4724
|
+
version = "1.53.1"
|
|
2561
4725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
-
checksum = "
|
|
4726
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
2563
4727
|
dependencies = [
|
|
2564
4728
|
"bytes",
|
|
2565
4729
|
"libc",
|
|
@@ -2572,13 +4736,13 @@ dependencies = [
|
|
|
2572
4736
|
|
|
2573
4737
|
[[package]]
|
|
2574
4738
|
name = "tokio-macros"
|
|
2575
|
-
version = "2.7.
|
|
4739
|
+
version = "2.7.2"
|
|
2576
4740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2577
|
-
checksum = "
|
|
4741
|
+
checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
|
|
2578
4742
|
dependencies = [
|
|
2579
4743
|
"proc-macro2",
|
|
2580
4744
|
"quote",
|
|
2581
|
-
"syn",
|
|
4745
|
+
"syn 3.0.3",
|
|
2582
4746
|
]
|
|
2583
4747
|
|
|
2584
4748
|
[[package]]
|
|
@@ -2593,24 +4757,25 @@ dependencies = [
|
|
|
2593
4757
|
|
|
2594
4758
|
[[package]]
|
|
2595
4759
|
name = "tokio-util"
|
|
2596
|
-
version = "0.7.
|
|
4760
|
+
version = "0.7.19"
|
|
2597
4761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
-
checksum = "
|
|
4762
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
2599
4763
|
dependencies = [
|
|
2600
4764
|
"bytes",
|
|
2601
4765
|
"futures-core",
|
|
2602
4766
|
"futures-sink",
|
|
4767
|
+
"libc",
|
|
2603
4768
|
"pin-project-lite",
|
|
2604
4769
|
"tokio",
|
|
2605
4770
|
]
|
|
2606
4771
|
|
|
2607
4772
|
[[package]]
|
|
2608
4773
|
name = "toml"
|
|
2609
|
-
version = "1.1.
|
|
4774
|
+
version = "1.1.4+spec-1.1.0"
|
|
2610
4775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
-
checksum = "
|
|
4776
|
+
checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
|
|
2612
4777
|
dependencies = [
|
|
2613
|
-
"indexmap",
|
|
4778
|
+
"indexmap 2.14.0",
|
|
2614
4779
|
"serde_core",
|
|
2615
4780
|
"serde_spanned",
|
|
2616
4781
|
"toml_datetime",
|
|
@@ -2628,20 +4793,32 @@ dependencies = [
|
|
|
2628
4793
|
"serde_core",
|
|
2629
4794
|
]
|
|
2630
4795
|
|
|
4796
|
+
[[package]]
|
|
4797
|
+
name = "toml_edit"
|
|
4798
|
+
version = "0.25.13+spec-1.1.0"
|
|
4799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4800
|
+
checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
|
|
4801
|
+
dependencies = [
|
|
4802
|
+
"indexmap 2.14.0",
|
|
4803
|
+
"toml_datetime",
|
|
4804
|
+
"toml_parser",
|
|
4805
|
+
"winnow",
|
|
4806
|
+
]
|
|
4807
|
+
|
|
2631
4808
|
[[package]]
|
|
2632
4809
|
name = "toml_parser"
|
|
2633
|
-
version = "1.1.
|
|
4810
|
+
version = "1.1.3+spec-1.1.0"
|
|
2634
4811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
-
checksum = "
|
|
4812
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
2636
4813
|
dependencies = [
|
|
2637
4814
|
"winnow",
|
|
2638
4815
|
]
|
|
2639
4816
|
|
|
2640
4817
|
[[package]]
|
|
2641
4818
|
name = "toml_writer"
|
|
2642
|
-
version = "1.1.
|
|
4819
|
+
version = "1.1.2+spec-1.1.0"
|
|
2643
4820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
-
checksum = "
|
|
4821
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
2645
4822
|
|
|
2646
4823
|
[[package]]
|
|
2647
4824
|
name = "tower"
|
|
@@ -2719,12 +4896,36 @@ version = "1.0.3"
|
|
|
2719
4896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
4897
|
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
2721
4898
|
|
|
4899
|
+
[[package]]
|
|
4900
|
+
name = "typenum"
|
|
4901
|
+
version = "1.20.1"
|
|
4902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4903
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
4904
|
+
|
|
2722
4905
|
[[package]]
|
|
2723
4906
|
name = "ucd-trie"
|
|
2724
4907
|
version = "0.1.7"
|
|
2725
4908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
4909
|
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
2727
4910
|
|
|
4911
|
+
[[package]]
|
|
4912
|
+
name = "uint"
|
|
4913
|
+
version = "0.9.5"
|
|
4914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4915
|
+
checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
|
|
4916
|
+
dependencies = [
|
|
4917
|
+
"byteorder",
|
|
4918
|
+
"crunchy",
|
|
4919
|
+
"hex",
|
|
4920
|
+
"static_assertions",
|
|
4921
|
+
]
|
|
4922
|
+
|
|
4923
|
+
[[package]]
|
|
4924
|
+
name = "unarray"
|
|
4925
|
+
version = "0.1.4"
|
|
4926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4927
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
4928
|
+
|
|
2728
4929
|
[[package]]
|
|
2729
4930
|
name = "unic-char-property"
|
|
2730
4931
|
version = "0.9.0"
|
|
@@ -2795,6 +4996,12 @@ version = "0.2.2"
|
|
|
2795
4996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
4997
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2797
4998
|
|
|
4999
|
+
[[package]]
|
|
5000
|
+
name = "unicode-xid"
|
|
5001
|
+
version = "0.2.6"
|
|
5002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5003
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
5004
|
+
|
|
2798
5005
|
[[package]]
|
|
2799
5006
|
name = "unicode_names2"
|
|
2800
5007
|
version = "1.3.0"
|
|
@@ -2814,7 +5021,7 @@ dependencies = [
|
|
|
2814
5021
|
"getopts",
|
|
2815
5022
|
"log",
|
|
2816
5023
|
"phf_codegen",
|
|
2817
|
-
"rand 0.8.
|
|
5024
|
+
"rand 0.8.7",
|
|
2818
5025
|
]
|
|
2819
5026
|
|
|
2820
5027
|
[[package]]
|
|
@@ -2847,6 +5054,18 @@ version = "1.0.4"
|
|
|
2847
5054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
5055
|
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2849
5056
|
|
|
5057
|
+
[[package]]
|
|
5058
|
+
name = "valuable"
|
|
5059
|
+
version = "0.1.1"
|
|
5060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5061
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
5062
|
+
|
|
5063
|
+
[[package]]
|
|
5064
|
+
name = "version_check"
|
|
5065
|
+
version = "0.9.5"
|
|
5066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5067
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
5068
|
+
|
|
2850
5069
|
[[package]]
|
|
2851
5070
|
name = "walkdir"
|
|
2852
5071
|
version = "2.5.0"
|
|
@@ -2872,6 +5091,15 @@ version = "0.11.1+wasi-snapshot-preview1"
|
|
|
2872
5091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
5092
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2874
5093
|
|
|
5094
|
+
[[package]]
|
|
5095
|
+
name = "wasip2"
|
|
5096
|
+
version = "1.0.4+wasi-0.2.12"
|
|
5097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5098
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
5099
|
+
dependencies = [
|
|
5100
|
+
"wit-bindgen",
|
|
5101
|
+
]
|
|
5102
|
+
|
|
2875
5103
|
[[package]]
|
|
2876
5104
|
name = "wasm-bindgen"
|
|
2877
5105
|
version = "0.2.126"
|
|
@@ -2914,7 +5142,7 @@ dependencies = [
|
|
|
2914
5142
|
"bumpalo",
|
|
2915
5143
|
"proc-macro2",
|
|
2916
5144
|
"quote",
|
|
2917
|
-
"syn",
|
|
5145
|
+
"syn 2.0.119",
|
|
2918
5146
|
"wasm-bindgen-shared",
|
|
2919
5147
|
]
|
|
2920
5148
|
|
|
@@ -2949,9 +5177,9 @@ dependencies = [
|
|
|
2949
5177
|
|
|
2950
5178
|
[[package]]
|
|
2951
5179
|
name = "webpki-root-certs"
|
|
2952
|
-
version = "1.0.
|
|
5180
|
+
version = "1.0.9"
|
|
2953
5181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2954
|
-
checksum = "
|
|
5182
|
+
checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
|
|
2955
5183
|
dependencies = [
|
|
2956
5184
|
"rustls-pki-types",
|
|
2957
5185
|
]
|
|
@@ -2986,7 +5214,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
2986
5214
|
dependencies = [
|
|
2987
5215
|
"proc-macro2",
|
|
2988
5216
|
"quote",
|
|
2989
|
-
"syn",
|
|
5217
|
+
"syn 2.0.119",
|
|
2990
5218
|
]
|
|
2991
5219
|
|
|
2992
5220
|
[[package]]
|
|
@@ -2997,7 +5225,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
2997
5225
|
dependencies = [
|
|
2998
5226
|
"proc-macro2",
|
|
2999
5227
|
"quote",
|
|
3000
|
-
"syn",
|
|
5228
|
+
"syn 2.0.119",
|
|
3001
5229
|
]
|
|
3002
5230
|
|
|
3003
5231
|
[[package]]
|
|
@@ -3108,9 +5336,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
3108
5336
|
|
|
3109
5337
|
[[package]]
|
|
3110
5338
|
name = "winnow"
|
|
3111
|
-
version = "1.0.
|
|
5339
|
+
version = "1.0.4"
|
|
3112
5340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
-
checksum = "
|
|
5341
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
3114
5342
|
dependencies = [
|
|
3115
5343
|
"memchr",
|
|
3116
5344
|
]
|
|
@@ -3138,12 +5366,38 @@ dependencies = [
|
|
|
3138
5366
|
"url",
|
|
3139
5367
|
]
|
|
3140
5368
|
|
|
5369
|
+
[[package]]
|
|
5370
|
+
name = "wit-bindgen"
|
|
5371
|
+
version = "0.57.1"
|
|
5372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5373
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
5374
|
+
|
|
5375
|
+
[[package]]
|
|
5376
|
+
name = "wnaf"
|
|
5377
|
+
version = "0.14.0"
|
|
5378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5379
|
+
checksum = "ab12e7090f27e2ffd9322651492942d50c2926094af30601e1964337db39daf1"
|
|
5380
|
+
dependencies = [
|
|
5381
|
+
"ff 0.14.0",
|
|
5382
|
+
"group 0.14.0",
|
|
5383
|
+
"hybrid-array",
|
|
5384
|
+
]
|
|
5385
|
+
|
|
3141
5386
|
[[package]]
|
|
3142
5387
|
name = "writeable"
|
|
3143
5388
|
version = "0.6.3"
|
|
3144
5389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3145
5390
|
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3146
5391
|
|
|
5392
|
+
[[package]]
|
|
5393
|
+
name = "wyz"
|
|
5394
|
+
version = "0.5.1"
|
|
5395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5396
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
5397
|
+
dependencies = [
|
|
5398
|
+
"tap",
|
|
5399
|
+
]
|
|
5400
|
+
|
|
3147
5401
|
[[package]]
|
|
3148
5402
|
name = "yaml-rust2"
|
|
3149
5403
|
version = "0.11.0"
|
|
@@ -3174,28 +5428,28 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
|
3174
5428
|
dependencies = [
|
|
3175
5429
|
"proc-macro2",
|
|
3176
5430
|
"quote",
|
|
3177
|
-
"syn",
|
|
5431
|
+
"syn 2.0.119",
|
|
3178
5432
|
"synstructure",
|
|
3179
5433
|
]
|
|
3180
5434
|
|
|
3181
5435
|
[[package]]
|
|
3182
5436
|
name = "zerocopy"
|
|
3183
|
-
version = "0.8.
|
|
5437
|
+
version = "0.8.55"
|
|
3184
5438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3185
|
-
checksum = "
|
|
5439
|
+
checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
|
|
3186
5440
|
dependencies = [
|
|
3187
5441
|
"zerocopy-derive",
|
|
3188
5442
|
]
|
|
3189
5443
|
|
|
3190
5444
|
[[package]]
|
|
3191
5445
|
name = "zerocopy-derive"
|
|
3192
|
-
version = "0.8.
|
|
5446
|
+
version = "0.8.55"
|
|
3193
5447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
-
checksum = "
|
|
5448
|
+
checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
|
|
3195
5449
|
dependencies = [
|
|
3196
5450
|
"proc-macro2",
|
|
3197
5451
|
"quote",
|
|
3198
|
-
"syn",
|
|
5452
|
+
"syn 2.0.119",
|
|
3199
5453
|
]
|
|
3200
5454
|
|
|
3201
5455
|
[[package]]
|
|
@@ -3215,7 +5469,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
|
3215
5469
|
dependencies = [
|
|
3216
5470
|
"proc-macro2",
|
|
3217
5471
|
"quote",
|
|
3218
|
-
"syn",
|
|
5472
|
+
"syn 2.0.119",
|
|
3219
5473
|
"synstructure",
|
|
3220
5474
|
]
|
|
3221
5475
|
|
|
@@ -3224,6 +5478,20 @@ name = "zeroize"
|
|
|
3224
5478
|
version = "1.9.0"
|
|
3225
5479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3226
5480
|
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
5481
|
+
dependencies = [
|
|
5482
|
+
"zeroize_derive",
|
|
5483
|
+
]
|
|
5484
|
+
|
|
5485
|
+
[[package]]
|
|
5486
|
+
name = "zeroize_derive"
|
|
5487
|
+
version = "1.5.0"
|
|
5488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5489
|
+
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
5490
|
+
dependencies = [
|
|
5491
|
+
"proc-macro2",
|
|
5492
|
+
"quote",
|
|
5493
|
+
"syn 2.0.119",
|
|
5494
|
+
]
|
|
3227
5495
|
|
|
3228
5496
|
[[package]]
|
|
3229
5497
|
name = "zerotrie"
|
|
@@ -3255,11 +5523,11 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
|
3255
5523
|
dependencies = [
|
|
3256
5524
|
"proc-macro2",
|
|
3257
5525
|
"quote",
|
|
3258
|
-
"syn",
|
|
5526
|
+
"syn 2.0.119",
|
|
3259
5527
|
]
|
|
3260
5528
|
|
|
3261
5529
|
[[package]]
|
|
3262
5530
|
name = "zmij"
|
|
3263
|
-
version = "1.0.
|
|
5531
|
+
version = "1.0.23"
|
|
3264
5532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
|
-
checksum = "
|
|
5533
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|