git.delta.rocks / unique-network / refs/commits / 470ffd5ce9b5

difftreelog

Merge pull request #1060 from UniqueNetwork/feature/update-polkadot-1.9

Yaroslav Bolyukin2024-05-28parents: #c748379 #769ffcf.patch.diff
in: master
Update polkadot to v1.9.0

35 files changed

added.baedeker/xcm-opal-async-backing.jsonnetdiffbeforeafterboth
--- /dev/null
+++ b/.baedeker/xcm-opal-async-backing.jsonnet
@@ -0,0 +1,68 @@
+local
+m = import 'baedeker-library/mixin/spec.libsonnet',
+;
+
+function(relay_spec)
+
+local relay = {
+	name: 'relay',
+	bin: 'bin/polkadot',
+	validatorIdAssignment: 'staking',
+	spec: {Genesis:{
+		chain: relay_spec,
+		modify:: bdk.mixer([
+			m.genericRelay($),
+			{
+				genesis+: {
+					runtimeGenesis+: {
+						runtime+: {
+							configuration+: {
+								config+: {
+									async_backing_params+: {
+										allowed_ancestry_len: 3,
+										max_candidate_depth: 4,
+									},
+									scheduling_lookahead:5,
+									max_validators_per_core:1,
+									minimum_backing_votes:1,
+									needed_approvals:1,
+									on_demand_cores:5,
+								},
+							},
+						},
+					},
+				},
+			},
+		]),
+	}},
+	nodes: {
+		[name]: {
+			bin: $.bin,
+			wantedKeys: 'relay',
+		},
+		for name in ['alice', 'bob', 'charlie', 'dave', 'eve']
+	},
+};
+
+local opal = {
+	name: 'opal',
+	bin: 'bin/unique',
+	paraId: 1001,
+	spec: {Genesis:{
+		modify:: m.genericPara($),
+	}},
+	nodes: {
+		[name]: {
+			bin: $.bin,
+			wantedKeys: 'para',
+		},
+		for name in ['alice', 'bob', 'charlie', 'dave', 'eve']
+	},
+};
+
+relay + {
+	parachains: {
+		[para.name]: para,
+		for para in [opal]
+	},
+}
modifiedCargo.lockdiffbeforeafterboth
27source = "registry+https://github.com/rust-lang/crates.io-index"27source = "registry+https://github.com/rust-lang/crates.io-index"
28checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"28checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
29dependencies = [29dependencies = [
30 "gimli 0.28.0",30 "gimli 0.28.1",
31]31]
3232
33[[package]]33[[package]]
3838
39[[package]]39[[package]]
40name = "aead"40name = "aead"
41version = "0.3.2"
42source = "registry+https://github.com/rust-lang/crates.io-index"
43checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
44dependencies = [
45 "generic-array 0.14.7",
46]
47
48[[package]]
49name = "aead"
50version = "0.4.3"
51source = "registry+https://github.com/rust-lang/crates.io-index"
52checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
53dependencies = [
54 "generic-array 0.14.7",
55 "rand_core 0.6.4",
56]
57
58[[package]]
59name = "aead"
60version = "0.5.2"41version = "0.5.2"
61source = "registry+https://github.com/rust-lang/crates.io-index"42source = "registry+https://github.com/rust-lang/crates.io-index"
62checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"43checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
6748
68[[package]]49[[package]]
69name = "aes"50name = "aes"
70version = "0.6.0"51version = "0.8.4"
71source = "registry+https://github.com/rust-lang/crates.io-index"52source = "registry+https://github.com/rust-lang/crates.io-index"
72checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"53checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
73dependencies = [54dependencies = [
74 "aes-soft",
75 "aesni",
76 "cipher 0.2.5",
77]
78
79[[package]]
80name = "aes"
81version = "0.7.5"
82source = "registry+https://github.com/rust-lang/crates.io-index"
83checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
84dependencies = [
85 "cfg-if",55 "cfg-if",
86 "cipher 0.3.0",
87 "cpufeatures",
88 "opaque-debug 0.3.0",
89]
90
91[[package]]
92name = "aes"
93version = "0.8.3"
94source = "registry+https://github.com/rust-lang/crates.io-index"
95checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
96dependencies = [
97 "cfg-if",
98 "cipher 0.4.4",56 "cipher 0.4.4",
99 "cpufeatures",57 "cpufeatures",
100]58]
10159
102[[package]]60[[package]]
103name = "aes-gcm"61name = "aes-gcm"
104version = "0.9.4"
105source = "registry+https://github.com/rust-lang/crates.io-index"
106checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
107dependencies = [
108 "aead 0.4.3",
109 "aes 0.7.5",
110 "cipher 0.3.0",
111 "ctr 0.8.0",
112 "ghash 0.4.4",
113 "subtle 2.4.1",
114]
115
116[[package]]
117name = "aes-gcm"
118version = "0.10.3"62version = "0.10.3"
119source = "registry+https://github.com/rust-lang/crates.io-index"63source = "registry+https://github.com/rust-lang/crates.io-index"
120checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"64checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
121dependencies = [65dependencies = [
122 "aead 0.5.2",66 "aead",
123 "aes 0.8.3",67 "aes",
124 "cipher 0.4.4",68 "cipher 0.4.4",
125 "ctr 0.9.2",69 "ctr",
126 "ghash 0.5.0",70 "ghash",
127 "subtle 2.4.1",71 "subtle 2.5.0",
128]72]
12973
130[[package]]74[[package]]
131name = "aes-soft"
132version = "0.6.4"
133source = "registry+https://github.com/rust-lang/crates.io-index"
134checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
135dependencies = [
136 "cipher 0.2.5",
137 "opaque-debug 0.3.0",
138]
139
140[[package]]
141name = "aesni"
142version = "0.10.0"
143source = "registry+https://github.com/rust-lang/crates.io-index"
144checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
145dependencies = [
146 "cipher 0.2.5",
147 "opaque-debug 0.3.0",
148]
149
150[[package]]
151name = "ahash"75name = "ahash"
152version = "0.7.7"76version = "0.7.8"
153source = "registry+https://github.com/rust-lang/crates.io-index"77source = "registry+https://github.com/rust-lang/crates.io-index"
154checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"78checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
155dependencies = [79dependencies = [
156 "getrandom 0.2.11",80 "getrandom 0.2.15",
157 "once_cell",81 "once_cell",
158 "version_check",82 "version_check",
159]83]
16084
161[[package]]85[[package]]
162name = "ahash"86name = "ahash"
163version = "0.8.6"87version = "0.8.11"
164source = "registry+https://github.com/rust-lang/crates.io-index"88source = "registry+https://github.com/rust-lang/crates.io-index"
165checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"89checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
166dependencies = [90dependencies = [
167 "cfg-if",91 "cfg-if",
168 "getrandom 0.2.11",92 "getrandom 0.2.15",
169 "once_cell",93 "once_cell",
170 "version_check",94 "version_check",
171 "zerocopy",95 "zerocopy",
172]96]
17397
174[[package]]98[[package]]
175name = "aho-corasick"99name = "aho-corasick"
176version = "1.1.2"100version = "1.1.3"
177source = "registry+https://github.com/rust-lang/crates.io-index"101source = "registry+https://github.com/rust-lang/crates.io-index"
178checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"102checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
179dependencies = [103dependencies = [
180 "memchr",104 "memchr",
181]105]
182106
183[[package]]107[[package]]
184name = "allocator-api2"108name = "allocator-api2"
185version = "0.2.16"109version = "0.2.18"
186source = "registry+https://github.com/rust-lang/crates.io-index"110source = "registry+https://github.com/rust-lang/crates.io-index"
187checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"111checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
188112
189[[package]]113[[package]]
190name = "always-assert"114name = "always-assert"
218142
219[[package]]143[[package]]
220name = "anstream"144name = "anstream"
221version = "0.6.4"145version = "0.6.14"
222source = "registry+https://github.com/rust-lang/crates.io-index"146source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44"147checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
224dependencies = [148dependencies = [
225 "anstyle",149 "anstyle",
226 "anstyle-parse",150 "anstyle-parse",
227 "anstyle-query",151 "anstyle-query",
228 "anstyle-wincon",152 "anstyle-wincon",
229 "colorchoice",153 "colorchoice",
154 "is_terminal_polyfill",
230 "utf8parse",155 "utf8parse",
231]156]
232157
233[[package]]158[[package]]
234name = "anstyle"159name = "anstyle"
235version = "1.0.4"160version = "1.0.7"
236source = "registry+https://github.com/rust-lang/crates.io-index"161source = "registry+https://github.com/rust-lang/crates.io-index"
237checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"162checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
238163
239[[package]]164[[package]]
240name = "anstyle-parse"165name = "anstyle-parse"
241version = "0.2.2"166version = "0.2.4"
242source = "registry+https://github.com/rust-lang/crates.io-index"167source = "registry+https://github.com/rust-lang/crates.io-index"
243checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140"168checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
244dependencies = [169dependencies = [
245 "utf8parse",170 "utf8parse",
246]171]
247172
248[[package]]173[[package]]
249name = "anstyle-query"174name = "anstyle-query"
250version = "1.0.0"175version = "1.0.3"
251source = "registry+https://github.com/rust-lang/crates.io-index"176source = "registry+https://github.com/rust-lang/crates.io-index"
252checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"177checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
253dependencies = [178dependencies = [
254 "windows-sys 0.48.0",179 "windows-sys 0.52.0",
255]180]
256181
257[[package]]182[[package]]
258name = "anstyle-wincon"183name = "anstyle-wincon"
259version = "3.0.1"184version = "3.0.3"
260source = "registry+https://github.com/rust-lang/crates.io-index"185source = "registry+https://github.com/rust-lang/crates.io-index"
261checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628"186checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
262dependencies = [187dependencies = [
263 "anstyle",188 "anstyle",
264 "windows-sys 0.48.0",189 "windows-sys 0.52.0",
265]190]
266191
267[[package]]192[[package]]
268name = "anyhow"193name = "anyhow"
269version = "1.0.75"194version = "1.0.86"
270source = "registry+https://github.com/rust-lang/crates.io-index"195source = "registry+https://github.com/rust-lang/crates.io-index"
271checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"196checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
272197
273[[package]]198[[package]]
274name = "app-promotion-rpc"199name = "app-promotion-rpc"
292217
293[[package]]218[[package]]
294name = "aquamarine"219name = "aquamarine"
295version = "0.3.2"220version = "0.3.3"
296source = "registry+https://github.com/rust-lang/crates.io-index"221source = "registry+https://github.com/rust-lang/crates.io-index"
297checksum = "df752953c49ce90719c7bf1fc587bc8227aed04732ea0c0f85e5397d7fdbd1a1"222checksum = "d1da02abba9f9063d786eab1509833ebb2fac0f966862ca59439c76b9c566760"
298dependencies = [223dependencies = [
299 "include_dir",224 "include_dir",
300 "itertools 0.10.5",225 "itertools 0.10.5",
305]230]
306231
307[[package]]232[[package]]
308name = "arc-swap"233name = "aquamarine"
309version = "1.6.0"234version = "0.5.0"
310source = "registry+https://github.com/rust-lang/crates.io-index"235source = "registry+https://github.com/rust-lang/crates.io-index"
311checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"236checksum = "21cc1548309245035eb18aa7f0967da6bc65587005170c56e6ef2788a4cf3f4e"
237dependencies = [
238 "include_dir",
239 "itertools 0.10.5",
240 "proc-macro-error",
241 "proc-macro2",
242 "quote",
243 "syn 2.0.65",
244]
312245
313[[package]]246[[package]]
314name = "ark-bls12-377"247name = "ark-bls12-377"
436checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"369checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
437dependencies = [370dependencies = [
438 "num-traits",371 "num-traits",
439 "rand 0.8.5",372 "rand",
440]373]
441374
442[[package]]375[[package]]
447380
448[[package]]381[[package]]
449name = "array-bytes"382name = "array-bytes"
450version = "6.2.0"383version = "6.2.3"
451source = "registry+https://github.com/rust-lang/crates.io-index"384source = "registry+https://github.com/rust-lang/crates.io-index"
452checksum = "de17a919934ad8c5cc99a1a74de4e2dab95d6121a8f27f94755ff525b630382c"385checksum = "5d5dde061bd34119e902bbb2d9b90c5692635cf59fb91d582c2b68043f1b8293"
453386
454[[package]]387[[package]]
455name = "arrayref"388name = "arrayref"
468401
469[[package]]402[[package]]
470name = "arrayvec"403name = "arrayvec"
471version = "0.5.2"
472source = "registry+https://github.com/rust-lang/crates.io-index"
473checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
474
475[[package]]
476name = "arrayvec"
477version = "0.7.4"404version = "0.7.4"
478source = "registry+https://github.com/rust-lang/crates.io-index"405source = "registry+https://github.com/rust-lang/crates.io-index"
479checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"406checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
480407
481[[package]]408[[package]]
482name = "asn1-rs"409name = "asn1-rs"
483version = "0.3.1"
484source = "registry+https://github.com/rust-lang/crates.io-index"
485checksum = "30ff05a702273012438132f449575dbc804e27b2f3cbe3069aa237d26c98fa33"
486dependencies = [
487 "asn1-rs-derive 0.1.0",
488 "asn1-rs-impl",
489 "displaydoc",
490 "nom",
491 "num-traits",
492 "rusticata-macros",
493 "thiserror",
494 "time",
495]
496
497[[package]]
498name = "asn1-rs"
499version = "0.5.2"410version = "0.5.2"
500source = "registry+https://github.com/rust-lang/crates.io-index"411source = "registry+https://github.com/rust-lang/crates.io-index"
501checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0"412checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0"
502dependencies = [413dependencies = [
503 "asn1-rs-derive 0.4.0",414 "asn1-rs-derive",
504 "asn1-rs-impl",415 "asn1-rs-impl",
505 "displaydoc",416 "displaydoc",
506 "nom",417 "nom",
512423
513[[package]]424[[package]]
514name = "asn1-rs-derive"425name = "asn1-rs-derive"
515version = "0.1.0"
516source = "registry+https://github.com/rust-lang/crates.io-index"
517checksum = "db8b7511298d5b7784b40b092d9e9dcd3a627a5707e4b5e507931ab0d44eeebf"
518dependencies = [
519 "proc-macro2",
520 "quote",
521 "syn 1.0.109",
522 "synstructure",
523]
524
525[[package]]
526name = "asn1-rs-derive"
527version = "0.4.0"426version = "0.4.0"
528source = "registry+https://github.com/rust-lang/crates.io-index"427source = "registry+https://github.com/rust-lang/crates.io-index"
529checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"428checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
564463
565[[package]]464[[package]]
566name = "async-channel"465name = "async-channel"
567version = "2.1.0"466version = "2.3.1"
568source = "registry+https://github.com/rust-lang/crates.io-index"467source = "registry+https://github.com/rust-lang/crates.io-index"
569checksum = "d37875bd9915b7d67c2f117ea2c30a0989874d0b2cb694fe25403c85763c0c9e"468checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
570dependencies = [469dependencies = [
571 "concurrent-queue",470 "concurrent-queue",
572 "event-listener 3.1.0",471 "event-listener-strategy 0.5.2",
573 "event-listener-strategy",
574 "futures-core",472 "futures-core",
575 "pin-project-lite 0.2.13",473 "pin-project-lite 0.2.14",
576]474]
577475
578[[package]]476[[package]]
579name = "async-executor"477name = "async-executor"
580version = "1.7.2"478version = "1.11.0"
581source = "registry+https://github.com/rust-lang/crates.io-index"479source = "registry+https://github.com/rust-lang/crates.io-index"
582checksum = "fc5ea910c42e5ab19012bab31f53cb4d63d54c3a27730f9a833a88efcf4bb52d"480checksum = "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a"
583dependencies = [481dependencies = [
584 "async-lock 3.1.1",
585 "async-task",482 "async-task",
586 "concurrent-queue",483 "concurrent-queue",
587 "fastrand 2.0.1",484 "fastrand 2.1.0",
588 "futures-lite 2.0.1",485 "futures-lite 2.3.0",
589 "slab",486 "slab",
590]487]
591488
623520
624[[package]]521[[package]]
625name = "async-io"522name = "async-io"
626version = "2.2.0"523version = "2.3.2"
627source = "registry+https://github.com/rust-lang/crates.io-index"524source = "registry+https://github.com/rust-lang/crates.io-index"
628checksum = "41ed9d5715c2d329bf1b4da8d60455b99b187f27ba726df2883799af9af60997"525checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884"
629dependencies = [526dependencies = [
630 "async-lock 3.1.1",527 "async-lock 3.3.0",
631 "cfg-if",528 "cfg-if",
632 "concurrent-queue",529 "concurrent-queue",
633 "futures-io",530 "futures-io",
634 "futures-lite 2.0.1",531 "futures-lite 2.3.0",
635 "parking",532 "parking",
636 "polling 3.3.0",533 "polling 3.7.0",
637 "rustix 0.38.25",534 "rustix 0.38.34",
638 "slab",535 "slab",
639 "tracing",536 "tracing",
640 "waker-fn",537 "windows-sys 0.52.0",
641 "windows-sys 0.48.0",
642]538]
643539
644[[package]]540[[package]]
652548
653[[package]]549[[package]]
654name = "async-lock"550name = "async-lock"
655version = "3.1.1"551version = "3.3.0"
656source = "registry+https://github.com/rust-lang/crates.io-index"552source = "registry+https://github.com/rust-lang/crates.io-index"
657checksum = "655b9c7fe787d3b25cc0f804a1a8401790f0c5bc395beb5a64dc77d8de079105"553checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
658dependencies = [554dependencies = [
659 "event-listener 3.1.0",555 "event-listener 4.0.3",
660 "event-listener-strategy",556 "event-listener-strategy 0.4.0",
661 "pin-project-lite 0.2.13",557 "pin-project-lite 0.2.14",
662]558]
663559
664[[package]]560[[package]]
685 "cfg-if",581 "cfg-if",
686 "event-listener 3.1.0",582 "event-listener 3.1.0",
687 "futures-lite 1.13.0",583 "futures-lite 1.13.0",
688 "rustix 0.38.25",584 "rustix 0.38.34",
689 "windows-sys 0.48.0",585 "windows-sys 0.48.0",
690]586]
691587
692[[package]]588[[package]]
693name = "async-signal"589name = "async-signal"
694version = "0.2.5"590version = "0.2.6"
695source = "registry+https://github.com/rust-lang/crates.io-index"591source = "registry+https://github.com/rust-lang/crates.io-index"
696checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"592checksum = "afe66191c335039c7bb78f99dc7520b0cbb166b3a1cb33a03f53d8a1c6f2afda"
697dependencies = [593dependencies = [
698 "async-io 2.2.0",594 "async-io 2.3.2",
699 "async-lock 2.8.0",595 "async-lock 3.3.0",
700 "atomic-waker",596 "atomic-waker",
701 "cfg-if",597 "cfg-if",
702 "futures-core",598 "futures-core",
703 "futures-io",599 "futures-io",
704 "rustix 0.38.25",600 "rustix 0.38.34",
705 "signal-hook-registry",601 "signal-hook-registry",
706 "slab",602 "slab",
707 "windows-sys 0.48.0",603 "windows-sys 0.52.0",
708]604]
709605
710[[package]]606[[package]]
711name = "async-task"607name = "async-task"
712version = "4.5.0"608version = "4.7.1"
713source = "registry+https://github.com/rust-lang/crates.io-index"609source = "registry+https://github.com/rust-lang/crates.io-index"
714checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1"610checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
715611
716[[package]]612[[package]]
717name = "async-trait"613name = "async-trait"
718version = "0.1.74"614version = "0.1.80"
719source = "registry+https://github.com/rust-lang/crates.io-index"615source = "registry+https://github.com/rust-lang/crates.io-index"
720checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"616checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
721dependencies = [617dependencies = [
722 "proc-macro2",618 "proc-macro2",
723 "quote",619 "quote",
724 "syn 2.0.39",620 "syn 2.0.65",
725]621]
726622
727[[package]]623[[package]]
734 "futures-sink",630 "futures-sink",
735 "futures-util",631 "futures-util",
736 "memchr",632 "memchr",
737 "pin-project-lite 0.2.13",633 "pin-project-lite 0.2.14",
738]634]
739635
740[[package]]636[[package]]
750checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"646checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
751647
752[[package]]648[[package]]
753name = "atty"
754version = "0.2.14"
755source = "registry+https://github.com/rust-lang/crates.io-index"
756checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
757dependencies = [
758 "hermit-abi 0.1.19",
759 "libc",
760 "winapi",
761]
762
763[[package]]
764name = "auto_impl"649name = "auto_impl"
765version = "1.1.0"650version = "1.2.0"
766source = "registry+https://github.com/rust-lang/crates.io-index"651source = "registry+https://github.com/rust-lang/crates.io-index"
767checksum = "fee3da8ef1276b0bee5dd1c7258010d8fffd31801447323115a25560e1327b89"652checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42"
768dependencies = [653dependencies = [
769 "proc-macro-error",
770 "proc-macro2",654 "proc-macro2",
771 "quote",655 "quote",
772 "syn 1.0.109",656 "syn 2.0.65",
773]657]
774658
775[[package]]659[[package]]
776name = "autocfg"660name = "autocfg"
777version = "1.1.0"661version = "1.3.0"
778source = "registry+https://github.com/rust-lang/crates.io-index"662source = "registry+https://github.com/rust-lang/crates.io-index"
779checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"663checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
780664
781[[package]]665[[package]]
782name = "backtrace"666name = "backtrace"
783version = "0.3.69"667version = "0.3.71"
784source = "registry+https://github.com/rust-lang/crates.io-index"668source = "registry+https://github.com/rust-lang/crates.io-index"
785checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"669checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
786dependencies = [670dependencies = [
787 "addr2line 0.21.0",671 "addr2line 0.21.0",
788 "cc",672 "cc",
789 "cfg-if",673 "cfg-if",
790 "libc",674 "libc",
791 "miniz_oxide",675 "miniz_oxide",
792 "object 0.32.1",676 "object 0.32.2",
793 "rustc-demangle",677 "rustc-demangle",
794]678]
795679
801685
802[[package]]686[[package]]
803name = "base16ct"687name = "base16ct"
804version = "0.1.1"
805source = "registry+https://github.com/rust-lang/crates.io-index"
806checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce"
807
808[[package]]
809name = "base16ct"
810version = "0.2.0"688version = "0.2.0"
811source = "registry+https://github.com/rust-lang/crates.io-index"689source = "registry+https://github.com/rust-lang/crates.io-index"
812checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"690checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
819697
820[[package]]698[[package]]
821name = "base64"699name = "base64"
822version = "0.21.5"700version = "0.21.7"
823source = "registry+https://github.com/rust-lang/crates.io-index"701source = "registry+https://github.com/rust-lang/crates.io-index"
824checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"702checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
825703
826[[package]]704[[package]]
705name = "base64"
706version = "0.22.1"
707source = "registry+https://github.com/rust-lang/crates.io-index"
708checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
709
710[[package]]
827name = "base64ct"711name = "base64ct"
828version = "1.6.0"712version = "1.6.0"
829source = "registry+https://github.com/rust-lang/crates.io-index"713source = "registry+https://github.com/rust-lang/crates.io-index"
840724
841[[package]]725[[package]]
842name = "binary-merkle-tree"726name = "binary-merkle-tree"
843version = "10.0.0"727version = "15.0.0"
844source = "registry+https://github.com/rust-lang/crates.io-index"728source = "registry+https://github.com/rust-lang/crates.io-index"
845checksum = "a399848a68a5196a04c19db5bfc4dca3cd0989a3165150f06c1ad1bc8882aa34"729checksum = "4b5c0fd4282c30c05647e1052d71bf1a0c8067ab1e9a8fc6d0c292dce0ecb237"
846dependencies = [730dependencies = [
847 "hash-db 0.16.0",731 "hash-db",
848 "log",732 "log",
849]733]
850734
869 "lazy_static",753 "lazy_static",
870 "lazycell",754 "lazycell",
871 "peeking_take_while",755 "peeking_take_while",
872 "prettyplease 0.2.15",756 "prettyplease 0.2.20",
873 "proc-macro2",757 "proc-macro2",
874 "quote",758 "quote",
875 "regex",759 "regex",
876 "rustc-hash",760 "rustc-hash",
877 "shlex",761 "shlex",
878 "syn 2.0.39",762 "syn 2.0.65",
879]763]
880764
881[[package]]765[[package]]
884source = "registry+https://github.com/rust-lang/crates.io-index"768source = "registry+https://github.com/rust-lang/crates.io-index"
885checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f"769checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f"
886dependencies = [770dependencies = [
887 "bitcoin_hashes",771 "bitcoin_hashes 0.11.0",
888]772]
889773
890[[package]]774[[package]]
775name = "bitcoin-internals"
776version = "0.2.0"
777source = "registry+https://github.com/rust-lang/crates.io-index"
778checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb"
779
780[[package]]
891name = "bitcoin_hashes"781name = "bitcoin_hashes"
892version = "0.11.0"782version = "0.11.0"
893source = "registry+https://github.com/rust-lang/crates.io-index"783source = "registry+https://github.com/rust-lang/crates.io-index"
894checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4"784checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4"
895785
896[[package]]786[[package]]
787name = "bitcoin_hashes"
788version = "0.13.0"
789source = "registry+https://github.com/rust-lang/crates.io-index"
790checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b"
791dependencies = [
792 "bitcoin-internals",
793 "hex-conservative",
794]
795
796[[package]]
897name = "bitflags"797name = "bitflags"
898version = "1.3.2"798version = "1.3.2"
899source = "registry+https://github.com/rust-lang/crates.io-index"799source = "registry+https://github.com/rust-lang/crates.io-index"
900checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"800checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
901801
902[[package]]802[[package]]
903name = "bitflags"803name = "bitflags"
904version = "2.4.1"804version = "2.5.0"
905source = "registry+https://github.com/rust-lang/crates.io-index"805source = "registry+https://github.com/rust-lang/crates.io-index"
906checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"806checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
907807
908[[package]]808[[package]]
909name = "bitvec"809name = "bitvec"
913dependencies = [813dependencies = [
914 "funty",814 "funty",
915 "radium",815 "radium",
816 "serde",
916 "tap",817 "tap",
917 "wyz",818 "wyz",
918]819]
972873
973[[package]]874[[package]]
974name = "blake3"875name = "blake3"
975version = "1.5.0"876version = "1.5.1"
976source = "registry+https://github.com/rust-lang/crates.io-index"877source = "registry+https://github.com/rust-lang/crates.io-index"
977checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87"878checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52"
978dependencies = [879dependencies = [
979 "arrayref",880 "arrayref",
980 "arrayvec 0.7.4",881 "arrayvec 0.7.4",
989source = "registry+https://github.com/rust-lang/crates.io-index"890source = "registry+https://github.com/rust-lang/crates.io-index"
990checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"891checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
991dependencies = [892dependencies = [
992 "block-padding 0.1.5",893 "block-padding",
993 "byte-tools",894 "byte-tools",
994 "byteorder",895 "byteorder",
995 "generic-array 0.12.4",896 "generic-array 0.12.4",
1014]915]
1015916
1016[[package]]917[[package]]
1017name = "block-modes"
1018version = "0.7.0"
1019source = "registry+https://github.com/rust-lang/crates.io-index"
1020checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0"
1021dependencies = [
1022 "block-padding 0.2.1",
1023 "cipher 0.2.5",
1024]
1025
1026[[package]]
1027name = "block-padding"918name = "block-padding"
1028version = "0.1.5"919version = "0.1.5"
1029source = "registry+https://github.com/rust-lang/crates.io-index"920source = "registry+https://github.com/rust-lang/crates.io-index"
1033]924]
1034925
1035[[package]]926[[package]]
1036name = "block-padding"
1037version = "0.2.1"
1038source = "registry+https://github.com/rust-lang/crates.io-index"
1039checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
1040
1041[[package]]
1042name = "blocking"927name = "blocking"
1043version = "1.5.1"928version = "1.6.0"
1044source = "registry+https://github.com/rust-lang/crates.io-index"929source = "registry+https://github.com/rust-lang/crates.io-index"
1045checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"930checksum = "495f7104e962b7356f0aeb34247aca1fe7d2e783b346582db7f2904cb5717e88"
1046dependencies = [931dependencies = [
1047 "async-channel 2.1.0",932 "async-channel 2.3.1",
1048 "async-lock 3.1.1",933 "async-lock 3.3.0",
1049 "async-task",934 "async-task",
1050 "fastrand 2.0.1",
1051 "futures-io",935 "futures-io",
1052 "futures-lite 2.0.1",936 "futures-lite 2.3.0",
1053 "piper",937 "piper",
1054 "tracing",
1055]938]
1056939
1057[[package]]940[[package]]
1076959
1077[[package]]960[[package]]
1078name = "bounded-collections"961name = "bounded-collections"
1079version = "0.1.9"962version = "0.2.0"
1080source = "registry+https://github.com/rust-lang/crates.io-index"963source = "registry+https://github.com/rust-lang/crates.io-index"
1081checksum = "ca548b6163b872067dc5eb82fd130c56881435e30367d2073594a3d9744120dd"964checksum = "d32385ecb91a31bddaf908e8dcf4a15aef1bcd3913cc03ebfad02ff6d568abc1"
1082dependencies = [965dependencies = [
1083 "log",966 "log",
1084 "parity-scale-codec",967 "parity-scale-codec",
1097980
1098[[package]]981[[package]]
1099name = "bp-xcm-bridge-hub-router"982name = "bp-xcm-bridge-hub-router"
1100version = "0.3.0"983version = "0.9.0"
1101source = "registry+https://github.com/rust-lang/crates.io-index"984source = "registry+https://github.com/rust-lang/crates.io-index"
1102checksum = "be3b4fafc31f17da1b4ea403c4118e4f4f1d9a5a696729b374551d582e48633b"985checksum = "7366e856da4c5f49e1ef94c3ea401854fe52310696561e24b7509d2f963d7210"
1103dependencies = [986dependencies = [
1104 "parity-scale-codec",987 "parity-scale-codec",
1105 "scale-info",988 "scale-info",
1115998
1116[[package]]999[[package]]
1117name = "bs58"1000name = "bs58"
1118version = "0.5.0"1001version = "0.5.1"
1119source = "registry+https://github.com/rust-lang/crates.io-index"1002source = "registry+https://github.com/rust-lang/crates.io-index"
1120checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896"1003checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
1121dependencies = [1004dependencies = [
1122 "tinyvec",1005 "tinyvec",
1123]1006]
11241007
1125[[package]]1008[[package]]
1126name = "bstr"
1127version = "1.8.0"
1128source = "registry+https://github.com/rust-lang/crates.io-index"
1129checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c"
1130dependencies = [
1131 "memchr",
1132 "serde",
1133]
1134
1135[[package]]
1136name = "build-helper"1009name = "build-helper"
1137version = "0.1.1"1010version = "0.1.1"
1138source = "registry+https://github.com/rust-lang/crates.io-index"1011source = "registry+https://github.com/rust-lang/crates.io-index"
11431016
1144[[package]]1017[[package]]
1145name = "bumpalo"1018name = "bumpalo"
1146version = "3.14.0"1019version = "3.16.0"
1147source = "registry+https://github.com/rust-lang/crates.io-index"1020source = "registry+https://github.com/rust-lang/crates.io-index"
1148checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"1021checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
11491022
1150[[package]]1023[[package]]
1151name = "byte-slice-cast"1024name = "byte-slice-cast"
11611034
1162[[package]]1035[[package]]
1163name = "bytemuck"1036name = "bytemuck"
1164version = "1.14.0"1037version = "1.16.0"
1165source = "registry+https://github.com/rust-lang/crates.io-index"1038source = "registry+https://github.com/rust-lang/crates.io-index"
1166checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"1039checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5"
11671040
1168[[package]]1041[[package]]
1169name = "byteorder"1042name = "byteorder"
11731046
1174[[package]]1047[[package]]
1175name = "bytes"1048name = "bytes"
1176version = "1.5.0"1049version = "1.6.0"
1177source = "registry+https://github.com/rust-lang/crates.io-index"1050source = "registry+https://github.com/rust-lang/crates.io-index"
1178checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"1051checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
11791052
1180[[package]]1053[[package]]
1181name = "bzip2-sys"1054name = "bzip2-sys"
12001073
1201[[package]]1074[[package]]
1202name = "camino"1075name = "camino"
1203version = "1.1.6"1076version = "1.1.7"
1204source = "registry+https://github.com/rust-lang/crates.io-index"1077source = "registry+https://github.com/rust-lang/crates.io-index"
1205checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"1078checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239"
1206dependencies = [1079dependencies = [
1207 "serde",1080 "serde",
1208]1081]
12091082
1210[[package]]1083[[package]]
1211name = "cargo-platform"1084name = "cargo-platform"
1212version = "0.1.5"1085version = "0.1.8"
1213source = "registry+https://github.com/rust-lang/crates.io-index"1086source = "registry+https://github.com/rust-lang/crates.io-index"
1214checksum = "e34637b3140142bdf929fb439e8aa4ebad7651ebf7b1080b3930aa16ac1459ff"1087checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc"
1215dependencies = [1088dependencies = [
1216 "serde",1089 "serde",
1217]1090]
1224dependencies = [1097dependencies = [
1225 "camino",1098 "camino",
1226 "cargo-platform",1099 "cargo-platform",
1227 "semver 1.0.20",1100 "semver 1.0.23",
1228 "serde",1101 "serde",
1229 "serde_json",1102 "serde_json",
1230 "thiserror",1103 "thiserror",
1231]1104]
12321105
1233[[package]]1106[[package]]
1234name = "cc"1107name = "cc"
1235version = "1.0.83"1108version = "1.0.98"
1236source = "registry+https://github.com/rust-lang/crates.io-index"1109source = "registry+https://github.com/rust-lang/crates.io-index"
1237checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"1110checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f"
1238dependencies = [1111dependencies = [
1239 "jobserver",1112 "jobserver",
1240 "libc",1113 "libc",
1114 "once_cell",
1241]1115]
12421116
1243[[package]]1117[[package]]
1244name = "ccm"
1245version = "0.3.0"
1246source = "registry+https://github.com/rust-lang/crates.io-index"
1247checksum = "5aca1a8fbc20b50ac9673ff014abfb2b5f4085ee1a850d408f14a159c5853ac7"
1248dependencies = [
1249 "aead 0.3.2",
1250 "cipher 0.2.5",
1251 "subtle 2.4.1",
1252]
1253
1254[[package]]
1255name = "cexpr"1118name = "cexpr"
1256version = "0.6.0"1119version = "0.6.0"
1257source = "registry+https://github.com/rust-lang/crates.io-index"1120source = "registry+https://github.com/rust-lang/crates.io-index"
12621125
1263[[package]]1126[[package]]
1264name = "cfg-expr"1127name = "cfg-expr"
1265version = "0.15.5"1128version = "0.15.8"
1266source = "registry+https://github.com/rust-lang/crates.io-index"1129source = "registry+https://github.com/rust-lang/crates.io-index"
1267checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3"1130checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
1268dependencies = [1131dependencies = [
1269 "smallvec",1132 "smallvec",
1270]1133]
1308source = "registry+https://github.com/rust-lang/crates.io-index"1171source = "registry+https://github.com/rust-lang/crates.io-index"
1309checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"1172checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
1310dependencies = [1173dependencies = [
1311 "aead 0.5.2",1174 "aead",
1312 "chacha20",1175 "chacha20",
1313 "cipher 0.4.4",1176 "cipher 0.4.4",
1314 "poly1305",1177 "poly1305",
13171180
1318[[package]]1181[[package]]
1319name = "chrono"1182name = "chrono"
1320version = "0.4.31"1183version = "0.4.38"
1321source = "registry+https://github.com/rust-lang/crates.io-index"1184source = "registry+https://github.com/rust-lang/crates.io-index"
1322checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"1185checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
1323dependencies = [1186dependencies = [
1324 "android-tzdata",1187 "android-tzdata",
1325 "iana-time-zone",1188 "iana-time-zone",
1326 "js-sys",1189 "js-sys",
1327 "num-traits",1190 "num-traits",
1328 "wasm-bindgen",1191 "wasm-bindgen",
1329 "windows-targets 0.48.5",1192 "windows-targets 0.52.5",
1330]1193]
13311194
1332[[package]]1195[[package]]
1337dependencies = [1200dependencies = [
1338 "core2",1201 "core2",
1339 "multibase",1202 "multibase",
1340 "multihash",1203 "multihash 0.17.0",
1341 "serde",1204 "serde",
1342 "unsigned-varint",1205 "unsigned-varint",
1343]1206]
13531216
1354[[package]]1217[[package]]
1355name = "cipher"1218name = "cipher"
1356version = "0.3.0"
1357source = "registry+https://github.com/rust-lang/crates.io-index"
1358checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
1359dependencies = [
1360 "generic-array 0.14.7",
1361]
1362
1363[[package]]
1364name = "cipher"
1365version = "0.4.4"1219version = "0.4.4"
1366source = "registry+https://github.com/rust-lang/crates.io-index"1220source = "registry+https://github.com/rust-lang/crates.io-index"
1367checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"1221checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
13821236
1383[[package]]1237[[package]]
1384name = "clang-sys"1238name = "clang-sys"
1385version = "1.6.1"1239version = "1.7.0"
1386source = "registry+https://github.com/rust-lang/crates.io-index"1240source = "registry+https://github.com/rust-lang/crates.io-index"
1387checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"1241checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
1388dependencies = [1242dependencies = [
1389 "glob",1243 "glob",
1390 "libc",1244 "libc",
13931247
1394[[package]]1248[[package]]
1395name = "clap"1249name = "clap"
1396version = "4.4.8"1250version = "4.5.4"
1397source = "registry+https://github.com/rust-lang/crates.io-index"1251source = "registry+https://github.com/rust-lang/crates.io-index"
1398checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64"1252checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
1399dependencies = [1253dependencies = [
1400 "clap_builder",1254 "clap_builder",
1401 "clap_derive",1255 "clap_derive",
1402]1256]
14031257
1404[[package]]1258[[package]]
1405name = "clap_builder"1259name = "clap_builder"
1406version = "4.4.8"1260version = "4.5.2"
1407source = "registry+https://github.com/rust-lang/crates.io-index"1261source = "registry+https://github.com/rust-lang/crates.io-index"
1408checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc"1262checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
1409dependencies = [1263dependencies = [
1410 "anstream",1264 "anstream",
1411 "anstyle",1265 "anstyle",
1412 "clap_lex",1266 "clap_lex",
1413 "strsim",1267 "strsim",
1268 "terminal_size",
1414]1269]
14151270
1416[[package]]1271[[package]]
1417name = "clap_derive"1272name = "clap_derive"
1418version = "4.4.7"1273version = "4.5.4"
1419source = "registry+https://github.com/rust-lang/crates.io-index"1274source = "registry+https://github.com/rust-lang/crates.io-index"
1420checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"1275checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
1421dependencies = [1276dependencies = [
1422 "heck",1277 "heck 0.5.0",
1423 "proc-macro2",1278 "proc-macro2",
1424 "quote",1279 "quote",
1425 "syn 2.0.39",1280 "syn 2.0.65",
1426]1281]
14271282
1428[[package]]1283[[package]]
1429name = "clap_lex"1284name = "clap_lex"
1430version = "0.6.0"1285version = "0.7.0"
1431source = "registry+https://github.com/rust-lang/crates.io-index"1286source = "registry+https://github.com/rust-lang/crates.io-index"
1432checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"1287checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
14331288
1434[[package]]1289[[package]]
1435name = "coarsetime"1290name = "coarsetime"
1436version = "0.1.33"1291version = "0.1.34"
1437source = "registry+https://github.com/rust-lang/crates.io-index"1292source = "registry+https://github.com/rust-lang/crates.io-index"
1438checksum = "71367d3385c716342014ad17e3d19f7788ae514885a1f4c24f500260fb365e1a"1293checksum = "13b3839cf01bb7960114be3ccf2340f541b6d0c81f8690b007b2b39f750f7e5d"
1439dependencies = [1294dependencies = [
1440 "libc",1295 "libc",
1441 "once_cell",1296 "wasix",
1442 "wasi 0.11.0+wasi-snapshot-preview1",
1443 "wasm-bindgen",1297 "wasm-bindgen",
1444]1298]
14451299
14551309
1456[[package]]1310[[package]]
1457name = "colorchoice"1311name = "colorchoice"
1458version = "1.0.0"1312version = "1.0.1"
1459source = "registry+https://github.com/rust-lang/crates.io-index"1313source = "registry+https://github.com/rust-lang/crates.io-index"
1460checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"1314checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
14611315
1462[[package]]1316[[package]]
1463name = "comfy-table"1317name = "comfy-table"
1464version = "7.1.0"1318version = "7.1.1"
1465source = "registry+https://github.com/rust-lang/crates.io-index"1319source = "registry+https://github.com/rust-lang/crates.io-index"
1466checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686"1320checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7"
1467dependencies = [1321dependencies = [
1468 "strum 0.25.0",1322 "strum 0.26.2",
1469 "strum_macros 0.25.3",1323 "strum_macros 0.26.2",
1470 "unicode-width",1324 "unicode-width",
1471]1325]
14721326
14781332
1479[[package]]1333[[package]]
1480name = "concurrent-queue"1334name = "concurrent-queue"
1481version = "2.3.0"1335version = "2.5.0"
1482source = "registry+https://github.com/rust-lang/crates.io-index"1336source = "registry+https://github.com/rust-lang/crates.io-index"
1483checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400"1337checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
1484dependencies = [1338dependencies = [
1485 "crossbeam-utils",1339 "crossbeam-utils",
1486]1340]
14871341
1488[[package]]1342[[package]]
1489name = "console"1343name = "console"
1490version = "0.15.7"1344version = "0.15.8"
1491source = "registry+https://github.com/rust-lang/crates.io-index"1345source = "registry+https://github.com/rust-lang/crates.io-index"
1492checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"1346checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
1493dependencies = [1347dependencies = [
1494 "encode_unicode",1348 "encode_unicode",
1495 "lazy_static",1349 "lazy_static",
1496 "libc",1350 "libc",
1497 "unicode-width",1351 "unicode-width",
1498 "windows-sys 0.45.0",1352 "windows-sys 0.52.0",
1499]1353]
15001354
1501[[package]]1355[[package]]
1502name = "const-oid"1356name = "const-oid"
1503version = "0.9.5"1357version = "0.9.6"
1504source = "registry+https://github.com/rust-lang/crates.io-index"1358source = "registry+https://github.com/rust-lang/crates.io-index"
1505checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"1359checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
15061360
1507[[package]]1361[[package]]
1508name = "const-random"1362name = "const-random"
1509version = "0.1.17"1363version = "0.1.18"
1510source = "registry+https://github.com/rust-lang/crates.io-index"1364source = "registry+https://github.com/rust-lang/crates.io-index"
1511checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a"1365checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
1512dependencies = [1366dependencies = [
1513 "const-random-macro",1367 "const-random-macro",
1514]1368]
1519source = "registry+https://github.com/rust-lang/crates.io-index"1373source = "registry+https://github.com/rust-lang/crates.io-index"
1520checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"1374checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
1521dependencies = [1375dependencies = [
1522 "getrandom 0.2.11",1376 "getrandom 0.2.15",
1523 "once_cell",1377 "once_cell",
1524 "tiny-keccak",1378 "tiny-keccak",
1525]1379]
15501404
1551[[package]]1405[[package]]
1552name = "core-foundation"1406name = "core-foundation"
1553version = "0.9.3"1407version = "0.9.4"
1554source = "registry+https://github.com/rust-lang/crates.io-index"1408source = "registry+https://github.com/rust-lang/crates.io-index"
1555checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"1409checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
1556dependencies = [1410dependencies = [
1557 "core-foundation-sys",1411 "core-foundation-sys",
1558 "libc",1412 "libc",
1559]1413]
15601414
1561[[package]]1415[[package]]
1562name = "core-foundation-sys"1416name = "core-foundation-sys"
1563version = "0.8.4"1417version = "0.8.6"
1564source = "registry+https://github.com/rust-lang/crates.io-index"1418source = "registry+https://github.com/rust-lang/crates.io-index"
1565checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"1419checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
15661420
1567[[package]]1421[[package]]
1568name = "core2"1422name = "core2"
15941448
1595[[package]]1449[[package]]
1596name = "cpufeatures"1450name = "cpufeatures"
1597version = "0.2.11"1451version = "0.2.12"
1598source = "registry+https://github.com/rust-lang/crates.io-index"1452source = "registry+https://github.com/rust-lang/crates.io-index"
1599checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"1453checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
1600dependencies = [1454dependencies = [
1601 "libc",1455 "libc",
1602]1456]
1625 "gimli 0.27.3",1479 "gimli 0.27.3",
1626 "hashbrown 0.13.2",1480 "hashbrown 0.13.2",
1627 "log",1481 "log",
1628 "regalloc2",1482 "regalloc2 0.6.1",
1629 "smallvec",1483 "smallvec",
1630 "target-lexicon",1484 "target-lexicon",
1631]1485]
1700]1554]
17011555
1702[[package]]1556[[package]]
1703name = "crc"
1704version = "3.0.1"
1705source = "registry+https://github.com/rust-lang/crates.io-index"
1706checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
1707dependencies = [
1708 "crc-catalog",
1709]
1710
1711[[package]]
1712name = "crc-catalog"
1713version = "2.4.0"
1714source = "registry+https://github.com/rust-lang/crates.io-index"
1715checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
1716
1717[[package]]
1718name = "crc32fast"1557name = "crc32fast"
1719version = "1.3.2"1558version = "1.4.0"
1720source = "registry+https://github.com/rust-lang/crates.io-index"1559source = "registry+https://github.com/rust-lang/crates.io-index"
1721checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"1560checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
1722dependencies = [1561dependencies = [
1723 "cfg-if",1562 "cfg-if",
1724]1563]
17251564
1726[[package]]1565[[package]]
1727name = "crossbeam-deque"1566name = "crossbeam-deque"
1728version = "0.8.3"1567version = "0.8.5"
1729source = "registry+https://github.com/rust-lang/crates.io-index"1568source = "registry+https://github.com/rust-lang/crates.io-index"
1730checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"1569checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
1731dependencies = [1570dependencies = [
1732 "cfg-if",
1733 "crossbeam-epoch",1571 "crossbeam-epoch",
1734 "crossbeam-utils",1572 "crossbeam-utils",
1735]1573]
17361574
1737[[package]]1575[[package]]
1738name = "crossbeam-epoch"1576name = "crossbeam-epoch"
1739version = "0.9.15"1577version = "0.9.18"
1740source = "registry+https://github.com/rust-lang/crates.io-index"1578source = "registry+https://github.com/rust-lang/crates.io-index"
1741checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"1579checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
1742dependencies = [1580dependencies = [
1743 "autocfg",
1744 "cfg-if",
1745 "crossbeam-utils",1581 "crossbeam-utils",
1746 "memoffset 0.9.0",
1747 "scopeguard",
1748]1582]
17491583
1750[[package]]1584[[package]]
1751name = "crossbeam-queue"1585name = "crossbeam-queue"
1752version = "0.3.8"1586version = "0.3.11"
1753source = "registry+https://github.com/rust-lang/crates.io-index"1587source = "registry+https://github.com/rust-lang/crates.io-index"
1754checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"1588checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
1755dependencies = [1589dependencies = [
1756 "cfg-if",
1757 "crossbeam-utils",1590 "crossbeam-utils",
1758]1591]
17591592
1760[[package]]1593[[package]]
1761name = "crossbeam-utils"1594name = "crossbeam-utils"
1762version = "0.8.16"1595version = "0.8.20"
1763source = "registry+https://github.com/rust-lang/crates.io-index"1596source = "registry+https://github.com/rust-lang/crates.io-index"
1764checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"1597checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
1765dependencies = [
1766 "cfg-if",
1767]
17681598
1769[[package]]1599[[package]]
1770name = "crunchy"1600name = "crunchy"
17741604
1775[[package]]1605[[package]]
1776name = "crypto-bigint"1606name = "crypto-bigint"
1777version = "0.4.9"
1778source = "registry+https://github.com/rust-lang/crates.io-index"
1779checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
1780dependencies = [
1781 "generic-array 0.14.7",
1782 "rand_core 0.6.4",
1783 "subtle 2.4.1",
1784 "zeroize",
1785]
1786
1787[[package]]
1788name = "crypto-bigint"
1789version = "0.5.5"1607version = "0.5.5"
1790source = "registry+https://github.com/rust-lang/crates.io-index"1608source = "registry+https://github.com/rust-lang/crates.io-index"
1791checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"1609checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
1792dependencies = [1610dependencies = [
1793 "generic-array 0.14.7",1611 "generic-array 0.14.7",
1794 "rand_core 0.6.4",1612 "rand_core 0.6.4",
1795 "subtle 2.4.1",1613 "subtle 2.5.0",
1796 "zeroize",1614 "zeroize",
1797]1615]
17981616
1824checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"1642checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
1825dependencies = [1643dependencies = [
1826 "generic-array 0.14.7",1644 "generic-array 0.14.7",
1827 "subtle 2.4.1",1645 "subtle 2.5.0",
1828]1646]
18291647
1830[[package]]1648[[package]]
1831name = "crypto-mac"
1832version = "0.11.1"
1833source = "registry+https://github.com/rust-lang/crates.io-index"
1834checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
1835dependencies = [
1836 "generic-array 0.14.7",
1837 "subtle 2.4.1",
1838]
1839
1840[[package]]
1841name = "ctr"1649name = "ctr"
1842version = "0.8.0"
1843source = "registry+https://github.com/rust-lang/crates.io-index"
1844checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
1845dependencies = [
1846 "cipher 0.3.0",
1847]
1848
1849[[package]]
1850name = "ctr"
1851version = "0.9.2"1650version = "0.9.2"
1852source = "registry+https://github.com/rust-lang/crates.io-index"1651source = "registry+https://github.com/rust-lang/crates.io-index"
1853checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"1652checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
18571656
1858[[package]]1657[[package]]
1859name = "cumulus-client-cli"1658name = "cumulus-client-cli"
1860version = "0.4.0"1659version = "0.10.0"
1861source = "registry+https://github.com/rust-lang/crates.io-index"1660source = "registry+https://github.com/rust-lang/crates.io-index"
1862checksum = "858e5a1c2d26c304d75cc7158ed2579f0ff90b68f2d07a2395d073249d485424"1661checksum = "d2b5137986e7a4374bf410e4e11ce02c9807c5d3200d590960056220963ecdbf"
1863dependencies = [1662dependencies = [
1864 "clap",1663 "clap",
1865 "parity-scale-codec",1664 "parity-scale-codec",
1866 "sc-chain-spec",1665 "sc-chain-spec",
1867 "sc-cli",1666 "sc-cli",
1868 "sc-client-api",1667 "sc-client-api",
1869 "sc-service",1668 "sc-service",
1669 "sp-blockchain",
1870 "sp-core",1670 "sp-core",
1871 "sp-runtime",1671 "sp-runtime",
1872 "url",1672 "url",
1873]1673]
18741674
1875[[package]]1675[[package]]
1876name = "cumulus-client-collator"1676name = "cumulus-client-collator"
1877version = "0.4.0"1677version = "0.10.0"
1878source = "registry+https://github.com/rust-lang/crates.io-index"1678source = "registry+https://github.com/rust-lang/crates.io-index"
1879checksum = "be58c6ef9780a83267e0b9db50a01158d58ad37ba45ed8162a9ea1b2d61d119c"1679checksum = "9f7dde39268c86d2975bdd608d114dd52cd8803618196bc7606e684b9090d24d"
1880dependencies = [1680dependencies = [
1881 "cumulus-client-consensus-common",1681 "cumulus-client-consensus-common",
1882 "cumulus-client-network",1682 "cumulus-client-network",
1883 "cumulus-primitives-core",1683 "cumulus-primitives-core",
1884 "futures",1684 "futures",
1885 "parity-scale-codec",1685 "parity-scale-codec",
1886 "parking_lot 0.12.1",1686 "parking_lot 0.12.2",
1887 "polkadot-node-primitives",1687 "polkadot-node-primitives",
1888 "polkadot-node-subsystem",1688 "polkadot-node-subsystem",
1889 "polkadot-overseer",1689 "polkadot-overseer",
18981698
1899[[package]]1699[[package]]
1900name = "cumulus-client-consensus-aura"1700name = "cumulus-client-consensus-aura"
1901version = "0.4.0"1701version = "0.10.0"
1902source = "registry+https://github.com/rust-lang/crates.io-index"1702source = "registry+https://github.com/rust-lang/crates.io-index"
1903checksum = "4b73f52d21017ff0f2dc6542f2873e1dc3e17561656d6af0810fb813fb553694"1703checksum = "8fbbba68555835c2e2d7f1c17060d3cd6fafafdb16597a2e680e7376f71dec51"
1904dependencies = [1704dependencies = [
1905 "async-trait",1705 "async-trait",
1906 "cumulus-client-collator",1706 "cumulus-client-collator",
1907 "cumulus-client-consensus-common",1707 "cumulus-client-consensus-common",
1908 "cumulus-client-consensus-proposer",1708 "cumulus-client-consensus-proposer",
1709 "cumulus-client-parachain-inherent",
1909 "cumulus-primitives-aura",1710 "cumulus-primitives-aura",
1910 "cumulus-primitives-core",1711 "cumulus-primitives-core",
1911 "cumulus-primitives-parachain-inherent",
1912 "cumulus-relay-chain-interface",1712 "cumulus-relay-chain-interface",
1913 "futures",1713 "futures",
1914 "parity-scale-codec",1714 "parity-scale-codec",
19411741
1942[[package]]1742[[package]]
1943name = "cumulus-client-consensus-common"1743name = "cumulus-client-consensus-common"
1944version = "0.4.0"1744version = "0.10.0"
1945source = "registry+https://github.com/rust-lang/crates.io-index"1745source = "registry+https://github.com/rust-lang/crates.io-index"
1946checksum = "6ec580468eb700a2776cac54871704b3c3894bc0646c3b8375756bfffd24928f"1746checksum = "8b6ff3972c798e87b918e3065d7b52aabb3fc871136b7dde7c708d20567b509f"
1947dependencies = [1747dependencies = [
1948 "async-trait",1748 "async-trait",
1949 "cumulus-client-pov-recovery",1749 "cumulus-client-pov-recovery",
19711771
1972[[package]]1772[[package]]
1973name = "cumulus-client-consensus-proposer"1773name = "cumulus-client-consensus-proposer"
1974version = "0.4.0"1774version = "0.10.0"
1975source = "registry+https://github.com/rust-lang/crates.io-index"1775source = "registry+https://github.com/rust-lang/crates.io-index"
1976checksum = "23a859c95a853e37c642b613be517d3d9c410a67204a5bd92eb35c5daaffa44d"1776checksum = "cf2ff43b5735f8f1a306aa8c44d9efe5bb50c3a3b29afa18728e7a5321a6ba70"
1977dependencies = [1777dependencies = [
1978 "anyhow",1778 "anyhow",
1979 "async-trait",1779 "async-trait",
19871787
1988[[package]]1788[[package]]
1989name = "cumulus-client-network"1789name = "cumulus-client-network"
1990version = "0.4.0"1790version = "0.10.0"
1991source = "registry+https://github.com/rust-lang/crates.io-index"1791source = "registry+https://github.com/rust-lang/crates.io-index"
1992checksum = "fac979caafb16a47493dfce7509decadad81f982c0110473ab69389af663678d"1792checksum = "f10d8141b3de22f002b94fafd9a372f351ee55ad41e1c40ad6534024f176f5bb"
1993dependencies = [1793dependencies = [
1994 "async-trait",1794 "async-trait",
1995 "cumulus-relay-chain-interface",1795 "cumulus-relay-chain-interface",
1996 "futures",1796 "futures",
1997 "futures-timer",1797 "futures-timer",
1998 "parity-scale-codec",1798 "parity-scale-codec",
1999 "parking_lot 0.12.1",1799 "parking_lot 0.12.2",
2000 "polkadot-node-primitives",1800 "polkadot-node-primitives",
2001 "polkadot-parachain-primitives",1801 "polkadot-parachain-primitives",
2002 "polkadot-primitives",1802 "polkadot-primitives",
2010]1810]
20111811
2012[[package]]1812[[package]]
2013name = "cumulus-client-pov-recovery"1813name = "cumulus-client-parachain-inherent"
2014version = "0.4.0"1814version = "0.4.0"
2015source = "registry+https://github.com/rust-lang/crates.io-index"1815source = "registry+https://github.com/rust-lang/crates.io-index"
2016checksum = "e4031cda3e64955d57166068a27d544f46f4a9e4c14268a09d8b67eeac7fc51d"1816checksum = "6ebeda41b913144e0dbaf57a9537fed6f37ee14c5f31f1bd23808f87e8515ec7"
2017dependencies = [1817dependencies = [
2018 "async-trait",1818 "async-trait",
2019 "cumulus-primitives-core",1819 "cumulus-primitives-core",
1820 "cumulus-primitives-parachain-inherent",
2020 "cumulus-relay-chain-interface",1821 "cumulus-relay-chain-interface",
1822 "cumulus-test-relay-sproof-builder",
1823 "parity-scale-codec",
1824 "sc-client-api",
1825 "scale-info",
1826 "sp-api",
1827 "sp-crypto-hashing",
1828 "sp-inherents",
1829 "sp-runtime",
1830 "sp-state-machine",
1831 "sp-std",
1832 "sp-storage",
1833 "sp-trie",
1834 "tracing",
1835]
1836
1837[[package]]
1838name = "cumulus-client-pov-recovery"
1839version = "0.10.0"
1840source = "registry+https://github.com/rust-lang/crates.io-index"
1841checksum = "1cf51e1e7cfe82e68a93a4f3221181f8258664f0c4113e4d7c846e449b3596f3"
1842dependencies = [
1843 "async-trait",
1844 "cumulus-primitives-core",
1845 "cumulus-relay-chain-interface",
2021 "futures",1846 "futures",
2022 "futures-timer",1847 "futures-timer",
2023 "parity-scale-codec",1848 "parity-scale-codec",
2024 "polkadot-node-primitives",1849 "polkadot-node-primitives",
2025 "polkadot-node-subsystem",1850 "polkadot-node-subsystem",
2026 "polkadot-overseer",1851 "polkadot-overseer",
2027 "polkadot-primitives",1852 "polkadot-primitives",
2028 "rand 0.8.5",1853 "rand",
2029 "sc-client-api",1854 "sc-client-api",
2030 "sc-consensus",1855 "sc-consensus",
2031 "sp-consensus",1856 "sp-consensus",
20361861
2037[[package]]1862[[package]]
2038name = "cumulus-client-service"1863name = "cumulus-client-service"
2039version = "0.4.0"1864version = "0.10.0"
2040source = "registry+https://github.com/rust-lang/crates.io-index"1865source = "registry+https://github.com/rust-lang/crates.io-index"
2041checksum = "a72ee1a2276f11243b905676b60b77ca981c567cbed3795455b464502c3d4cb8"1866checksum = "ebb334fbaedca019671b900bba71fb7cf70244d9436a832b1c5d67491569359d"
2042dependencies = [1867dependencies = [
2043 "cumulus-client-cli",1868 "cumulus-client-cli",
2044 "cumulus-client-collator",1869 "cumulus-client-collator",
2045 "cumulus-client-consensus-common",1870 "cumulus-client-consensus-common",
2046 "cumulus-client-network",1871 "cumulus-client-network",
2047 "cumulus-client-pov-recovery",1872 "cumulus-client-pov-recovery",
2048 "cumulus-primitives-core",1873 "cumulus-primitives-core",
1874 "cumulus-primitives-proof-size-hostfunction",
2049 "cumulus-relay-chain-inprocess-interface",1875 "cumulus-relay-chain-inprocess-interface",
2050 "cumulus-relay-chain-interface",1876 "cumulus-relay-chain-interface",
2051 "cumulus-relay-chain-minimal-node",1877 "cumulus-relay-chain-minimal-node",
20721898
2073[[package]]1899[[package]]
2074name = "cumulus-pallet-aura-ext"1900name = "cumulus-pallet-aura-ext"
2075version = "0.4.0"1901version = "0.10.0"
2076source = "registry+https://github.com/rust-lang/crates.io-index"1902source = "registry+https://github.com/rust-lang/crates.io-index"
2077checksum = "071cdddd31e2b0d47a74249675de828857f61eb5f6afa36cfcf63ea6ee2b60f2"1903checksum = "47ec277f09a2c2b693bca6283eb6bc10aede2eaee43a7c395911235d8b632dab"
2078dependencies = [1904dependencies = [
2079 "cumulus-pallet-parachain-system",1905 "cumulus-pallet-parachain-system",
2080 "frame-support",1906 "frame-support",
20911917
2092[[package]]1918[[package]]
2093name = "cumulus-pallet-dmp-queue"1919name = "cumulus-pallet-dmp-queue"
2094version = "0.4.0"1920version = "0.10.0"
2095source = "registry+https://github.com/rust-lang/crates.io-index"1921source = "registry+https://github.com/rust-lang/crates.io-index"
2096checksum = "5d1cb9d43cdfeedea19b4f6b8386e5b6264a97938b29f5c711a84e9dc7105ff7"1922checksum = "28e34c35fdd757c548cabaf8b65cabe5ae1c0fab7e143e85a99ab69ec58ad35f"
2097dependencies = [1923dependencies = [
2098 "cumulus-primitives-core",1924 "cumulus-primitives-core",
2099 "frame-support",1925 "frame-support",
21091935
2110[[package]]1936[[package]]
2111name = "cumulus-pallet-parachain-system"1937name = "cumulus-pallet-parachain-system"
2112version = "0.4.1"1938version = "0.10.0"
2113source = "registry+https://github.com/rust-lang/crates.io-index"1939source = "registry+https://github.com/rust-lang/crates.io-index"
2114checksum = "d20d2280051998fcf113f04d25d4b39f27b449570b6350fdfb7e92541cb0aae7"1940checksum = "a19c40a5d04f60562fb38195766104deeb8cec71c11ec77796ee9373cccdb325"
2115dependencies = [1941dependencies = [
2116 "bytes",1942 "bytes",
2117 "cumulus-pallet-parachain-system-proc-macro",1943 "cumulus-pallet-parachain-system-proc-macro",
2118 "cumulus-primitives-core",1944 "cumulus-primitives-core",
2119 "cumulus-primitives-parachain-inherent",1945 "cumulus-primitives-parachain-inherent",
1946 "cumulus-primitives-proof-size-hostfunction",
2120 "environmental",1947 "environmental",
1948 "frame-benchmarking",
2121 "frame-support",1949 "frame-support",
2122 "frame-system",1950 "frame-system",
2123 "impl-trait-for-tuples",1951 "impl-trait-for-tuples",
2124 "log",1952 "log",
1953 "pallet-message-queue",
2125 "parity-scale-codec",1954 "parity-scale-codec",
2126 "polkadot-parachain-primitives",1955 "polkadot-parachain-primitives",
1956 "polkadot-runtime-common",
2127 "polkadot-runtime-parachains",1957 "polkadot-runtime-parachains",
2128 "scale-info",1958 "scale-info",
2129 "sp-core",1959 "sp-core",
21411971
2142[[package]]1972[[package]]
2143name = "cumulus-pallet-parachain-system-proc-macro"1973name = "cumulus-pallet-parachain-system-proc-macro"
2144version = "0.4.0"1974version = "0.6.0"
2145source = "registry+https://github.com/rust-lang/crates.io-index"1975source = "registry+https://github.com/rust-lang/crates.io-index"
2146checksum = "84baea20d10325b2501b6fa06d4a7902a43d6a6c62c71b5309e75c3ad8ae1441"1976checksum = "befbaf3a1ce23ac8476481484fef5f4d500cbd15b4dad6380ce1d28134b0c1f7"
2147dependencies = [1977dependencies = [
2148 "proc-macro-crate 1.3.1",1978 "proc-macro-crate 3.1.0",
2149 "proc-macro2",1979 "proc-macro2",
2150 "quote",1980 "quote",
2151 "syn 2.0.39",1981 "syn 2.0.65",
2152]1982]
21531983
2154[[package]]1984[[package]]
2155name = "cumulus-pallet-xcm"1985name = "cumulus-pallet-xcm"
2156version = "0.4.0"1986version = "0.10.0"
2157source = "registry+https://github.com/rust-lang/crates.io-index"1987source = "registry+https://github.com/rust-lang/crates.io-index"
2158checksum = "4ff03e14a0f5847bdee67a673ee945d3acd5c1d7238d46993208dcbfb774e27f"1988checksum = "7610ae16cac552adc823ba68deb26e5d3a9de189ef79ae26c79e43ddcfeabef1"
2159dependencies = [1989dependencies = [
2160 "cumulus-primitives-core",1990 "cumulus-primitives-core",
2161 "frame-support",1991 "frame-support",
21702000
2171[[package]]2001[[package]]
2172name = "cumulus-pallet-xcmp-queue"2002name = "cumulus-pallet-xcmp-queue"
2173version = "0.4.0"2003version = "0.10.0"
2174source = "registry+https://github.com/rust-lang/crates.io-index"2004source = "registry+https://github.com/rust-lang/crates.io-index"
2175checksum = "b6af9816dd6564149729ba133c2c984c88fb15c4a2cb66f57be06b9147744e51"2005checksum = "6614dcdbe6c24fcc8677bf158a8c627a3467d262acdc8a0e7d8a3d3d767a757c"
2176dependencies = [2006dependencies = [
2007 "bounded-collections",
2177 "bp-xcm-bridge-hub-router",2008 "bp-xcm-bridge-hub-router",
2178 "cumulus-primitives-core",2009 "cumulus-primitives-core",
2179 "frame-benchmarking",2010 "frame-benchmarking",
2180 "frame-support",2011 "frame-support",
2181 "frame-system",2012 "frame-system",
2182 "log",2013 "log",
2014 "pallet-message-queue",
2183 "parity-scale-codec",2015 "parity-scale-codec",
2184 "polkadot-runtime-common",2016 "polkadot-runtime-common",
2185 "polkadot-runtime-parachains",2017 "polkadot-runtime-parachains",
2186 "rand_chacha 0.3.1",
2187 "scale-info",2018 "scale-info",
2188 "sp-core",2019 "sp-core",
2189 "sp-io",2020 "sp-io",
21952026
2196[[package]]2027[[package]]
2197name = "cumulus-primitives-aura"2028name = "cumulus-primitives-aura"
2198version = "0.4.0"2029version = "0.10.0"
2199source = "registry+https://github.com/rust-lang/crates.io-index"2030source = "registry+https://github.com/rust-lang/crates.io-index"
2200checksum = "51c2ecd2393555e89245676fd49003fdc68dc7aa108f83f8c5ff5f8936ce5543"2031checksum = "1b70d13f3fca1dfaeb868f4fff79c58fef8fa4f8e381a9002d93c50c23683abf"
2201dependencies = [2032dependencies = [
2202 "parity-scale-codec",2033 "parity-scale-codec",
2203 "polkadot-core-primitives",2034 "polkadot-core-primitives",
22102041
2211[[package]]2042[[package]]
2212name = "cumulus-primitives-core"2043name = "cumulus-primitives-core"
2213version = "0.4.0"2044version = "0.10.0"
2214source = "registry+https://github.com/rust-lang/crates.io-index"2045source = "registry+https://github.com/rust-lang/crates.io-index"
2215checksum = "d40f62add2352287be4cb58b0017a91f61d953e2c6d2777c20d93185558196e1"2046checksum = "617d02361f5c7df87b6be98b4974241b6836fbaa7d9e786db80eb38bc8636751"
2216dependencies = [2047dependencies = [
2217 "parity-scale-codec",2048 "parity-scale-codec",
2218 "polkadot-core-primitives",2049 "polkadot-core-primitives",
22282059
2229[[package]]2060[[package]]
2230name = "cumulus-primitives-parachain-inherent"2061name = "cumulus-primitives-parachain-inherent"
2231version = "0.4.0"2062version = "0.10.0"
2232source = "registry+https://github.com/rust-lang/crates.io-index"2063source = "registry+https://github.com/rust-lang/crates.io-index"
2233checksum = "9d0b1e0e6dcf393dbf05b31122a8c4739acf407a96ec8fd707886f36ee95c355"2064checksum = "87d64a55b7b9c3a945e543712630708f36407ab49ad8a2fa9f3d1404093a3e8e"
2234dependencies = [2065dependencies = [
2235 "async-trait",2066 "async-trait",
2236 "cumulus-primitives-core",2067 "cumulus-primitives-core",
2237 "cumulus-relay-chain-interface",
2238 "cumulus-test-relay-sproof-builder",
2239 "parity-scale-codec",2068 "parity-scale-codec",
2240 "sc-client-api",
2241 "scale-info",2069 "scale-info",
2242 "sp-api",
2243 "sp-core",2070 "sp-core",
2244 "sp-inherents",2071 "sp-inherents",
2245 "sp-runtime",
2246 "sp-state-machine",
2247 "sp-std",2072 "sp-std",
2248 "sp-storage",
2249 "sp-trie",2073 "sp-trie",
2250 "tracing",
2251]2074]
22522075
2253[[package]]2076[[package]]
2077name = "cumulus-primitives-proof-size-hostfunction"
2078version = "0.5.0"
2079source = "registry+https://github.com/rust-lang/crates.io-index"
2080checksum = "764e27968dce7d5c455dbaf9ba81c037fc5690afc085aa4aa2a4cdfe53716b74"
2081dependencies = [
2082 "sp-externalities",
2083 "sp-runtime-interface",
2084 "sp-trie",
2085]
2086
2087[[package]]
2254name = "cumulus-primitives-timestamp"2088name = "cumulus-primitives-timestamp"
2255version = "0.4.0"2089version = "0.10.0"
2256source = "registry+https://github.com/rust-lang/crates.io-index"2090source = "registry+https://github.com/rust-lang/crates.io-index"
2257checksum = "771ef4a34f7bcd4e8782f73d8dbd0df031b1c1c82e54b06af69f88df2cddc316"2091checksum = "abf270c68a2cbf68b31cb4e8c4b5fc43665627ec6960cde04c393120e053ccef"
2258dependencies = [2092dependencies = [
2259 "cumulus-primitives-core",2093 "cumulus-primitives-core",
2260 "futures",2094 "futures",
22662100
2267[[package]]2101[[package]]
2268name = "cumulus-primitives-utility"2102name = "cumulus-primitives-utility"
2269version = "0.4.0"2103version = "0.10.0"
2270source = "registry+https://github.com/rust-lang/crates.io-index"2104source = "registry+https://github.com/rust-lang/crates.io-index"
2271checksum = "6b4ef704f5a346711d0448f82e57dc5784b186f4bf5e3efbbca0df814b203539"2105checksum = "beeca40e85d6da3751343a3fc8dd5b335c9a06ba9897a5b36f726d139b7646de"
2272dependencies = [2106dependencies = [
2273 "cumulus-primitives-core",2107 "cumulus-primitives-core",
2274 "frame-support",2108 "frame-support",
2275 "log",2109 "log",
2276 "pallet-xcm-benchmarks",2110 "pallet-asset-conversion",
2277 "parity-scale-codec",2111 "parity-scale-codec",
2278 "polkadot-runtime-common",2112 "polkadot-runtime-common",
2279 "polkadot-runtime-parachains",2113 "polkadot-runtime-parachains",
22872121
2288[[package]]2122[[package]]
2289name = "cumulus-relay-chain-inprocess-interface"2123name = "cumulus-relay-chain-inprocess-interface"
2290version = "0.4.0"2124version = "0.10.0"
2291source = "registry+https://github.com/rust-lang/crates.io-index"2125source = "registry+https://github.com/rust-lang/crates.io-index"
2292checksum = "9518b7440b3f887433058b000a564e06b6799fd6d2776f4d035b2802c67742eb"2126checksum = "2ec58113249ac91ceb4da1c846f6474cd4b6616100d0b29a86845b177caad52f"
2293dependencies = [2127dependencies = [
2294 "async-trait",2128 "async-trait",
2295 "cumulus-primitives-core",2129 "cumulus-primitives-core",
23122146
2313[[package]]2147[[package]]
2314name = "cumulus-relay-chain-interface"2148name = "cumulus-relay-chain-interface"
2315version = "0.4.0"2149version = "0.10.0"
2316source = "registry+https://github.com/rust-lang/crates.io-index"2150source = "registry+https://github.com/rust-lang/crates.io-index"
2317checksum = "af081ef8885042e7ae96e9d1cf32ec6f0616fe4cb78f0325ed7c5accded687fb"2151checksum = "cbb531263c11cfd73f17090106fff2385ca7b02b39102c367f4c13fb1251e9dd"
2318dependencies = [2152dependencies = [
2319 "async-trait",2153 "async-trait",
2320 "cumulus-primitives-core",2154 "cumulus-primitives-core",
23312165
2332[[package]]2166[[package]]
2333name = "cumulus-relay-chain-minimal-node"2167name = "cumulus-relay-chain-minimal-node"
2334version = "0.4.0"2168version = "0.10.0"
2335source = "registry+https://github.com/rust-lang/crates.io-index"2169source = "registry+https://github.com/rust-lang/crates.io-index"
2336checksum = "69a1635ecc0bc20e7907a559983c818e4130ecfd899635e831f3f9b93966082c"2170checksum = "e1a416b2e6a5c99d78049b91425dbdb844f4351fd9fb61da47b70c2f90cf2ed4"
2337dependencies = [2171dependencies = [
2338 "array-bytes 6.2.0",2172 "array-bytes 6.2.3",
2339 "async-trait",2173 "async-trait",
2340 "cumulus-primitives-core",2174 "cumulus-primitives-core",
2341 "cumulus-relay-chain-interface",2175 "cumulus-relay-chain-interface",
2342 "cumulus-relay-chain-rpc-interface",2176 "cumulus-relay-chain-rpc-interface",
2343 "futures",2177 "futures",
2178 "parking_lot 0.12.2",
2344 "polkadot-availability-recovery",2179 "polkadot-availability-recovery",
2345 "polkadot-collator-protocol",2180 "polkadot-collator-protocol",
2346 "polkadot-core-primitives",2181 "polkadot-core-primitives",
2347 "polkadot-network-bridge",2182 "polkadot-network-bridge",
2348 "polkadot-node-collation-generation",2183 "polkadot-node-collation-generation",
2184 "polkadot-node-core-chain-api",
2185 "polkadot-node-core-prospective-parachains",
2349 "polkadot-node-core-runtime-api",2186 "polkadot-node-core-runtime-api",
2350 "polkadot-node-network-protocol",2187 "polkadot-node-network-protocol",
2351 "polkadot-node-subsystem-util",2188 "polkadot-node-subsystem-util",
2352 "polkadot-overseer",2189 "polkadot-overseer",
2353 "polkadot-primitives",2190 "polkadot-primitives",
2191 "polkadot-service",
2354 "sc-authority-discovery",2192 "sc-authority-discovery",
2193 "sc-client-api",
2355 "sc-network",2194 "sc-network",
2356 "sc-network-common",2195 "sc-network-common",
2357 "sc-service",2196 "sc-service",
2358 "sc-tracing",2197 "sc-tracing",
2359 "sc-utils",2198 "sc-utils",
2360 "sp-api",2199 "sp-api",
2200 "sp-blockchain",
2361 "sp-consensus",2201 "sp-consensus",
2362 "sp-consensus-babe",2202 "sp-consensus-babe",
2363 "sp-runtime",2203 "sp-runtime",
2364 "substrate-prometheus-endpoint",2204 "substrate-prometheus-endpoint",
2205 "tokio",
2365 "tracing",2206 "tracing",
2366]2207]
23672208
2368[[package]]2209[[package]]
2369name = "cumulus-relay-chain-rpc-interface"2210name = "cumulus-relay-chain-rpc-interface"
2370version = "0.4.0"2211version = "0.10.0"
2371source = "registry+https://github.com/rust-lang/crates.io-index"2212source = "registry+https://github.com/rust-lang/crates.io-index"
2372checksum = "ce507996b8e97e07e3687c1c55159b38f56b2550b476c727114ab2e7ad7b2bf1"2213checksum = "e011f8da350318316e80356dca70bee537d8f8fb29bb99d1765348b0ab6f6d88"
2373dependencies = [2214dependencies = [
2374 "async-trait",2215 "async-trait",
2375 "cumulus-primitives-core",2216 "cumulus-primitives-core",
2381 "parity-scale-codec",2222 "parity-scale-codec",
2382 "pin-project",2223 "pin-project",
2383 "polkadot-overseer",2224 "polkadot-overseer",
2384 "rand 0.8.5",2225 "rand",
2385 "sc-client-api",2226 "sc-client-api",
2386 "sc-rpc-api",2227 "sc-rpc-api",
2387 "sc-service",2228 "sc-service",
2397 "sp-runtime",2238 "sp-runtime",
2398 "sp-state-machine",2239 "sp-state-machine",
2399 "sp-storage",2240 "sp-storage",
2241 "sp-version",
2400 "thiserror",2242 "thiserror",
2401 "tokio",2243 "tokio",
2402 "tokio-util",2244 "tokio-util",
24062248
2407[[package]]2249[[package]]
2408name = "cumulus-test-relay-sproof-builder"2250name = "cumulus-test-relay-sproof-builder"
2409version = "0.4.0"2251version = "0.10.0"
2410source = "registry+https://github.com/rust-lang/crates.io-index"2252source = "registry+https://github.com/rust-lang/crates.io-index"
2411checksum = "59b921a9cb6758faa1c739f135fd87aa1e10a4e86a1c1db3119b396a62287cf2"2253checksum = "d1e730a7524f50acb03c24476323c4dad35690baf85175ad0f91a2dffed85b39"
2412dependencies = [2254dependencies = [
2413 "cumulus-primitives-core",2255 "cumulus-primitives-core",
2414 "parity-scale-codec",2256 "parity-scale-codec",
24212263
2422[[package]]2264[[package]]
2423name = "curve25519-dalek"2265name = "curve25519-dalek"
2424version = "2.1.3"
2425source = "registry+https://github.com/rust-lang/crates.io-index"
2426checksum = "4a9b85542f99a2dfa2a1b8e192662741c9859a846b296bef1c92ef9b58b5a216"
2427dependencies = [
2428 "byteorder",
2429 "digest 0.8.1",
2430 "rand_core 0.5.1",
2431 "subtle 2.4.1",
2432 "zeroize",
2433]
2434
2435[[package]]
2436name = "curve25519-dalek"
2437version = "3.2.0"2266version = "3.2.0"
2438source = "registry+https://github.com/rust-lang/crates.io-index"2267source = "registry+https://github.com/rust-lang/crates.io-index"
2439checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"2268checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"
2440dependencies = [2269dependencies = [
2441 "byteorder",2270 "byteorder",
2442 "digest 0.9.0",2271 "digest 0.9.0",
2443 "rand_core 0.5.1",2272 "rand_core 0.5.1",
2444 "subtle 2.4.1",2273 "subtle 2.5.0",
2445 "zeroize",2274 "zeroize",
2446]2275]
24472276
2448[[package]]2277[[package]]
2449name = "curve25519-dalek"2278name = "curve25519-dalek"
2450version = "4.1.1"2279version = "4.1.2"
2451source = "registry+https://github.com/rust-lang/crates.io-index"2280source = "registry+https://github.com/rust-lang/crates.io-index"
2452checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"2281checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348"
2453dependencies = [2282dependencies = [
2454 "cfg-if",2283 "cfg-if",
2455 "cpufeatures",2284 "cpufeatures",
2458 "fiat-crypto",2287 "fiat-crypto",
2459 "platforms",2288 "platforms",
2460 "rustc_version",2289 "rustc_version",
2461 "subtle 2.4.1",2290 "subtle 2.5.0",
2462 "zeroize",2291 "zeroize",
2463]2292]
24642293
2470dependencies = [2299dependencies = [
2471 "proc-macro2",2300 "proc-macro2",
2472 "quote",2301 "quote",
2473 "syn 2.0.39",2302 "syn 2.0.65",
2474]2303]
24752304
2476[[package]]2305[[package]]
24882317
2489[[package]]2318[[package]]
2490name = "cxx"2319name = "cxx"
2491version = "1.0.110"2320version = "1.0.122"
2492source = "registry+https://github.com/rust-lang/crates.io-index"2321source = "registry+https://github.com/rust-lang/crates.io-index"
2493checksum = "7129e341034ecb940c9072817cd9007974ea696844fc4dd582dc1653a7fbe2e8"2322checksum = "bb497fad022245b29c2a0351df572e2d67c1046bcef2260ebc022aec81efea82"
2494dependencies = [2323dependencies = [
2495 "cc",2324 "cc",
2496 "cxxbridge-flags",2325 "cxxbridge-flags",
25002329
2501[[package]]2330[[package]]
2502name = "cxx-build"2331name = "cxx-build"
2503version = "1.0.110"2332version = "1.0.122"
2504source = "registry+https://github.com/rust-lang/crates.io-index"2333source = "registry+https://github.com/rust-lang/crates.io-index"
2505checksum = "a2a24f3f5f8eed71936f21e570436f024f5c2e25628f7496aa7ccd03b90109d5"2334checksum = "9327c7f9fbd6329a200a5d4aa6f674c60ab256525ff0084b52a889d4e4c60cee"
2506dependencies = [2335dependencies = [
2507 "cc",2336 "cc",
2508 "codespan-reporting",2337 "codespan-reporting",
2509 "once_cell",2338 "once_cell",
2510 "proc-macro2",2339 "proc-macro2",
2511 "quote",2340 "quote",
2512 "scratch",2341 "scratch",
2513 "syn 2.0.39",2342 "syn 2.0.65",
2514]2343]
25152344
2516[[package]]2345[[package]]
2517name = "cxxbridge-flags"2346name = "cxxbridge-flags"
2518version = "1.0.110"2347version = "1.0.122"
2519source = "registry+https://github.com/rust-lang/crates.io-index"2348source = "registry+https://github.com/rust-lang/crates.io-index"
2520checksum = "06fdd177fc61050d63f67f5bd6351fac6ab5526694ea8e359cd9cd3b75857f44"2349checksum = "688c799a4a846f1c0acb9f36bb9c6272d9b3d9457f3633c7753c6057270df13c"
25212350
2522[[package]]2351[[package]]
2523name = "cxxbridge-macro"2352name = "cxxbridge-macro"
2524version = "1.0.110"2353version = "1.0.122"
2525source = "registry+https://github.com/rust-lang/crates.io-index"2354source = "registry+https://github.com/rust-lang/crates.io-index"
2526checksum = "587663dd5fb3d10932c8aecfe7c844db1bcf0aee93eeab08fac13dc1212c2e7f"2355checksum = "928bc249a7e3cd554fd2e8e08a426e9670c50bbfc9a621653cfa9accc9641783"
2527dependencies = [2356dependencies = [
2528 "proc-macro2",2357 "proc-macro2",
2529 "quote",2358 "quote",
2530 "syn 2.0.39",2359 "syn 2.0.65",
2531]2360]
25322361
2533[[package]]2362[[package]]
2534name = "darling"2363name = "dashmap"
2535version = "0.14.4"2364version = "5.5.3"
2536source = "registry+https://github.com/rust-lang/crates.io-index"2365source = "registry+https://github.com/rust-lang/crates.io-index"
2537checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"2366checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
2538dependencies = [2367dependencies = [
2539 "darling_core",2368 "cfg-if",
2540 "darling_macro",2369 "hashbrown 0.14.5",
2370 "lock_api",
2371 "once_cell",
2372 "parking_lot_core 0.9.10",
2541]2373]
25422374
2543[[package]]2375[[package]]
2544name = "darling_core"
2545version = "0.14.4"
2546source = "registry+https://github.com/rust-lang/crates.io-index"
2547checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
2548dependencies = [
2549 "fnv",
2550 "ident_case",
2551 "proc-macro2",
2552 "quote",
2553 "strsim",
2554 "syn 1.0.109",
2555]
2556
2557[[package]]
2558name = "darling_macro"
2559version = "0.14.4"
2560source = "registry+https://github.com/rust-lang/crates.io-index"
2561checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
2562dependencies = [
2563 "darling_core",
2564 "quote",
2565 "syn 1.0.109",
2566]
2567
2568[[package]]
2569name = "data-encoding"2376name = "data-encoding"
2570version = "2.5.0"2377version = "2.6.0"
2571source = "registry+https://github.com/rust-lang/crates.io-index"2378source = "registry+https://github.com/rust-lang/crates.io-index"
2572checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"2379checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
25732380
2574[[package]]2381[[package]]
2575name = "data-encoding-macro"2382name = "data-encoding-macro"
2576version = "0.1.14"2383version = "0.1.15"
2577source = "registry+https://github.com/rust-lang/crates.io-index"2384source = "registry+https://github.com/rust-lang/crates.io-index"
2578checksum = "20c01c06f5f429efdf2bae21eb67c28b3df3cf85b7dd2d8ef09c0838dac5d33e"2385checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639"
2579dependencies = [2386dependencies = [
2580 "data-encoding",2387 "data-encoding",
2581 "data-encoding-macro-internal",2388 "data-encoding-macro-internal",
2582]2389]
25832390
2584[[package]]2391[[package]]
2585name = "data-encoding-macro-internal"2392name = "data-encoding-macro-internal"
2586version = "0.1.12"2393version = "0.1.13"
2587source = "registry+https://github.com/rust-lang/crates.io-index"2394source = "registry+https://github.com/rust-lang/crates.io-index"
2588checksum = "0047d07f2c89b17dd631c80450d69841a6b5d7fb17278cbc43d7e4cfcf2576f3"2395checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f"
2589dependencies = [2396dependencies = [
2590 "data-encoding",2397 "data-encoding",
2591 "syn 1.0.109",2398 "syn 1.0.109",
2592]2399]
25932400
2594[[package]]2401[[package]]
2595name = "der"2402name = "der"
2596version = "0.6.1"2403version = "0.7.9"
2597source = "registry+https://github.com/rust-lang/crates.io-index"2404source = "registry+https://github.com/rust-lang/crates.io-index"
2598checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"2405checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
2599dependencies = [2406dependencies = [
2600 "const-oid",2407 "const-oid",
2601 "pem-rfc7468",
2602 "zeroize",2408 "zeroize",
2603]2409]
26042410
2605[[package]]2411[[package]]
2606name = "der"
2607version = "0.7.8"
2608source = "registry+https://github.com/rust-lang/crates.io-index"
2609checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
2610dependencies = [
2611 "const-oid",
2612 "zeroize",
2613]
2614
2615[[package]]
2616name = "der-parser"2412name = "der-parser"
2617version = "7.0.0"
2618source = "registry+https://github.com/rust-lang/crates.io-index"
2619checksum = "fe398ac75057914d7d07307bf67dc7f3f574a26783b4fc7805a20ffa9f506e82"
2620dependencies = [
2621 "asn1-rs 0.3.1",
2622 "displaydoc",
2623 "nom",
2624 "num-bigint",
2625 "num-traits",
2626 "rusticata-macros",
2627]
2628
2629[[package]]
2630name = "der-parser"
2631version = "8.2.0"2413version = "8.2.0"
2632source = "registry+https://github.com/rust-lang/crates.io-index"2414source = "registry+https://github.com/rust-lang/crates.io-index"
2633checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e"2415checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e"
2634dependencies = [2416dependencies = [
2635 "asn1-rs 0.5.2",2417 "asn1-rs",
2636 "displaydoc",2418 "displaydoc",
2637 "nom",2419 "nom",
2638 "num-bigint",2420 "num-bigint",
26422424
2643[[package]]2425[[package]]
2644name = "deranged"2426name = "deranged"
2645version = "0.3.9"2427version = "0.3.11"
2646source = "registry+https://github.com/rust-lang/crates.io-index"2428source = "registry+https://github.com/rust-lang/crates.io-index"
2647checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"2429checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
2648dependencies = [2430dependencies = [
2649 "powerfmt",2431 "powerfmt",
2650]2432]
2672]2454]
26732455
2674[[package]]2456[[package]]
2675name = "derive_builder"2457name = "derive-syn-parse"
2676version = "0.11.2"2458version = "0.2.0"
2677source = "registry+https://github.com/rust-lang/crates.io-index"2459source = "registry+https://github.com/rust-lang/crates.io-index"
2678checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3"2460checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762"
2679dependencies = [2461dependencies = [
2680 "derive_builder_macro",
2681]
2682
2683[[package]]
2684name = "derive_builder_core"
2685version = "0.11.2"
2686source = "registry+https://github.com/rust-lang/crates.io-index"
2687checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4"
2688dependencies = [
2689 "darling",
2690 "proc-macro2",2462 "proc-macro2",
2691 "quote",2463 "quote",
2692 "syn 1.0.109",2464 "syn 2.0.65",
2693]2465]
26942466
2695[[package]]2467[[package]]
2696name = "derive_builder_macro"
2697version = "0.11.2"
2698source = "registry+https://github.com/rust-lang/crates.io-index"
2699checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68"
2700dependencies = [
2701 "derive_builder_core",
2702 "syn 1.0.109",
2703]
2704
2705[[package]]
2706name = "derive_more"2468name = "derive_more"
2707version = "0.99.17"2469version = "0.99.17"
2708source = "registry+https://github.com/rust-lang/crates.io-index"2470source = "registry+https://github.com/rust-lang/crates.io-index"
2748 "block-buffer 0.10.4",2510 "block-buffer 0.10.4",
2749 "const-oid",2511 "const-oid",
2750 "crypto-common",2512 "crypto-common",
2751 "subtle 2.4.1",2513 "subtle 2.5.0",
2752]2514]
27532515
2754[[package]]2516[[package]]
2801dependencies = [2563dependencies = [
2802 "proc-macro2",2564 "proc-macro2",
2803 "quote",2565 "quote",
2804 "syn 2.0.39",2566 "syn 2.0.65",
2805]2567]
28062568
2807[[package]]2569[[package]]
2808name = "docify"2570name = "docify"
2809version = "0.2.6"2571version = "0.2.8"
2810source = "registry+https://github.com/rust-lang/crates.io-index"2572source = "registry+https://github.com/rust-lang/crates.io-index"
2811checksum = "4235e9b248e2ba4b92007fe9c646f3adf0ffde16dc74713eacc92b8bc58d8d2f"2573checksum = "43a2f138ad521dc4a2ced1a4576148a6a610b4c5923933b062a263130a6802ce"
2812dependencies = [2574dependencies = [
2813 "docify_macros",2575 "docify_macros",
2814]2576]
28152577
2816[[package]]2578[[package]]
2817name = "docify_macros"2579name = "docify_macros"
2818version = "0.2.6"2580version = "0.2.8"
2819source = "registry+https://github.com/rust-lang/crates.io-index"2581source = "registry+https://github.com/rust-lang/crates.io-index"
2820checksum = "47020e12d7c7505670d1363dd53d6c23724f71a90a3ae32ff8eba40de8404626"2582checksum = "1a081e51fb188742f5a7a1164ad752121abcb22874b21e2c3b0dd040c515fdad"
2821dependencies = [2583dependencies = [
2822 "common-path",2584 "common-path",
2823 "derive-syn-parse",2585 "derive-syn-parse 0.2.0",
2824 "once_cell",2586 "once_cell",
2825 "proc-macro2",2587 "proc-macro2",
2826 "quote",2588 "quote",
2827 "regex",2589 "regex",
2828 "syn 2.0.39",2590 "syn 2.0.65",
2829 "termcolor",2591 "termcolor",
2830 "toml 0.7.8",2592 "toml 0.8.13",
2831 "walkdir",2593 "walkdir",
2832]2594]
28332595
28392601
2840[[package]]2602[[package]]
2841name = "downcast-rs"2603name = "downcast-rs"
2842version = "1.2.0"2604version = "1.2.1"
2843source = "registry+https://github.com/rust-lang/crates.io-index"2605source = "registry+https://github.com/rust-lang/crates.io-index"
2844checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"2606checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
28452607
2846[[package]]2608[[package]]
2847name = "dtoa"2609name = "dtoa"
28722634
2873[[package]]2635[[package]]
2874name = "dyn-clone"2636name = "dyn-clone"
2875version = "1.0.16"2637version = "1.0.17"
2876source = "registry+https://github.com/rust-lang/crates.io-index"2638source = "registry+https://github.com/rust-lang/crates.io-index"
2877checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"2639checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
28782640
2879[[package]]2641[[package]]
2880name = "ecdsa"2642name = "ecdsa"
2881version = "0.14.8"
2882source = "registry+https://github.com/rust-lang/crates.io-index"
2883checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c"
2884dependencies = [
2885 "der 0.6.1",
2886 "elliptic-curve 0.12.3",
2887 "rfc6979 0.3.1",
2888 "signature 1.6.4",
2889]
2890
2891[[package]]
2892name = "ecdsa"
2893version = "0.16.9"2643version = "0.16.9"
2894source = "registry+https://github.com/rust-lang/crates.io-index"2644source = "registry+https://github.com/rust-lang/crates.io-index"
2895checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"2645checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
2896dependencies = [2646dependencies = [
2897 "der 0.7.8",2647 "der",
2898 "digest 0.10.7",2648 "digest 0.10.7",
2899 "elliptic-curve 0.13.8",2649 "elliptic-curve",
2900 "rfc6979 0.4.0",2650 "rfc6979",
2651 "serdect",
2901 "signature 2.2.0",2652 "signature",
2902 "spki 0.7.2",2653 "spki",
2903]2654]
29042655
2905[[package]]2656[[package]]
2908source = "registry+https://github.com/rust-lang/crates.io-index"2659source = "registry+https://github.com/rust-lang/crates.io-index"
2909checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"2660checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
2910dependencies = [2661dependencies = [
2911 "pkcs8 0.10.2",2662 "pkcs8",
2912 "signature 2.2.0",2663 "signature",
2913]2664]
29142665
2915[[package]]2666[[package]]
2916name = "ed25519-dalek"2667name = "ed25519-dalek"
2917version = "2.1.0"2668version = "2.1.1"
2918source = "registry+https://github.com/rust-lang/crates.io-index"2669source = "registry+https://github.com/rust-lang/crates.io-index"
2919checksum = "1f628eaec48bfd21b865dc2950cfa014450c01d2fa2b69a86c2fd5844ec523c0"2670checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
2920dependencies = [2671dependencies = [
2921 "curve25519-dalek 4.1.1",2672 "curve25519-dalek 4.1.2",
2922 "ed25519",2673 "ed25519",
2923 "rand_core 0.6.4",2674 "rand_core 0.6.4",
2924 "serde",2675 "serde",
2925 "sha2 0.10.8",2676 "sha2 0.10.8",
2926 "subtle 2.4.1",2677 "subtle 2.5.0",
2927 "zeroize",2678 "zeroize",
2928]2679]
29292680
2947source = "registry+https://github.com/rust-lang/crates.io-index"2698source = "registry+https://github.com/rust-lang/crates.io-index"
2948checksum = "7d9ce6874da5d4415896cd45ffbc4d1cfc0c4f9c079427bd870742c30f2f65a9"2699checksum = "7d9ce6874da5d4415896cd45ffbc4d1cfc0c4f9c079427bd870742c30f2f65a9"
2949dependencies = [2700dependencies = [
2950 "curve25519-dalek 4.1.1",2701 "curve25519-dalek 4.1.2",
2951 "ed25519",2702 "ed25519",
2952 "hashbrown 0.14.2",2703 "hashbrown 0.14.5",
2953 "hex",2704 "hex",
2954 "rand_core 0.6.4",2705 "rand_core 0.6.4",
2955 "sha2 0.10.8",2706 "sha2 0.10.8",
29582709
2959[[package]]2710[[package]]
2960name = "either"2711name = "either"
2961version = "1.9.0"2712version = "1.12.0"
2962source = "registry+https://github.com/rust-lang/crates.io-index"2713source = "registry+https://github.com/rust-lang/crates.io-index"
2963checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"2714checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
29642715
2965[[package]]2716[[package]]
2966name = "elliptic-curve"2717name = "elliptic-curve"
2967version = "0.12.3"
2968source = "registry+https://github.com/rust-lang/crates.io-index"
2969checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3"
2970dependencies = [
2971 "base16ct 0.1.1",
2972 "crypto-bigint 0.4.9",
2973 "der 0.6.1",
2974 "digest 0.10.7",
2975 "ff 0.12.1",
2976 "generic-array 0.14.7",
2977 "group 0.12.1",
2978 "hkdf",
2979 "pem-rfc7468",
2980 "pkcs8 0.9.0",
2981 "rand_core 0.6.4",
2982 "sec1 0.3.0",
2983 "subtle 2.4.1",
2984 "zeroize",
2985]
2986
2987[[package]]
2988name = "elliptic-curve"
2989version = "0.13.8"2718version = "0.13.8"
2990source = "registry+https://github.com/rust-lang/crates.io-index"2719source = "registry+https://github.com/rust-lang/crates.io-index"
2991checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"2720checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
2992dependencies = [2721dependencies = [
2993 "base16ct 0.2.0",2722 "base16ct",
2994 "crypto-bigint 0.5.5",2723 "crypto-bigint",
2995 "digest 0.10.7",2724 "digest 0.10.7",
2996 "ff 0.13.0",2725 "ff",
2997 "generic-array 0.14.7",2726 "generic-array 0.14.7",
2998 "group 0.13.0",2727 "group",
2999 "pkcs8 0.10.2",2728 "pkcs8",
3000 "rand_core 0.6.4",2729 "rand_core 0.6.4",
3001 "sec1 0.7.3",2730 "sec1",
2731 "serdect",
3002 "subtle 2.4.1",2732 "subtle 2.5.0",
3003 "zeroize",2733 "zeroize",
3004]2734]
30052735
3015source = "registry+https://github.com/rust-lang/crates.io-index"2745source = "registry+https://github.com/rust-lang/crates.io-index"
3016checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"2746checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
3017dependencies = [2747dependencies = [
3018 "heck",2748 "heck 0.4.1",
3019 "proc-macro2",2749 "proc-macro2",
3020 "quote",2750 "quote",
3021 "syn 1.0.109",2751 "syn 1.0.109",
3022]2752]
30232753
3024[[package]]2754[[package]]
3025name = "enumflags2"2755name = "enumflags2"
3026version = "0.7.8"2756version = "0.7.9"
3027source = "registry+https://github.com/rust-lang/crates.io-index"2757source = "registry+https://github.com/rust-lang/crates.io-index"
3028checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939"2758checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d"
3029dependencies = [2759dependencies = [
3030 "enumflags2_derive",2760 "enumflags2_derive",
3031]2761]
30322762
3033[[package]]2763[[package]]
3034name = "enumflags2_derive"2764name = "enumflags2_derive"
3035version = "0.7.8"2765version = "0.7.9"
3036source = "registry+https://github.com/rust-lang/crates.io-index"2766source = "registry+https://github.com/rust-lang/crates.io-index"
3037checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246"2767checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4"
3038dependencies = [2768dependencies = [
3039 "proc-macro2",2769 "proc-macro2",
3040 "quote",2770 "quote",
3041 "syn 2.0.39",2771 "syn 2.0.65",
3042]2772]
30432773
3044[[package]]2774[[package]]
3045name = "enumn"2775name = "enumn"
3046version = "0.1.12"2776version = "0.1.13"
3047source = "registry+https://github.com/rust-lang/crates.io-index"2777source = "registry+https://github.com/rust-lang/crates.io-index"
3048checksum = "c2ad8cef1d801a4686bfd8919f0b30eac4c8e48968c437a6405ded4fb5272d2b"2778checksum = "6fd000fd6988e73bbe993ea3db9b1aa64906ab88766d654973924340c8cddb42"
3049dependencies = [2779dependencies = [
3050 "proc-macro2",2780 "proc-macro2",
3051 "quote",2781 "quote",
3052 "syn 2.0.39",2782 "syn 2.0.65",
3053]2783]
30542784
3055[[package]]2785[[package]]
3056name = "env_logger"2786name = "env_logger"
3057version = "0.10.1"2787version = "0.10.2"
3058source = "registry+https://github.com/rust-lang/crates.io-index"2788source = "registry+https://github.com/rust-lang/crates.io-index"
3059checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"2789checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
3060dependencies = [2790dependencies = [
3061 "humantime",2791 "humantime",
3062 "is-terminal",2792 "is-terminal",
30792809
3080[[package]]2810[[package]]
3081name = "errno"2811name = "errno"
3082version = "0.3.7"2812version = "0.3.9"
3083source = "registry+https://github.com/rust-lang/crates.io-index"2813source = "registry+https://github.com/rust-lang/crates.io-index"
3084checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8"2814checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
3085dependencies = [2815dependencies = [
3086 "libc",2816 "libc",
3087 "windows-sys 0.48.0",2817 "windows-sys 0.52.0",
3088]2818]
30892819
3090[[package]]2820[[package]]
31042834
3105[[package]]2835[[package]]
3106name = "ethereum"2836name = "ethereum"
3107version = "0.14.0"2837version = "0.15.0"
3108source = "registry+https://github.com/rust-lang/crates.io-index"2838source = "registry+https://github.com/rust-lang/crates.io-index"
3109checksum = "6a89fb87a9e103f71b903b80b670200b54cc67a07578f070681f1fffb7396fb7"2839checksum = "2e04d24d20b8ff2235cffbf242d5092de3aa45f77c5270ddbfadd2778ca13fea"
3110dependencies = [2840dependencies = [
3111 "bytes",2841 "bytes",
3112 "ethereum-types",2842 "ethereum-types",
3113 "hash-db 0.15.2",2843 "hash-db",
3114 "hash256-std-hasher",2844 "hash256-std-hasher",
3115 "parity-scale-codec",2845 "parity-scale-codec",
3116 "rlp",2846 "rlp",
3117 "scale-info",2847 "scale-info",
3118 "serde",2848 "serde",
3119 "sha3 0.10.8",2849 "sha3 0.10.8",
3120 "triehash",2850 "trie-root",
3121]2851]
31222852
3123[[package]]2853[[package]]
3150dependencies = [2880dependencies = [
3151 "concurrent-queue",2881 "concurrent-queue",
3152 "parking",2882 "parking",
3153 "pin-project-lite 0.2.13",2883 "pin-project-lite 0.2.14",
3154]2884]
31552885
3156[[package]]2886[[package]]
2887name = "event-listener"
2888version = "4.0.3"
2889source = "registry+https://github.com/rust-lang/crates.io-index"
2890checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
2891dependencies = [
2892 "concurrent-queue",
2893 "parking",
2894 "pin-project-lite 0.2.14",
2895]
2896
2897[[package]]
2898name = "event-listener"
2899version = "5.3.0"
2900source = "registry+https://github.com/rust-lang/crates.io-index"
2901checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24"
2902dependencies = [
2903 "concurrent-queue",
2904 "parking",
2905 "pin-project-lite 0.2.14",
2906]
2907
2908[[package]]
3157name = "event-listener-strategy"2909name = "event-listener-strategy"
3158version = "0.3.0"2910version = "0.4.0"
3159source = "registry+https://github.com/rust-lang/crates.io-index"2911source = "registry+https://github.com/rust-lang/crates.io-index"
3160checksum = "d96b852f1345da36d551b9473fa1e2b1eb5c5195585c6c018118bc92a8d91160"2912checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
3161dependencies = [2913dependencies = [
3162 "event-listener 3.1.0",2914 "event-listener 4.0.3",
3163 "pin-project-lite 0.2.13",2915 "pin-project-lite 0.2.14",
3164]2916]
31652917
3166[[package]]2918[[package]]
2919name = "event-listener-strategy"
2920version = "0.5.2"
2921source = "registry+https://github.com/rust-lang/crates.io-index"
2922checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
2923dependencies = [
2924 "event-listener 5.3.0",
2925 "pin-project-lite 0.2.14",
2926]
2927
2928[[package]]
3167name = "evm"2929name = "evm"
3168version = "0.39.1"2930version = "0.41.1"
3169source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65"2931source = "registry+https://github.com/rust-lang/crates.io-index"
2932checksum = "767f43e9630cc36cf8ff2777cbb0121b055f0d1fd6eaaa13b46a1808f0d0e7e9"
3170dependencies = [2933dependencies = [
3171 "auto_impl",2934 "auto_impl",
3172 "environmental",2935 "environmental",
31852948
3186[[package]]2949[[package]]
3187name = "evm-coder"2950name = "evm-coder"
3188version = "0.4.2"2951version = "0.4.3"
3189source = "registry+https://github.com/rust-lang/crates.io-index"2952source = "registry+https://github.com/rust-lang/crates.io-index"
3190checksum = "b88ae5a449e7e9dfef59c0dd2df396bc56d81a6f4e297490c0c64aa73f7f7ad4"2953checksum = "51a19d57bff1055ffd8f4d542975e7d06c86463df8e4af3d6a1680d1930f7eea"
3191dependencies = [2954dependencies = [
3192 "ethereum",2955 "ethereum",
3193 "evm-coder-procedural",2956 "evm-coder-procedural",
31982961
3199[[package]]2962[[package]]
3200name = "evm-coder-procedural"2963name = "evm-coder-procedural"
3201version = "0.4.2"2964version = "0.4.3"
3202source = "registry+https://github.com/rust-lang/crates.io-index"2965source = "registry+https://github.com/rust-lang/crates.io-index"
3203checksum = "6223c1063c1f53380b4b9aaf2e4d82eba4808c661c61265619b804b09b7a6b1a"2966checksum = "dbb7660d6ee88979a37e8c92fc910a974a19c88aad45355db6ec35a31bef2a69"
3204dependencies = [2967dependencies = [
3205 "Inflector",2968 "Inflector",
3206 "hex",2969 "hex",
32212984
3222[[package]]2985[[package]]
3223name = "evm-core"2986name = "evm-core"
3224version = "0.39.0"2987version = "0.41.0"
3225source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65"2988source = "registry+https://github.com/rust-lang/crates.io-index"
2989checksum = "d1da6cedc5cedb4208e59467106db0d1f50db01b920920589f8e672c02fdc04f"
3226dependencies = [2990dependencies = [
3227 "parity-scale-codec",2991 "parity-scale-codec",
3228 "primitive-types",2992 "primitive-types",
32322996
3233[[package]]2997[[package]]
3234name = "evm-gasometer"2998name = "evm-gasometer"
3235version = "0.39.0"2999version = "0.41.0"
3236source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65"3000source = "registry+https://github.com/rust-lang/crates.io-index"
3001checksum = "1dc0eb591abc5cd7b05bef6a036c2bb6c66ab6c5e0c5ce94bfe377ab670b1fd7"
3237dependencies = [3002dependencies = [
3238 "environmental",3003 "environmental",
3239 "evm-core",3004 "evm-core",
32433008
3244[[package]]3009[[package]]
3245name = "evm-runtime"3010name = "evm-runtime"
3246version = "0.39.0"3011version = "0.41.0"
3247source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65"3012source = "registry+https://github.com/rust-lang/crates.io-index"
3013checksum = "84bbe09b64ae13a29514048c1bb6fda6374ac0b4f6a1f15a443348ab88ef42cd"
3248dependencies = [3014dependencies = [
3249 "auto_impl",3015 "auto_impl",
3250 "environmental",3016 "environmental",
32763042
3277[[package]]3043[[package]]
3278name = "expander"3044name = "expander"
3279version = "2.0.0"3045version = "2.1.0"
3280source = "registry+https://github.com/rust-lang/crates.io-index"3046source = "registry+https://github.com/rust-lang/crates.io-index"
3281checksum = "5f86a749cf851891866c10515ef6c299b5c69661465e9c3bbe7e07a2b77fb0f7"3047checksum = "00e83c02035136f1592a47964ea60c05a50e4ed8b5892cfac197063850898d4d"
3282dependencies = [3048dependencies = [
3283 "blake2 0.10.6",3049 "blake2 0.10.6",
3284 "fs-err",3050 "fs-err",
3051 "prettier-please",
3285 "proc-macro2",3052 "proc-macro2",
3286 "quote",3053 "quote",
3287 "syn 2.0.39",3054 "syn 2.0.65",
3288]3055]
32893056
3290[[package]]3057[[package]]
3291name = "fake-simd"3058name = "fallible-iterator"
3292version = "0.1.2"3059version = "0.2.0"
3293source = "registry+https://github.com/rust-lang/crates.io-index"3060source = "registry+https://github.com/rust-lang/crates.io-index"
3294checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"3061checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
32953062
3296[[package]]3063[[package]]
3297name = "fallible-iterator"3064name = "fallible-iterator"
3298version = "0.2.0"3065version = "0.3.0"
3299source = "registry+https://github.com/rust-lang/crates.io-index"3066source = "registry+https://github.com/rust-lang/crates.io-index"
3300checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"3067checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
33013068
3302[[package]]3069[[package]]
3303name = "fastrand"3070name = "fastrand"
33103077
3311[[package]]3078[[package]]
3312name = "fastrand"3079name = "fastrand"
3313version = "2.0.1"3080version = "2.1.0"
3314source = "registry+https://github.com/rust-lang/crates.io-index"3081source = "registry+https://github.com/rust-lang/crates.io-index"
3315checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"3082checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
33163083
3317[[package]]3084[[package]]
3318name = "fatality"3085name = "fatality"
3342[[package]]3109[[package]]
3343name = "fc-api"3110name = "fc-api"
3344version = "1.0.0-dev"3111version = "1.0.0-dev"
3345source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3112source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3346dependencies = [3113dependencies = [
3347 "async-trait",3114 "async-trait",
3348 "fp-storage",3115 "fp-storage",
3354[[package]]3121[[package]]
3355name = "fc-consensus"3122name = "fc-consensus"
3356version = "2.0.0-dev"3123version = "2.0.0-dev"
3357source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3124source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3358dependencies = [3125dependencies = [
3359 "async-trait",3126 "async-trait",
3360 "fp-consensus",3127 "fp-consensus",
3370[[package]]3137[[package]]
3371name = "fc-db"3138name = "fc-db"
3372version = "2.0.0-dev"3139version = "2.0.0-dev"
3373source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3140source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3374dependencies = [3141dependencies = [
3375 "async-trait",3142 "async-trait",
3376 "fc-api",3143 "fc-api",
3379 "log",3146 "log",
3380 "parity-db",3147 "parity-db",
3381 "parity-scale-codec",3148 "parity-scale-codec",
3382 "parking_lot 0.12.1",3149 "parking_lot 0.12.2",
3383 "sc-client-db",3150 "sc-client-db",
3384 "smallvec",3151 "smallvec",
3385 "sp-blockchain",3152 "sp-blockchain",
3391[[package]]3158[[package]]
3392name = "fc-mapping-sync"3159name = "fc-mapping-sync"
3393version = "2.0.0-dev"3160version = "2.0.0-dev"
3394source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3161source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3395dependencies = [3162dependencies = [
3396 "fc-db",3163 "fc-db",
3397 "fc-storage",3164 "fc-storage",
3400 "futures",3167 "futures",
3401 "futures-timer",3168 "futures-timer",
3402 "log",3169 "log",
3403 "parking_lot 0.12.1",3170 "parking_lot 0.12.2",
3404 "sc-client-api",3171 "sc-client-api",
3405 "sc-utils",3172 "sc-utils",
3406 "sp-api",3173 "sp-api",
3412[[package]]3179[[package]]
3413name = "fc-rpc"3180name = "fc-rpc"
3414version = "2.0.0-dev"3181version = "2.0.0-dev"
3415source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3182source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3416dependencies = [3183dependencies = [
3417 "ethereum",3184 "ethereum",
3418 "ethereum-types",3185 "ethereum-types",
3432 "pallet-evm",3199 "pallet-evm",
3433 "parity-scale-codec",3200 "parity-scale-codec",
3434 "prometheus",3201 "prometheus",
3435 "rand 0.8.5",3202 "rand",
3436 "rlp",3203 "rlp",
3437 "sc-client-api",3204 "sc-client-api",
3438 "sc-consensus-aura",3205 "sc-consensus-aura",
3452 "sp-consensus",3219 "sp-consensus",
3453 "sp-consensus-aura",3220 "sp-consensus-aura",
3454 "sp-core",3221 "sp-core",
3222 "sp-externalities",
3455 "sp-inherents",3223 "sp-inherents",
3456 "sp-io",3224 "sp-io",
3457 "sp-runtime",3225 "sp-runtime",
3466[[package]]3234[[package]]
3467name = "fc-rpc-core"3235name = "fc-rpc-core"
3468version = "1.1.0-dev"3236version = "1.1.0-dev"
3469source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3237source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3470dependencies = [3238dependencies = [
3471 "ethereum",3239 "ethereum",
3472 "ethereum-types",3240 "ethereum-types",
3473 "jsonrpsee",3241 "jsonrpsee",
3242 "rlp",
3474 "rustc-hex",3243 "rustc-hex",
3475 "serde",3244 "serde",
3476 "serde_json",3245 "serde_json",
3246 "sp-crypto-hashing",
3477]3247]
34783248
3479[[package]]3249[[package]]
3480name = "fc-storage"3250name = "fc-storage"
3481version = "1.0.0-dev"3251version = "1.0.0-dev"
3482source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3252source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3483dependencies = [3253dependencies = [
3484 "ethereum",3254 "ethereum",
3485 "ethereum-types",3255 "ethereum-types",
34963266
3497[[package]]3267[[package]]
3498name = "fdlimit"3268name = "fdlimit"
3499version = "0.2.1"3269version = "0.3.0"
3500source = "registry+https://github.com/rust-lang/crates.io-index"3270source = "registry+https://github.com/rust-lang/crates.io-index"
3501checksum = "2c4c9e43643f5a3be4ca5b67d26b98031ff9db6806c3440ae32e02e3ceac3f1b"3271checksum = "e182f7dbc2ef73d9ef67351c5fbbea084729c48362d3ce9dd44c28e32e277fe5"
3502dependencies = [3272dependencies = [
3503 "libc",3273 "libc",
3274 "thiserror",
3504]3275]
35053276
3506[[package]]3277[[package]]
3507name = "ff"3278name = "ff"
3508version = "0.12.1"
3509source = "registry+https://github.com/rust-lang/crates.io-index"
3510checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
3511dependencies = [
3512 "rand_core 0.6.4",
3513 "subtle 2.4.1",
3514]
3515
3516[[package]]
3517name = "ff"
3518version = "0.13.0"3279version = "0.13.0"
3519source = "registry+https://github.com/rust-lang/crates.io-index"3280source = "registry+https://github.com/rust-lang/crates.io-index"
3520checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"3281checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
3521dependencies = [3282dependencies = [
3522 "rand_core 0.6.4",3283 "rand_core 0.6.4",
3523 "subtle 2.4.1",3284 "subtle 2.5.0",
3524]3285]
35253286
3526[[package]]3287[[package]]
3527name = "fiat-crypto"3288name = "fiat-crypto"
3528version = "0.2.5"3289version = "0.2.9"
3529source = "registry+https://github.com/rust-lang/crates.io-index"3290source = "registry+https://github.com/rust-lang/crates.io-index"
3530checksum = "27573eac26f4dd11e2b1916c3fe1baa56407c83c71a773a8ba17ec0bca03b6b7"3291checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
35313292
3532[[package]]3293[[package]]
3533name = "file-per-thread-logger"3294name = "file-per-thread-logger"
35413302
3542[[package]]3303[[package]]
3543name = "filetime"3304name = "filetime"
3544version = "0.2.22"3305version = "0.2.23"
3545source = "registry+https://github.com/rust-lang/crates.io-index"3306source = "registry+https://github.com/rust-lang/crates.io-index"
3546checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"3307checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
3547dependencies = [3308dependencies = [
3548 "cfg-if",3309 "cfg-if",
3549 "libc",3310 "libc",
3550 "redox_syscall 0.3.5",3311 "redox_syscall 0.4.1",
3551 "windows-sys 0.48.0",3312 "windows-sys 0.52.0",
3552]3313]
35533314
3554[[package]]3315[[package]]
3563 "log",3324 "log",
3564 "num-traits",3325 "num-traits",
3565 "parity-scale-codec",3326 "parity-scale-codec",
3566 "parking_lot 0.12.1",3327 "parking_lot 0.12.2",
3567 "scale-info",3328 "scale-info",
3568]3329]
35693330
3574checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"3335checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
3575dependencies = [3336dependencies = [
3576 "byteorder",3337 "byteorder",
3577 "rand 0.8.5",3338 "rand",
3578 "rustc-hex",3339 "rustc-hex",
3579 "static_assertions",3340 "static_assertions",
3580]3341]
35873348
3588[[package]]3349[[package]]
3589name = "flate2"3350name = "flate2"
3590version = "1.0.28"3351version = "1.0.30"
3591source = "registry+https://github.com/rust-lang/crates.io-index"3352source = "registry+https://github.com/rust-lang/crates.io-index"
3592checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"3353checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
3593dependencies = [3354dependencies = [
3594 "crc32fast",3355 "crc32fast",
3595 "libz-sys",3356 "libz-sys",
36133374
3614[[package]]3375[[package]]
3615name = "fork-tree"3376name = "fork-tree"
3616version = "11.0.0"3377version = "12.0.0"
3617source = "registry+https://github.com/rust-lang/crates.io-index"3378source = "registry+https://github.com/rust-lang/crates.io-index"
3618checksum = "1c2d0a4310dcf0e5cce78e35e60dc2fda80ef61c8f8fc382e685dfc24fcf5db9"3379checksum = "e93d3f0315c2eccf23453609e0ab92fe7c6ad1ca8129bcaf80b9a08c8d7fc52b"
3619dependencies = [3380dependencies = [
3620 "parity-scale-codec",3381 "parity-scale-codec",
3621]3382]
36223383
3623[[package]]3384[[package]]
3624name = "form_urlencoded"3385name = "form_urlencoded"
3625version = "1.2.0"3386version = "1.2.1"
3626source = "registry+https://github.com/rust-lang/crates.io-index"3387source = "registry+https://github.com/rust-lang/crates.io-index"
3627checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"3388checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
3628dependencies = [3389dependencies = [
3629 "percent-encoding",3390 "percent-encoding",
3630]3391]
36313392
3632[[package]]3393[[package]]
3633name = "fp-account"3394name = "fp-account"
3634version = "1.0.0-dev"3395version = "1.0.0-dev"
3635source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3396source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3636dependencies = [3397dependencies = [
3637 "hex",3398 "hex",
3638 "impl-serde",3399 "impl-serde",
3651[[package]]3412[[package]]
3652name = "fp-consensus"3413name = "fp-consensus"
3653version = "2.0.0-dev"3414version = "2.0.0-dev"
3654source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3415source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3655dependencies = [3416dependencies = [
3656 "ethereum",3417 "ethereum",
3657 "parity-scale-codec",3418 "parity-scale-codec",
3663[[package]]3424[[package]]
3664name = "fp-ethereum"3425name = "fp-ethereum"
3665version = "1.0.0-dev"3426version = "1.0.0-dev"
3666source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3427source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3667dependencies = [3428dependencies = [
3668 "ethereum",3429 "ethereum",
3669 "ethereum-types",3430 "ethereum-types",
3676[[package]]3437[[package]]
3677name = "fp-evm"3438name = "fp-evm"
3678version = "3.0.0-dev"3439version = "3.0.0-dev"
3679source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3440source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3680dependencies = [3441dependencies = [
3681 "evm",3442 "evm",
3682 "frame-support",3443 "frame-support",
3692[[package]]3453[[package]]
3693name = "fp-rpc"3454name = "fp-rpc"
3694version = "3.0.0-dev"3455version = "3.0.0-dev"
3695source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3456source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3696dependencies = [3457dependencies = [
3697 "ethereum",3458 "ethereum",
3698 "ethereum-types",3459 "ethereum-types",
3709[[package]]3470[[package]]
3710name = "fp-self-contained"3471name = "fp-self-contained"
3711version = "1.0.0-dev"3472version = "1.0.0-dev"
3712source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3473source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3713dependencies = [3474dependencies = [
3714 "frame-support",3475 "frame-support",
3715 "parity-scale-codec",3476 "parity-scale-codec",
3721[[package]]3482[[package]]
3722name = "fp-storage"3483name = "fp-storage"
3723version = "2.0.0"3484version = "2.0.0"
3724source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"3485source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
3725dependencies = [3486dependencies = [
3726 "parity-scale-codec",3487 "parity-scale-codec",
3727 "serde",3488 "serde",
37353496
3736[[package]]3497[[package]]
3737name = "frame-benchmarking"3498name = "frame-benchmarking"
3738version = "25.0.0"3499version = "31.0.0"
3739source = "registry+https://github.com/rust-lang/crates.io-index"3500source = "registry+https://github.com/rust-lang/crates.io-index"
3740checksum = "3dd4946d63eab00d899f08a7e74e965cc6785c2298efaea6a2752905f4810407"3501checksum = "9fee087c6a7ddbc6dcfb6a6015d4b2787ecbb2113ed8b8bee8ff15f2bdf93f94"
3741dependencies = [3502dependencies = [
3742 "frame-support",3503 "frame-support",
3743 "frame-support-procedural",3504 "frame-support-procedural",
37613522
3762[[package]]3523[[package]]
3763name = "frame-benchmarking-cli"3524name = "frame-benchmarking-cli"
3764version = "29.0.0"3525version = "35.0.1"
3765source = "registry+https://github.com/rust-lang/crates.io-index"3526source = "registry+https://github.com/rust-lang/crates.io-index"
3766checksum = "67e51c371bff90ba44767a79e72a036d7d648cee621cd2fe9f693e8c1d62941e"3527checksum = "38f1660c2e59d206386658ca7fa867c2ccdb44429cc8a5a16a2975a338aa7047"
3767dependencies = [3528dependencies = [
3768 "Inflector",3529 "Inflector",
3769 "array-bytes 6.2.0",3530 "array-bytes 6.2.3",
3770 "chrono",3531 "chrono",
3771 "clap",3532 "clap",
3772 "comfy-table",3533 "comfy-table",
3780 "linked-hash-map",3541 "linked-hash-map",
3781 "log",3542 "log",
3782 "parity-scale-codec",3543 "parity-scale-codec",
3783 "rand 0.8.5",3544 "rand",
3784 "rand_pcg",3545 "rand_pcg",
3785 "sc-block-builder",3546 "sc-block-builder",
3786 "sc-cli",3547 "sc-cli",
38103571
3811[[package]]3572[[package]]
3812name = "frame-election-provider-solution-type"3573name = "frame-election-provider-solution-type"
3813version = "12.0.0"3574version = "13.0.0"
3814source = "registry+https://github.com/rust-lang/crates.io-index"3575source = "registry+https://github.com/rust-lang/crates.io-index"
3815checksum = "03911cf3675af64252a6de7b4f383eafa80d5ea5830184e7a0739aeb0b95272d"3576checksum = "c5c3bff645e46577c69c272733c53fa3a77d1ee6e40dfb66157bc94b0740b8fc"
3816dependencies = [3577dependencies = [
3817 "proc-macro-crate 1.3.1",3578 "proc-macro-crate 3.1.0",
3818 "proc-macro2",3579 "proc-macro2",
3819 "quote",3580 "quote",
3820 "syn 2.0.39",3581 "syn 2.0.65",
3821]3582]
38223583
3823[[package]]3584[[package]]
3824name = "frame-election-provider-support"3585name = "frame-election-provider-support"
3825version = "25.0.0"3586version = "31.0.0"
3826source = "registry+https://github.com/rust-lang/crates.io-index"3587source = "registry+https://github.com/rust-lang/crates.io-index"
3827checksum = "ebad507fb038db2f7ce982d30bd9828a59785c9a4780348d59cd6cceaee80d1a"3588checksum = "d651327ec98d12fbdb0d25346de929e3ea2ab8a1ef85570794d9d8d54f204f28"
3828dependencies = [3589dependencies = [
3829 "frame-election-provider-solution-type",3590 "frame-election-provider-solution-type",
3830 "frame-support",3591 "frame-support",
38403601
3841[[package]]3602[[package]]
3842name = "frame-executive"3603name = "frame-executive"
3843version = "25.0.0"3604version = "31.0.0"
3844source = "registry+https://github.com/rust-lang/crates.io-index"3605source = "registry+https://github.com/rust-lang/crates.io-index"
3845checksum = "2dda2c20ea3267ee20c9a5482f320236510c4ade6aec1dd930cb57dc5651c64f"3606checksum = "e3d4502dd4218aaf90240527adb789b9620fcada2af76f4751a8a852583eb0c2"
3846dependencies = [3607dependencies = [
3608 "aquamarine 0.3.3",
3847 "frame-support",3609 "frame-support",
3848 "frame-system",3610 "frame-system",
3849 "frame-try-runtime",3611 "frame-try-runtime",
38713633
3872[[package]]3634[[package]]
3873name = "frame-remote-externalities"3635name = "frame-remote-externalities"
3874version = "0.32.0"3636version = "0.38.0"
3875source = "registry+https://github.com/rust-lang/crates.io-index"3637source = "registry+https://github.com/rust-lang/crates.io-index"
3876checksum = "a30013df51f4d4e58472c4fecdbfeb141234ece5f6355e5b3a3e51d3f87d452d"3638checksum = "c935bea33258c329e9ad4784a720aa4b1faff8c5af474f14e0898db11b7cb8ab"
3877dependencies = [3639dependencies = [
3878 "futures",3640 "futures",
3879 "indicatif",3641 "indicatif",
3882 "parity-scale-codec",3644 "parity-scale-codec",
3883 "serde",3645 "serde",
3884 "sp-core",3646 "sp-core",
3647 "sp-crypto-hashing",
3885 "sp-io",3648 "sp-io",
3886 "sp-runtime",3649 "sp-runtime",
3887 "sp-state-machine",3650 "sp-state-machine",
38933656
3894[[package]]3657[[package]]
3895name = "frame-support"3658name = "frame-support"
3896version = "25.0.0"3659version = "31.0.0"
3897source = "registry+https://github.com/rust-lang/crates.io-index"3660source = "registry+https://github.com/rust-lang/crates.io-index"
3898checksum = "023504bbdd0e8d1ebe3d9d289b009337cdb9a24c5e74615ffd7b188aa1664c2d"3661checksum = "81aecbbc1c62055e8ce472283bc655bf6c0f968a4d22d504bf6aad4ea44ccbc4"
3899dependencies = [3662dependencies = [
3900 "aquamarine",3663 "aquamarine 0.5.0",
3664 "array-bytes 6.2.3",
3901 "bitflags 1.3.2",3665 "bitflags 1.3.2",
3902 "docify",3666 "docify",
3903 "environmental",3667 "environmental",
3916 "sp-api",3680 "sp-api",
3917 "sp-arithmetic",3681 "sp-arithmetic",
3918 "sp-core",3682 "sp-core",
3919 "sp-core-hashing-proc-macro",3683 "sp-crypto-hashing-proc-macro",
3920 "sp-debug-derive",3684 "sp-debug-derive",
3921 "sp-genesis-builder",3685 "sp-genesis-builder",
3922 "sp-inherents",3686 "sp-inherents",
39343698
3935[[package]]3699[[package]]
3936name = "frame-support-procedural"3700name = "frame-support-procedural"
3937version = "20.0.0"3701version = "26.0.1"
3938source = "registry+https://github.com/rust-lang/crates.io-index"3702source = "registry+https://github.com/rust-lang/crates.io-index"
3939checksum = "1d6bc383298353ff2790ac1a301262c21ac196dbc26ef67a2213c46524a06dd1"3703checksum = "732fa43a05789f4ffb96955017e40643199d586c3d211754df5824a195f4eab5"
3940dependencies = [3704dependencies = [
3941 "Inflector",3705 "Inflector",
3942 "cfg-expr",3706 "cfg-expr",
3943 "derive-syn-parse",3707 "derive-syn-parse 0.1.5",
3944 "expander 2.0.0",3708 "expander 2.1.0",
3945 "frame-support-procedural-tools",3709 "frame-support-procedural-tools",
3946 "itertools 0.10.5",3710 "itertools 0.10.5",
3947 "macro_magic",3711 "macro_magic",
3948 "proc-macro-warning",3712 "proc-macro-warning",
3949 "proc-macro2",3713 "proc-macro2",
3950 "quote",3714 "quote",
3951 "sp-core-hashing",3715 "sp-crypto-hashing",
3952 "syn 2.0.39",3716 "syn 2.0.65",
3953]3717]
39543718
3955[[package]]3719[[package]]
3956name = "frame-support-procedural-tools"3720name = "frame-support-procedural-tools"
3957version = "9.0.0"3721version = "11.0.1"
3958source = "registry+https://github.com/rust-lang/crates.io-index"3722source = "registry+https://github.com/rust-lang/crates.io-index"
3959checksum = "b3ac1266522a8c9a2d2d26d205ec3028b88582d5f3cd5cbc75d0ec8271d197b7"3723checksum = "b482a1d18fa63aed1ff3fe3fcfb3bc23d92cb3903d6b9774f75dc2c4e1001c3a"
3960dependencies = [3724dependencies = [
3961 "frame-support-procedural-tools-derive",3725 "frame-support-procedural-tools-derive",
3962 "proc-macro-crate 1.3.1",3726 "proc-macro-crate 3.1.0",
3963 "proc-macro2",3727 "proc-macro2",
3964 "quote",3728 "quote",
3965 "syn 2.0.39",3729 "syn 2.0.65",
3966]3730]
39673731
3968[[package]]3732[[package]]
3969name = "frame-support-procedural-tools-derive"3733name = "frame-support-procedural-tools-derive"
3970version = "10.0.0"3734version = "12.0.0"
3971source = "registry+https://github.com/rust-lang/crates.io-index"3735source = "registry+https://github.com/rust-lang/crates.io-index"
3972checksum = "d9c078db2242ea7265faa486004e7fd8daaf1a577cfcac0070ce55d926922883"3736checksum = "ed971c6435503a099bdac99fe4c5bea08981709e5b5a0a8535a1856f48561191"
3973dependencies = [3737dependencies = [
3974 "proc-macro2",3738 "proc-macro2",
3975 "quote",3739 "quote",
3976 "syn 2.0.39",3740 "syn 2.0.65",
3977]3741]
39783742
3979[[package]]3743[[package]]
3980name = "frame-system"3744name = "frame-system"
3981version = "25.0.0"3745version = "31.0.0"
3982source = "registry+https://github.com/rust-lang/crates.io-index"3746source = "registry+https://github.com/rust-lang/crates.io-index"
3983checksum = "57e316407c45a5093c833966a906301aa0dcbd05048061cd9cde2548d017bfd9"3747checksum = "f7537b5e23f584bf54f26c6297e0260b54fac5298be43a115176a310f256a4ab"
3984dependencies = [3748dependencies = [
3985 "cfg-if",3749 "cfg-if",
3750 "docify",
3986 "frame-support",3751 "frame-support",
3987 "log",3752 "log",
3988 "parity-scale-codec",3753 "parity-scale-codec",
39983763
3999[[package]]3764[[package]]
4000name = "frame-system-benchmarking"3765name = "frame-system-benchmarking"
4001version = "25.0.0"3766version = "31.0.0"
4002source = "registry+https://github.com/rust-lang/crates.io-index"3767source = "registry+https://github.com/rust-lang/crates.io-index"
4003checksum = "b5b1388055d29a7a1c4d41b1623d3fcbc9d7f31d17abe04500b270b26901d926"3768checksum = "ea3c6bd0f5700363a845d4c0f83ea3478cdfcfe404d08f35865b78ebc5d37c0a"
4004dependencies = [3769dependencies = [
4005 "frame-benchmarking",3770 "frame-benchmarking",
4006 "frame-support",3771 "frame-support",
40143779
4015[[package]]3780[[package]]
4016name = "frame-system-rpc-runtime-api"3781name = "frame-system-rpc-runtime-api"
4017version = "23.0.0"3782version = "29.0.0"
4018source = "registry+https://github.com/rust-lang/crates.io-index"3783source = "registry+https://github.com/rust-lang/crates.io-index"
4019checksum = "17572a34fd866ad6cab6977a2c30b38645e0a499b3486de00ae9103f7002d6d3"3784checksum = "7ae4e8decf1630ed6731e8912d1ed4ac3986d86c68f59580f2a9f61909150c41"
4020dependencies = [3785dependencies = [
4021 "parity-scale-codec",3786 "parity-scale-codec",
4022 "sp-api",3787 "sp-api",
4023]3788]
40243789
4025[[package]]3790[[package]]
4026name = "frame-try-runtime"3791name = "frame-try-runtime"
4027version = "0.31.0"3792version = "0.37.0"
4028source = "registry+https://github.com/rust-lang/crates.io-index"3793source = "registry+https://github.com/rust-lang/crates.io-index"
4029checksum = "f082e770275f9b46ddf46b09bc7a993f84db691c39d9e4d038ac07443cb17a18"3794checksum = "bad42234b76beabf35bbc9a54566f0060b8d3d4fe93726007f02896e8beb91e3"
4030dependencies = [3795dependencies = [
4031 "frame-support",3796 "frame-support",
4032 "parity-scale-codec",3797 "parity-scale-codec",
40563821
4057[[package]]3822[[package]]
4058name = "fs4"3823name = "fs4"
4059version = "0.6.6"3824version = "0.7.0"
4060source = "registry+https://github.com/rust-lang/crates.io-index"3825source = "registry+https://github.com/rust-lang/crates.io-index"
4061checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47"3826checksum = "29f9df8a11882c4e3335eb2d18a0137c505d9ca927470b0cac9c6f0ae07d28f7"
4062dependencies = [3827dependencies = [
4063 "rustix 0.38.25",3828 "rustix 0.38.34",
4064 "windows-sys 0.48.0",3829 "windows-sys 0.48.0",
4065]3830]
40663831
40723837
4073[[package]]3838[[package]]
4074name = "futures"3839name = "futures"
4075version = "0.3.29"3840version = "0.3.30"
4076source = "registry+https://github.com/rust-lang/crates.io-index"3841source = "registry+https://github.com/rust-lang/crates.io-index"
4077checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335"3842checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
4078dependencies = [3843dependencies = [
4079 "futures-channel",3844 "futures-channel",
4080 "futures-core",3845 "futures-core",
40873852
4088[[package]]3853[[package]]
4089name = "futures-channel"3854name = "futures-channel"
4090version = "0.3.29"3855version = "0.3.30"
4091source = "registry+https://github.com/rust-lang/crates.io-index"3856source = "registry+https://github.com/rust-lang/crates.io-index"
4092checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"3857checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
4093dependencies = [3858dependencies = [
4094 "futures-core",3859 "futures-core",
4095 "futures-sink",3860 "futures-sink",
4096]3861]
40973862
4098[[package]]3863[[package]]
4099name = "futures-core"3864name = "futures-core"
4100version = "0.3.29"3865version = "0.3.30"
4101source = "registry+https://github.com/rust-lang/crates.io-index"3866source = "registry+https://github.com/rust-lang/crates.io-index"
4102checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"3867checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
41033868
4104[[package]]3869[[package]]
4105name = "futures-executor"3870name = "futures-executor"
4106version = "0.3.29"3871version = "0.3.30"
4107source = "registry+https://github.com/rust-lang/crates.io-index"3872source = "registry+https://github.com/rust-lang/crates.io-index"
4108checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"3873checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
4109dependencies = [3874dependencies = [
4110 "futures-core",3875 "futures-core",
4111 "futures-task",3876 "futures-task",
41153880
4116[[package]]3881[[package]]
4117name = "futures-io"3882name = "futures-io"
4118version = "0.3.29"3883version = "0.3.30"
4119source = "registry+https://github.com/rust-lang/crates.io-index"3884source = "registry+https://github.com/rust-lang/crates.io-index"
4120checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"3885checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
41213886
4122[[package]]3887[[package]]
4123name = "futures-lite"3888name = "futures-lite"
4130 "futures-io",3895 "futures-io",
4131 "memchr",3896 "memchr",
4132 "parking",3897 "parking",
4133 "pin-project-lite 0.2.13",3898 "pin-project-lite 0.2.14",
4134 "waker-fn",3899 "waker-fn",
4135]3900]
41363901
4137[[package]]3902[[package]]
4138name = "futures-lite"3903name = "futures-lite"
4139version = "2.0.1"3904version = "2.3.0"
4140source = "registry+https://github.com/rust-lang/crates.io-index"3905source = "registry+https://github.com/rust-lang/crates.io-index"
4141checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb"3906checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
4142dependencies = [3907dependencies = [
4143 "fastrand 2.0.1",3908 "fastrand 2.1.0",
4144 "futures-core",3909 "futures-core",
4145 "futures-io",3910 "futures-io",
4146 "memchr",
4147 "parking",3911 "parking",
4148 "pin-project-lite 0.2.13",3912 "pin-project-lite 0.2.14",
4149]3913]
41503914
4151[[package]]3915[[package]]
4152name = "futures-macro"3916name = "futures-macro"
4153version = "0.3.29"3917version = "0.3.30"
4154source = "registry+https://github.com/rust-lang/crates.io-index"3918source = "registry+https://github.com/rust-lang/crates.io-index"
4155checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"3919checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
4156dependencies = [3920dependencies = [
4157 "proc-macro2",3921 "proc-macro2",
4158 "quote",3922 "quote",
4159 "syn 2.0.39",3923 "syn 2.0.65",
4160]3924]
41613925
4162[[package]]3926[[package]]
4167dependencies = [3931dependencies = [
4168 "futures-io",3932 "futures-io",
4169 "rustls 0.20.9",3933 "rustls 0.20.9",
4170 "webpki 0.22.4",3934 "webpki",
4171]3935]
41723936
4173[[package]]3937[[package]]
4174name = "futures-sink"3938name = "futures-sink"
4175version = "0.3.29"3939version = "0.3.30"
4176source = "registry+https://github.com/rust-lang/crates.io-index"3940source = "registry+https://github.com/rust-lang/crates.io-index"
4177checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"3941checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
41783942
4179[[package]]3943[[package]]
4180name = "futures-task"3944name = "futures-task"
4181version = "0.3.29"3945version = "0.3.30"
4182source = "registry+https://github.com/rust-lang/crates.io-index"3946source = "registry+https://github.com/rust-lang/crates.io-index"
4183checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"3947checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
41843948
4185[[package]]3949[[package]]
4186name = "futures-timer"3950name = "futures-timer"
4187version = "3.0.2"3951version = "3.0.3"
4188source = "registry+https://github.com/rust-lang/crates.io-index"3952source = "registry+https://github.com/rust-lang/crates.io-index"
4189checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"3953checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
41903954
4191[[package]]3955[[package]]
4192name = "futures-util"3956name = "futures-util"
4193version = "0.3.29"3957version = "0.3.30"
4194source = "registry+https://github.com/rust-lang/crates.io-index"3958source = "registry+https://github.com/rust-lang/crates.io-index"
4195checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"3959checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
4196dependencies = [3960dependencies = [
4197 "futures-channel",3961 "futures-channel",
4198 "futures-core",3962 "futures-core",
4201 "futures-sink",3965 "futures-sink",
4202 "futures-task",3966 "futures-task",
4203 "memchr",3967 "memchr",
4204 "pin-project-lite 0.2.13",3968 "pin-project-lite 0.2.14",
4205 "pin-utils",3969 "pin-utils",
4206 "slab",3970 "slab",
4207]3971]
42584022
4259[[package]]4023[[package]]
4260name = "getrandom"4024name = "getrandom"
4261version = "0.2.11"4025version = "0.2.15"
4262source = "registry+https://github.com/rust-lang/crates.io-index"4026source = "registry+https://github.com/rust-lang/crates.io-index"
4263checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"4027checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
4264dependencies = [4028dependencies = [
4265 "cfg-if",4029 "cfg-if",
4266 "libc",4030 "libc",
4267 "wasi 0.11.0+wasi-snapshot-preview1",4031 "wasi 0.11.0+wasi-snapshot-preview1",
4268]4032]
42694033
4270[[package]]4034[[package]]
4271name = "ghash"4035name = "getrandom_or_panic"
4272version = "0.4.4"4036version = "0.0.3"
4273source = "registry+https://github.com/rust-lang/crates.io-index"4037source = "registry+https://github.com/rust-lang/crates.io-index"
4274checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"4038checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9"
4275dependencies = [4039dependencies = [
4276 "opaque-debug 0.3.0",4040 "rand",
4277 "polyval 0.5.3",4041 "rand_core 0.6.4",
4278]4042]
42794043
4280[[package]]4044[[package]]
4281name = "ghash"4045name = "ghash"
4282version = "0.5.0"4046version = "0.5.1"
4283source = "registry+https://github.com/rust-lang/crates.io-index"4047source = "registry+https://github.com/rust-lang/crates.io-index"
4284checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"4048checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
4285dependencies = [4049dependencies = [
4286 "opaque-debug 0.3.0",4050 "opaque-debug 0.3.1",
4287 "polyval 0.6.1",4051 "polyval",
4288]4052]
42894053
4290[[package]]4054[[package]]
4293source = "registry+https://github.com/rust-lang/crates.io-index"4057source = "registry+https://github.com/rust-lang/crates.io-index"
4294checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"4058checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
4295dependencies = [4059dependencies = [
4296 "fallible-iterator",4060 "fallible-iterator 0.2.0",
4297 "indexmap 1.9.3",4061 "indexmap 1.9.3",
4298 "stable_deref_trait",4062 "stable_deref_trait",
4299]4063]
43004064
4301[[package]]4065[[package]]
4302name = "gimli"4066name = "gimli"
4303version = "0.28.0"4067version = "0.28.1"
4304source = "registry+https://github.com/rust-lang/crates.io-index"4068source = "registry+https://github.com/rust-lang/crates.io-index"
4305checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"4069checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
4070dependencies = [
4071 "fallible-iterator 0.3.0",
4072 "stable_deref_trait",
4073]
43064074
4307[[package]]4075[[package]]
4308name = "glob"4076name = "glob"
4311checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"4079checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
43124080
4313[[package]]4081[[package]]
4314name = "globset"4082name = "governor"
4315version = "0.4.13"4083version = "0.6.3"
4316source = "registry+https://github.com/rust-lang/crates.io-index"4084source = "registry+https://github.com/rust-lang/crates.io-index"
4317checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d"4085checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b"
4318dependencies = [4086dependencies = [
4319 "aho-corasick",4087 "cfg-if",
4320 "bstr",4088 "dashmap",
4321 "fnv",4089 "futures",
4322 "log",4090 "futures-timer",
4091 "no-std-compat",
4092 "nonzero_ext",
4093 "parking_lot 0.12.2",
4094 "portable-atomic",
4095 "quanta",
4096 "rand",
4097 "smallvec",
4323 "regex",4098 "spinning_top",
4324]4099]
43254100
4326[[package]]4101[[package]]
4327name = "group"4102name = "group"
4328version = "0.12.1"
4329source = "registry+https://github.com/rust-lang/crates.io-index"
4330checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
4331dependencies = [
4332 "ff 0.12.1",
4333 "rand_core 0.6.4",
4334 "subtle 2.4.1",
4335]
4336
4337[[package]]
4338name = "group"
4339version = "0.13.0"4103version = "0.13.0"
4340source = "registry+https://github.com/rust-lang/crates.io-index"4104source = "registry+https://github.com/rust-lang/crates.io-index"
4341checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"4105checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
4342dependencies = [4106dependencies = [
4343 "ff 0.13.0",4107 "ff",
4344 "rand_core 0.6.4",4108 "rand_core 0.6.4",
4345 "subtle 2.4.1",4109 "subtle 2.5.0",
4346]4110]
43474111
4348[[package]]4112[[package]]
4349name = "h2"4113name = "h2"
4350version = "0.3.22"4114version = "0.3.26"
4351source = "registry+https://github.com/rust-lang/crates.io-index"4115source = "registry+https://github.com/rust-lang/crates.io-index"
4352checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178"4116checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
4353dependencies = [4117dependencies = [
4354 "bytes",4118 "bytes",
4355 "fnv",4119 "fnv",
4356 "futures-core",4120 "futures-core",
4357 "futures-sink",4121 "futures-sink",
4358 "futures-util",4122 "futures-util",
4359 "http",4123 "http",
4360 "indexmap 2.1.0",4124 "indexmap 2.2.6",
4361 "slab",4125 "slab",
4362 "tokio",4126 "tokio",
4363 "tokio-util",4127 "tokio-util",
43664130
4367[[package]]4131[[package]]
4368name = "handlebars"4132name = "handlebars"
4369version = "4.5.0"4133version = "5.1.2"
4370source = "registry+https://github.com/rust-lang/crates.io-index"4134source = "registry+https://github.com/rust-lang/crates.io-index"
4371checksum = "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225"4135checksum = "d08485b96a0e6393e9e4d1b8d48cf74ad6c063cd905eb33f42c1ce3f0377539b"
4372dependencies = [4136dependencies = [
4373 "log",4137 "log",
4374 "pest",4138 "pest",
43804144
4381[[package]]4145[[package]]
4382name = "hash-db"4146name = "hash-db"
4383version = "0.15.2"
4384source = "registry+https://github.com/rust-lang/crates.io-index"
4385checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a"
4386
4387[[package]]
4388name = "hash-db"
4389version = "0.16.0"4147version = "0.16.0"
4390source = "registry+https://github.com/rust-lang/crates.io-index"4148source = "registry+https://github.com/rust-lang/crates.io-index"
4391checksum = "8e7d7786361d7425ae2fe4f9e407eb0efaa0840f5212d109cc018c40c35c6ab4"4149checksum = "8e7d7786361d7425ae2fe4f9e407eb0efaa0840f5212d109cc018c40c35c6ab4"
4405source = "registry+https://github.com/rust-lang/crates.io-index"4163source = "registry+https://github.com/rust-lang/crates.io-index"
4406checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"4164checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
4407dependencies = [4165dependencies = [
4408 "ahash 0.7.7",4166 "ahash 0.7.8",
4409]4167]
44104168
4411[[package]]4169[[package]]
4414source = "registry+https://github.com/rust-lang/crates.io-index"4172source = "registry+https://github.com/rust-lang/crates.io-index"
4415checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"4173checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
4416dependencies = [4174dependencies = [
4417 "ahash 0.8.6",4175 "ahash 0.8.11",
4418]4176]
44194177
4420[[package]]4178[[package]]
4421name = "hashbrown"4179name = "hashbrown"
4422version = "0.14.2"4180version = "0.14.5"
4423source = "registry+https://github.com/rust-lang/crates.io-index"4181source = "registry+https://github.com/rust-lang/crates.io-index"
4424checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"4182checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
4425dependencies = [4183dependencies = [
4426 "ahash 0.8.6",4184 "ahash 0.8.11",
4427 "allocator-api2",4185 "allocator-api2",
4428 "serde",4186 "serde",
4429]4187]
4434source = "registry+https://github.com/rust-lang/crates.io-index"4192source = "registry+https://github.com/rust-lang/crates.io-index"
4435checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"4193checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
4436dependencies = [4194dependencies = [
4437 "hashbrown 0.14.2",4195 "hashbrown 0.14.5",
4438]4196]
44394197
4440[[package]]4198[[package]]
4444checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"4202checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
44454203
4446[[package]]4204[[package]]
4447name = "hermit-abi"4205name = "heck"
4448version = "0.1.19"4206version = "0.5.0"
4449source = "registry+https://github.com/rust-lang/crates.io-index"4207source = "registry+https://github.com/rust-lang/crates.io-index"
4450checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"4208checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
4451dependencies = [
4452 "libc",
4453]
44544209
4455[[package]]4210[[package]]
4456name = "hermit-abi"4211name = "hermit-abi"
4457version = "0.3.3"4212version = "0.3.9"
4458source = "registry+https://github.com/rust-lang/crates.io-index"4213source = "registry+https://github.com/rust-lang/crates.io-index"
4459checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"4214checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
44604215
4461[[package]]4216[[package]]
4462name = "hex"4217name = "hex"
4465checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"4220checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
44664221
4467[[package]]4222[[package]]
4223name = "hex-conservative"
4224version = "0.1.2"
4225source = "registry+https://github.com/rust-lang/crates.io-index"
4226checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20"
4227
4228[[package]]
4468name = "hex-literal"4229name = "hex-literal"
4469version = "0.4.1"4230version = "0.4.1"
4470source = "registry+https://github.com/rust-lang/crates.io-index"4231source = "registry+https://github.com/rust-lang/crates.io-index"
4471checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"4232checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
44724233
4473[[package]]4234[[package]]
4474name = "hkdf"4235name = "hkdf"
4475version = "0.12.3"4236version = "0.12.4"
4476source = "registry+https://github.com/rust-lang/crates.io-index"4237source = "registry+https://github.com/rust-lang/crates.io-index"
4477checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"4238checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
4478dependencies = [4239dependencies = [
4479 "hmac 0.12.1",4240 "hmac 0.12.1",
4480]4241]
44914252
4492[[package]]4253[[package]]
4493name = "hmac"4254name = "hmac"
4494version = "0.11.0"
4495source = "registry+https://github.com/rust-lang/crates.io-index"
4496checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
4497dependencies = [
4498 "crypto-mac 0.11.1",
4499 "digest 0.9.0",
4500]
4501
4502[[package]]
4503name = "hmac"
4504version = "0.12.1"4255version = "0.12.1"
4505source = "registry+https://github.com/rust-lang/crates.io-index"4256source = "registry+https://github.com/rust-lang/crates.io-index"
4506checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"4257checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
45214272
4522[[package]]4273[[package]]
4523name = "home"4274name = "home"
4524version = "0.5.5"4275version = "0.5.9"
4525source = "registry+https://github.com/rust-lang/crates.io-index"4276source = "registry+https://github.com/rust-lang/crates.io-index"
4526checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"4277checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
4527dependencies = [4278dependencies = [
4528 "windows-sys 0.48.0",4279 "windows-sys 0.52.0",
4529]4280]
45304281
4531[[package]]4282[[package]]
45414292
4542[[package]]4293[[package]]
4543name = "http"4294name = "http"
4544version = "0.2.11"4295version = "0.2.12"
4545source = "registry+https://github.com/rust-lang/crates.io-index"4296source = "registry+https://github.com/rust-lang/crates.io-index"
4546checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"4297checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
4547dependencies = [4298dependencies = [
4548 "bytes",4299 "bytes",
4549 "fnv",4300 "fnv",
45524303
4553[[package]]4304[[package]]
4554name = "http-body"4305name = "http-body"
4555version = "0.4.5"4306version = "0.4.6"
4556source = "registry+https://github.com/rust-lang/crates.io-index"4307source = "registry+https://github.com/rust-lang/crates.io-index"
4557checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"4308checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
4558dependencies = [4309dependencies = [
4559 "bytes",4310 "bytes",
4560 "http",4311 "http",
4561 "pin-project-lite 0.2.13",4312 "pin-project-lite 0.2.14",
4562]4313]
45634314
4564[[package]]4315[[package]]
45874338
4588[[package]]4339[[package]]
4589name = "hyper"4340name = "hyper"
4590version = "0.14.27"4341version = "0.14.28"
4591source = "registry+https://github.com/rust-lang/crates.io-index"4342source = "registry+https://github.com/rust-lang/crates.io-index"
4592checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"4343checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
4593dependencies = [4344dependencies = [
4594 "bytes",4345 "bytes",
4595 "futures-channel",4346 "futures-channel",
4601 "httparse",4352 "httparse",
4602 "httpdate",4353 "httpdate",
4603 "itoa",4354 "itoa",
4604 "pin-project-lite 0.2.13",4355 "pin-project-lite 0.2.14",
4605 "socket2 0.4.10",4356 "socket2 0.5.7",
4606 "tokio",4357 "tokio",
4607 "tower-service",4358 "tower-service",
4608 "tracing",4359 "tracing",
4619 "http",4370 "http",
4620 "hyper",4371 "hyper",
4621 "log",4372 "log",
4622 "rustls 0.21.9",4373 "rustls 0.21.12",
4623 "rustls-native-certs",4374 "rustls-native-certs 0.6.3",
4624 "tokio",4375 "tokio",
4625 "tokio-rustls",4376 "tokio-rustls 0.24.1",
4626 "webpki-roots 0.25.2",
4627]4377]
46284378
4629[[package]]4379[[package]]
4630name = "iana-time-zone"4380name = "iana-time-zone"
4631version = "0.1.58"4381version = "0.1.60"
4632source = "registry+https://github.com/rust-lang/crates.io-index"4382source = "registry+https://github.com/rust-lang/crates.io-index"
4633checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"4383checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
4634dependencies = [4384dependencies = [
4635 "android_system_properties",4385 "android_system_properties",
4636 "core-foundation-sys",4386 "core-foundation-sys",
4637 "iana-time-zone-haiku",4387 "iana-time-zone-haiku",
4638 "js-sys",4388 "js-sys",
4639 "wasm-bindgen",4389 "wasm-bindgen",
4640 "windows-core",4390 "windows-core 0.52.0",
4641]4391]
46424392
4643[[package]]4393[[package]]
4650]4400]
46514401
4652[[package]]4402[[package]]
4653name = "ident_case"
4654version = "1.0.1"
4655source = "registry+https://github.com/rust-lang/crates.io-index"
4656checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
4657
4658[[package]]
4659name = "idna"4403name = "idna"
4660version = "0.2.3"4404version = "0.2.3"
4661source = "registry+https://github.com/rust-lang/crates.io-index"4405source = "registry+https://github.com/rust-lang/crates.io-index"
46684412
4669[[package]]4413[[package]]
4670name = "idna"4414name = "idna"
4671version = "0.4.0"4415version = "0.5.0"
4672source = "registry+https://github.com/rust-lang/crates.io-index"4416source = "registry+https://github.com/rust-lang/crates.io-index"
4673checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"4417checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
4674dependencies = [4418dependencies = [
4675 "unicode-bidi",4419 "unicode-bidi",
4676 "unicode-normalization",4420 "unicode-normalization",
4692source = "registry+https://github.com/rust-lang/crates.io-index"4436source = "registry+https://github.com/rust-lang/crates.io-index"
4693checksum = "d6b0422c86d7ce0e97169cc42e04ae643caf278874a7a3c87b8150a220dc7e1e"4437checksum = "d6b0422c86d7ce0e97169cc42e04ae643caf278874a7a3c87b8150a220dc7e1e"
4694dependencies = [4438dependencies = [
4695 "async-io 2.2.0",4439 "async-io 2.3.2",
4696 "core-foundation",4440 "core-foundation",
4697 "fnv",4441 "fnv",
4698 "futures",4442 "futures",
47754519
4776[[package]]4520[[package]]
4777name = "indexmap"4521name = "indexmap"
4778version = "2.1.0"4522version = "2.2.6"
4779source = "registry+https://github.com/rust-lang/crates.io-index"4523source = "registry+https://github.com/rust-lang/crates.io-index"
4780checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"4524checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
4781dependencies = [4525dependencies = [
4782 "equivalent",4526 "equivalent",
4783 "hashbrown 0.14.2",4527 "hashbrown 0.14.5",
4784]4528]
47854529
4786[[package]]4530[[package]]
47914535
4792[[package]]4536[[package]]
4793name = "indicatif"4537name = "indicatif"
4794version = "0.17.7"4538version = "0.17.8"
4795source = "registry+https://github.com/rust-lang/crates.io-index"4539source = "registry+https://github.com/rust-lang/crates.io-index"
4796checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25"4540checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3"
4797dependencies = [4541dependencies = [
4798 "console",4542 "console",
4799 "instant",4543 "instant",
48134557
4814[[package]]4558[[package]]
4815name = "instant"4559name = "instant"
4816version = "0.1.12"4560version = "0.1.13"
4817source = "registry+https://github.com/rust-lang/crates.io-index"4561source = "registry+https://github.com/rust-lang/crates.io-index"
4818checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"4562checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
4819dependencies = [4563dependencies = [
4820 "cfg-if",4564 "cfg-if",
4821]4565]
4836]4580]
48374581
4838[[package]]4582[[package]]
4839name = "interceptor"
4840version = "0.8.2"
4841source = "registry+https://github.com/rust-lang/crates.io-index"
4842checksum = "1e8a11ae2da61704edada656798b61c94b35ecac2c58eb955156987d5e6be90b"
4843dependencies = [
4844 "async-trait",
4845 "bytes",
4846 "log",
4847 "rand 0.8.5",
4848 "rtcp",
4849 "rtp",
4850 "thiserror",
4851 "tokio",
4852 "waitgroup",
4853 "webrtc-srtp",
4854 "webrtc-util",
4855]
4856
4857[[package]]
4858name = "io-lifetimes"4583name = "io-lifetimes"
4859version = "1.0.11"4584version = "1.0.11"
4860source = "registry+https://github.com/rust-lang/crates.io-index"4585source = "registry+https://github.com/rust-lang/crates.io-index"
4861checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"4586checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
4862dependencies = [4587dependencies = [
4863 "hermit-abi 0.3.3",4588 "hermit-abi",
4864 "libc",4589 "libc",
4865 "windows-sys 0.48.0",4590 "windows-sys 0.48.0",
4866]4591]
4877source = "registry+https://github.com/rust-lang/crates.io-index"4602source = "registry+https://github.com/rust-lang/crates.io-index"
4878checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"4603checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
4879dependencies = [4604dependencies = [
4880 "socket2 0.5.5",4605 "socket2 0.5.7",
4881 "widestring",4606 "widestring",
4882 "windows-sys 0.48.0",4607 "windows-sys 0.48.0",
4883 "winreg",4608 "winreg",
48914616
4892[[package]]4617[[package]]
4893name = "is-terminal"4618name = "is-terminal"
4894version = "0.4.9"4619version = "0.4.12"
4895source = "registry+https://github.com/rust-lang/crates.io-index"4620source = "registry+https://github.com/rust-lang/crates.io-index"
4896checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"4621checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
4897dependencies = [4622dependencies = [
4898 "hermit-abi 0.3.3",4623 "hermit-abi",
4899 "rustix 0.38.25",4624 "libc",
4900 "windows-sys 0.48.0",4625 "windows-sys 0.52.0",
4901]4626]
49024627
4903[[package]]4628[[package]]
4910]4635]
49114636
4912[[package]]4637[[package]]
4638name = "is_terminal_polyfill"
4639version = "1.70.0"
4640source = "registry+https://github.com/rust-lang/crates.io-index"
4641checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
4642
4643[[package]]
4913name = "itertools"4644name = "itertools"
4914version = "0.10.5"4645version = "0.10.5"
4915source = "registry+https://github.com/rust-lang/crates.io-index"4646source = "registry+https://github.com/rust-lang/crates.io-index"
4928]4659]
49294660
4930[[package]]4661[[package]]
4662name = "itertools"
4663version = "0.12.1"
4664source = "registry+https://github.com/rust-lang/crates.io-index"
4665checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
4666dependencies = [
4667 "either",
4668]
4669
4670[[package]]
4931name = "itoa"4671name = "itoa"
4932version = "1.0.9"4672version = "1.0.11"
4933source = "registry+https://github.com/rust-lang/crates.io-index"4673source = "registry+https://github.com/rust-lang/crates.io-index"
4934checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"4674checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
49354675
4936[[package]]4676[[package]]
4937name = "jobserver"4677name = "jobserver"
4938version = "0.1.27"4678version = "0.1.31"
4939source = "registry+https://github.com/rust-lang/crates.io-index"4679source = "registry+https://github.com/rust-lang/crates.io-index"
4940checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"4680checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
4941dependencies = [4681dependencies = [
4942 "libc",4682 "libc",
4943]4683]
49444684
4945[[package]]4685[[package]]
4946name = "js-sys"4686name = "js-sys"
4947version = "0.3.65"4687version = "0.3.69"
4948source = "registry+https://github.com/rust-lang/crates.io-index"4688source = "registry+https://github.com/rust-lang/crates.io-index"
4949checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"4689checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
4950dependencies = [4690dependencies = [
4951 "wasm-bindgen",4691 "wasm-bindgen",
4952]4692]
49534693
4954[[package]]4694[[package]]
4955name = "jsonrpsee"4695name = "jsonrpsee"
4956version = "0.16.3"4696version = "0.22.5"
4957source = "registry+https://github.com/rust-lang/crates.io-index"4697source = "registry+https://github.com/rust-lang/crates.io-index"
4958checksum = "367a292944c07385839818bb71c8d76611138e2dedb0677d035b8da21d29c78b"4698checksum = "cfdb12a2381ea5b2e68c3469ec604a007b367778cdb14d09612c8069ebd616ad"
4959dependencies = [4699dependencies = [
4960 "jsonrpsee-core",4700 "jsonrpsee-core",
4961 "jsonrpsee-http-client",4701 "jsonrpsee-http-client",
4962 "jsonrpsee-proc-macros",4702 "jsonrpsee-proc-macros",
4963 "jsonrpsee-server",4703 "jsonrpsee-server",
4964 "jsonrpsee-types",4704 "jsonrpsee-types",
4965 "jsonrpsee-ws-client",4705 "jsonrpsee-ws-client",
4706 "tokio",
4966 "tracing",4707 "tracing",
4967]4708]
49684709
4969[[package]]4710[[package]]
4970name = "jsonrpsee-client-transport"4711name = "jsonrpsee-client-transport"
4971version = "0.16.3"4712version = "0.22.5"
4972source = "registry+https://github.com/rust-lang/crates.io-index"4713source = "registry+https://github.com/rust-lang/crates.io-index"
4973checksum = "c8b3815d9f5d5de348e5f162b316dc9cdf4548305ebb15b4eb9328e66cf27d7a"4714checksum = "4978087a58c3ab02efc5b07c5e5e2803024536106fd5506f558db172c889b3aa"
4974dependencies = [4715dependencies = [
4975 "futures-util",4716 "futures-util",
4976 "http",4717 "http",
4977 "jsonrpsee-core",4718 "jsonrpsee-core",
4978 "jsonrpsee-types",
4979 "pin-project",4719 "pin-project",
4980 "rustls-native-certs",4720 "rustls-native-certs 0.7.0",
4721 "rustls-pki-types",
4981 "soketto",4722 "soketto",
4982 "thiserror",4723 "thiserror",
4983 "tokio",4724 "tokio",
4984 "tokio-rustls",4725 "tokio-rustls 0.25.0",
4985 "tokio-util",4726 "tokio-util",
4986 "tracing",4727 "tracing",
4987 "webpki-roots 0.25.2",4728 "url",
4988]4729]
49894730
4990[[package]]4731[[package]]
4991name = "jsonrpsee-core"4732name = "jsonrpsee-core"
4992version = "0.16.3"4733version = "0.22.5"
4993source = "registry+https://github.com/rust-lang/crates.io-index"4734source = "registry+https://github.com/rust-lang/crates.io-index"
4994checksum = "2b5dde66c53d6dcdc8caea1874a45632ec0fcf5b437789f1e45766a1512ce803"4735checksum = "b4b257e1ec385e07b0255dde0b933f948b5c8b8c28d42afda9587c3a967b896d"
4995dependencies = [4736dependencies = [
4996 "anyhow",4737 "anyhow",
4997 "arrayvec 0.7.4",
4998 "async-lock 2.8.0",
4999 "async-trait",4738 "async-trait",
5000 "beef",4739 "beef",
5001 "futures-channel",
5002 "futures-timer",4740 "futures-timer",
5003 "futures-util",4741 "futures-util",
5004 "globset",
5005 "hyper",4742 "hyper",
5006 "jsonrpsee-types",4743 "jsonrpsee-types",
5007 "parking_lot 0.12.1",4744 "parking_lot 0.12.2",
5008 "rand 0.8.5",4745 "pin-project",
4746 "rand",
5009 "rustc-hash",4747 "rustc-hash",
5010 "serde",4748 "serde",
5011 "serde_json",4749 "serde_json",
5012 "soketto",
5013 "thiserror",4750 "thiserror",
5014 "tokio",4751 "tokio",
4752 "tokio-stream",
5015 "tracing",4753 "tracing",
5016]4754]
50174755
5018[[package]]4756[[package]]
5019name = "jsonrpsee-http-client"4757name = "jsonrpsee-http-client"
5020version = "0.16.3"4758version = "0.22.5"
5021source = "registry+https://github.com/rust-lang/crates.io-index"4759source = "registry+https://github.com/rust-lang/crates.io-index"
5022checksum = "7e5f9fabdd5d79344728521bb65e3106b49ec405a78b66fbff073b72b389fa43"4760checksum = "1ccf93fc4a0bfe05d851d37d7c32b7f370fe94336b52a2f0efc5f1981895c2e5"
5023dependencies = [4761dependencies = [
5024 "async-trait",4762 "async-trait",
5025 "hyper",4763 "hyper",
5026 "hyper-rustls",4764 "hyper-rustls",
5027 "jsonrpsee-core",4765 "jsonrpsee-core",
5028 "jsonrpsee-types",4766 "jsonrpsee-types",
5029 "rustc-hash",
5030 "serde",4767 "serde",
5031 "serde_json",4768 "serde_json",
5032 "thiserror",4769 "thiserror",
5033 "tokio",4770 "tokio",
4771 "tower",
5034 "tracing",4772 "tracing",
4773 "url",
5035]4774]
50364775
5037[[package]]4776[[package]]
5038name = "jsonrpsee-proc-macros"4777name = "jsonrpsee-proc-macros"
5039version = "0.16.3"4778version = "0.22.5"
5040source = "registry+https://github.com/rust-lang/crates.io-index"4779source = "registry+https://github.com/rust-lang/crates.io-index"
5041checksum = "44e8ab85614a08792b9bff6c8feee23be78c98d0182d4c622c05256ab553892a"4780checksum = "7d0bb047e79a143b32ea03974a6bf59b62c2a4c5f5d42a381c907a8bbb3f75c0"
5042dependencies = [4781dependencies = [
5043 "heck",4782 "heck 0.4.1",
5044 "proc-macro-crate 1.3.1",4783 "proc-macro-crate 3.1.0",
5045 "proc-macro2",4784 "proc-macro2",
5046 "quote",4785 "quote",
5047 "syn 1.0.109",4786 "syn 2.0.65",
5048]4787]
50494788
5050[[package]]4789[[package]]
5051name = "jsonrpsee-server"4790name = "jsonrpsee-server"
5052version = "0.16.3"4791version = "0.22.5"
5053source = "registry+https://github.com/rust-lang/crates.io-index"4792source = "registry+https://github.com/rust-lang/crates.io-index"
5054checksum = "cf4d945a6008c9b03db3354fb3c83ee02d2faa9f2e755ec1dfb69c3551b8f4ba"4793checksum = "12d8b6a9674422a8572e0b0abb12feeb3f2aeda86528c80d0350c2bd0923ab41"
5055dependencies = [4794dependencies = [
5056 "futures-channel",
5057 "futures-util",4795 "futures-util",
5058 "http",4796 "http",
5059 "hyper",4797 "hyper",
5060 "jsonrpsee-core",4798 "jsonrpsee-core",
5061 "jsonrpsee-types",4799 "jsonrpsee-types",
4800 "pin-project",
4801 "route-recognizer",
5062 "serde",4802 "serde",
5063 "serde_json",4803 "serde_json",
5064 "soketto",4804 "soketto",
4805 "thiserror",
5065 "tokio",4806 "tokio",
5066 "tokio-stream",4807 "tokio-stream",
5067 "tokio-util",4808 "tokio-util",
50714812
5072[[package]]4813[[package]]
5073name = "jsonrpsee-types"4814name = "jsonrpsee-types"
5074version = "0.16.3"4815version = "0.22.5"
5075source = "registry+https://github.com/rust-lang/crates.io-index"4816source = "registry+https://github.com/rust-lang/crates.io-index"
5076checksum = "245ba8e5aa633dd1c1e4fae72bce06e71f42d34c14a2767c6b4d173b57bee5e5"4817checksum = "150d6168405890a7a3231a3c74843f58b8959471f6df76078db2619ddee1d07d"
5077dependencies = [4818dependencies = [
5078 "anyhow",4819 "anyhow",
5079 "beef",4820 "beef",
5080 "serde",4821 "serde",
5081 "serde_json",4822 "serde_json",
5082 "thiserror",4823 "thiserror",
5083 "tracing",
5084]4824]
50854825
5086[[package]]4826[[package]]
5087name = "jsonrpsee-ws-client"4827name = "jsonrpsee-ws-client"
5088version = "0.16.3"4828version = "0.22.5"
5089source = "registry+https://github.com/rust-lang/crates.io-index"4829source = "registry+https://github.com/rust-lang/crates.io-index"
5090checksum = "4e1b3975ed5d73f456478681a417128597acd6a2487855fdb7b4a3d4d195bf5e"4830checksum = "58b9db2dfd5bb1194b0ce921504df9ceae210a345bc2f6c5a61432089bbab070"
5091dependencies = [4831dependencies = [
5092 "http",4832 "http",
5093 "jsonrpsee-client-transport",4833 "jsonrpsee-client-transport",
5094 "jsonrpsee-core",4834 "jsonrpsee-core",
5095 "jsonrpsee-types",4835 "jsonrpsee-types",
4836 "url",
5096]4837]
50974838
5098[[package]]4839[[package]]
5099name = "k256"4840name = "k256"
5100version = "0.13.2"4841version = "0.13.3"
5101source = "registry+https://github.com/rust-lang/crates.io-index"4842source = "registry+https://github.com/rust-lang/crates.io-index"
5102checksum = "3f01b677d82ef7a676aa37e099defd83a28e15687112cafdd112d60236b6115b"4843checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b"
5103dependencies = [4844dependencies = [
5104 "cfg-if",4845 "cfg-if",
5105 "ecdsa 0.16.9",4846 "ecdsa",
5106 "elliptic-curve 0.13.8",4847 "elliptic-curve",
5107 "once_cell",4848 "once_cell",
4849 "serdect",
5108 "sha2 0.10.8",4850 "sha2 0.10.8",
5109]4851]
51104852
5111[[package]]4853[[package]]
5112name = "keccak"4854name = "keccak"
5113version = "0.1.4"4855version = "0.1.5"
5114source = "registry+https://github.com/rust-lang/crates.io-index"4856source = "registry+https://github.com/rust-lang/crates.io-index"
5115checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940"4857checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
5116dependencies = [4858dependencies = [
5117 "cpufeatures",4859 "cpufeatures",
5118]4860]
5139checksum = "bf7a85fe66f9ff9cd74e169fdd2c94c6e1e74c412c99a73b4df3200b5d3760b2"4881checksum = "bf7a85fe66f9ff9cd74e169fdd2c94c6e1e74c412c99a73b4df3200b5d3760b2"
5140dependencies = [4882dependencies = [
5141 "kvdb",4883 "kvdb",
5142 "parking_lot 0.12.1",4884 "parking_lot 0.12.2",
5143]4885]
51444886
5145[[package]]4887[[package]]
5150dependencies = [4892dependencies = [
5151 "kvdb",4893 "kvdb",
5152 "num_cpus",4894 "num_cpus",
5153 "parking_lot 0.12.1",4895 "parking_lot 0.12.2",
5154 "regex",4896 "regex",
5155 "rocksdb",4897 "rocksdb",
5156 "smallvec",4898 "smallvec",
5157]4899]
51584900
5159[[package]]4901[[package]]
5160name = "landlock"4902name = "landlock"
5161version = "0.3.0"4903version = "0.3.1"
5162source = "registry+https://github.com/rust-lang/crates.io-index"4904source = "registry+https://github.com/rust-lang/crates.io-index"
5163checksum = "1530c5b973eeed4ac216af7e24baf5737645a6272e361f1fb95710678b67d9cc"4905checksum = "9baa9eeb6e315942429397e617a190f4fdc696ef1ee0342939d641029cbb4ea7"
5164dependencies = [4906dependencies = [
5165 "enumflags2",4907 "enumflags2",
5166 "libc",4908 "libc",
51814923
5182[[package]]4924[[package]]
5183name = "libc"4925name = "libc"
5184version = "0.2.150"4926version = "0.2.155"
5185source = "registry+https://github.com/rust-lang/crates.io-index"4927source = "registry+https://github.com/rust-lang/crates.io-index"
5186checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"4928checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
51874929
5188[[package]]4930[[package]]
5189name = "libloading"4931name = "libloading"
5190version = "0.7.4"4932version = "0.8.3"
5191source = "registry+https://github.com/rust-lang/crates.io-index"4933source = "registry+https://github.com/rust-lang/crates.io-index"
5192checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"4934checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
5193dependencies = [4935dependencies = [
5194 "cfg-if",4936 "cfg-if",
5195 "winapi",4937 "windows-targets 0.52.5",
5196]4938]
51974939
5198[[package]]4940[[package]]
52034945
5204[[package]]4946[[package]]
5205name = "libp2p"4947name = "libp2p"
5206version = "0.51.3"4948version = "0.51.4"
5207source = "registry+https://github.com/rust-lang/crates.io-index"4949source = "registry+https://github.com/rust-lang/crates.io-index"
5208checksum = "f210d259724eae82005b5c48078619b7745edb7b76de370b03f8ba59ea103097"4950checksum = "f35eae38201a993ece6bdc823292d6abd1bffed1c4d0f4a3517d2bd8e1d917fe"
5209dependencies = [4951dependencies = [
5210 "bytes",4952 "bytes",
5211 "futures",4953 "futures",
5212 "futures-timer",4954 "futures-timer",
5213 "getrandom 0.2.11",4955 "getrandom 0.2.15",
5214 "instant",4956 "instant",
5215 "libp2p-allow-block-list",4957 "libp2p-allow-block-list",
5216 "libp2p-connection-limits",4958 "libp2p-connection-limits",
5228 "libp2p-swarm",4970 "libp2p-swarm",
5229 "libp2p-tcp",4971 "libp2p-tcp",
5230 "libp2p-wasm-ext",4972 "libp2p-wasm-ext",
5231 "libp2p-webrtc",
5232 "libp2p-websocket",4973 "libp2p-websocket",
5233 "libp2p-yamux",4974 "libp2p-yamux",
5234 "multiaddr",4975 "multiaddr",
5273 "libp2p-identity",5014 "libp2p-identity",
5274 "log",5015 "log",
5275 "multiaddr",5016 "multiaddr",
5276 "multihash",5017 "multihash 0.17.0",
5277 "multistream-select",5018 "multistream-select",
5278 "once_cell",5019 "once_cell",
5279 "parking_lot 0.12.1",5020 "parking_lot 0.12.2",
5280 "pin-project",5021 "pin-project",
5281 "quick-protobuf",5022 "quick-protobuf",
5282 "rand 0.8.5",5023 "rand",
5283 "rw-stream-sink",5024 "rw-stream-sink",
5284 "smallvec",5025 "smallvec",
5285 "thiserror",5026 "thiserror",
5296 "futures",5037 "futures",
5297 "libp2p-core",5038 "libp2p-core",
5298 "log",5039 "log",
5299 "parking_lot 0.12.1",5040 "parking_lot 0.12.2",
5300 "smallvec",5041 "smallvec",
5301 "trust-dns-resolver",5042 "trust-dns-resolver",
5302]5043]
5333 "ed25519-dalek",5074 "ed25519-dalek",
5334 "log",5075 "log",
5335 "multiaddr",5076 "multiaddr",
5336 "multihash",5077 "multihash 0.17.0",
5337 "quick-protobuf",5078 "quick-protobuf",
5338 "rand 0.8.5",5079 "rand",
5339 "sha2 0.10.8",5080 "sha2 0.10.8",
5340 "thiserror",5081 "thiserror",
5341 "zeroize",5082 "zeroize",
5360 "libp2p-swarm",5101 "libp2p-swarm",
5361 "log",5102 "log",
5362 "quick-protobuf",5103 "quick-protobuf",
5363 "rand 0.8.5",5104 "rand",
5364 "sha2 0.10.8",5105 "sha2 0.10.8",
5365 "smallvec",5106 "smallvec",
5366 "thiserror",5107 "thiserror",
5382 "libp2p-identity",5123 "libp2p-identity",
5383 "libp2p-swarm",5124 "libp2p-swarm",
5384 "log",5125 "log",
5385 "rand 0.8.5",5126 "rand",
5386 "smallvec",5127 "smallvec",
5387 "socket2 0.4.10",5128 "socket2 0.4.10",
5388 "tokio",5129 "tokio",
5418 "log",5159 "log",
5419 "once_cell",5160 "once_cell",
5420 "quick-protobuf",5161 "quick-protobuf",
5421 "rand 0.8.5",5162 "rand",
5422 "sha2 0.10.8",5163 "sha2 0.10.8",
5423 "snow",5164 "snow",
5424 "static_assertions",5165 "static_assertions",
5440 "libp2p-core",5181 "libp2p-core",
5441 "libp2p-swarm",5182 "libp2p-swarm",
5442 "log",5183 "log",
5443 "rand 0.8.5",5184 "rand",
5444 "void",5185 "void",
5445]5186]
54465187
5458 "libp2p-identity",5199 "libp2p-identity",
5459 "libp2p-tls",5200 "libp2p-tls",
5460 "log",5201 "log",
5461 "parking_lot 0.12.1",5202 "parking_lot 0.12.2",
5462 "quinn-proto",5203 "quinn-proto",
5463 "rand 0.8.5",5204 "rand",
5464 "rustls 0.20.9",5205 "rustls 0.20.9",
5465 "thiserror",5206 "thiserror",
5466 "tokio",5207 "tokio",
5478 "libp2p-core",5219 "libp2p-core",
5479 "libp2p-identity",5220 "libp2p-identity",
5480 "libp2p-swarm",5221 "libp2p-swarm",
5481 "rand 0.8.5",5222 "rand",
5482 "smallvec",5223 "smallvec",
5483]5224]
54845225
5497 "libp2p-identity",5238 "libp2p-identity",
5498 "libp2p-swarm-derive",5239 "libp2p-swarm-derive",
5499 "log",5240 "log",
5500 "rand 0.8.5",5241 "rand",
5501 "smallvec",5242 "smallvec",
5502 "tokio",5243 "tokio",
5503 "void",5244 "void",
5509source = "registry+https://github.com/rust-lang/crates.io-index"5250source = "registry+https://github.com/rust-lang/crates.io-index"
5510checksum = "0fba456131824ab6acd4c7bf61e9c0f0a3014b5fc9868ccb8e10d344594cdc4f"5251checksum = "0fba456131824ab6acd4c7bf61e9c0f0a3014b5fc9868ccb8e10d344594cdc4f"
5511dependencies = [5252dependencies = [
5512 "heck",5253 "heck 0.4.1",
5513 "quote",5254 "quote",
5514 "syn 1.0.109",5255 "syn 1.0.109",
5515]5256]
5540 "futures-rustls",5281 "futures-rustls",
5541 "libp2p-core",5282 "libp2p-core",
5542 "libp2p-identity",5283 "libp2p-identity",
5543 "rcgen 0.10.0",5284 "rcgen",
5544 "ring 0.16.20",5285 "ring 0.16.20",
5545 "rustls 0.20.9",5286 "rustls 0.20.9",
5546 "thiserror",5287 "thiserror",
5547 "webpki 0.22.4",5288 "webpki",
5548 "x509-parser 0.14.0",5289 "x509-parser",
5549 "yasna",5290 "yasna",
5550]5291]
55515292
5564]5305]
55655306
5566[[package]]5307[[package]]
5567name = "libp2p-webrtc"
5568version = "0.4.0-alpha.4"
5569source = "registry+https://github.com/rust-lang/crates.io-index"
5570checksum = "dba48592edbc2f60b4bc7c10d65445b0c3964c07df26fdf493b6880d33be36f8"
5571dependencies = [
5572 "async-trait",
5573 "asynchronous-codec",
5574 "bytes",
5575 "futures",
5576 "futures-timer",
5577 "hex",
5578 "if-watch",
5579 "libp2p-core",
5580 "libp2p-identity",
5581 "libp2p-noise",
5582 "log",
5583 "multihash",
5584 "quick-protobuf",
5585 "quick-protobuf-codec",
5586 "rand 0.8.5",
5587 "rcgen 0.9.3",
5588 "serde",
5589 "stun",
5590 "thiserror",
5591 "tinytemplate",
5592 "tokio",
5593 "tokio-util",
5594 "webrtc",
5595]
5596
5597[[package]]
5598name = "libp2p-websocket"5308name = "libp2p-websocket"
5599version = "0.41.0"5309version = "0.41.0"
5600source = "registry+https://github.com/rust-lang/crates.io-index"5310source = "registry+https://github.com/rust-lang/crates.io-index"
5605 "futures-rustls",5315 "futures-rustls",
5606 "libp2p-core",5316 "libp2p-core",
5607 "log",5317 "log",
5608 "parking_lot 0.12.1",5318 "parking_lot 0.12.2",
5609 "quicksink",5319 "quicksink",
5610 "rw-stream-sink",5320 "rw-stream-sink",
5611 "soketto",5321 "soketto",
5612 "url",5322 "url",
5613 "webpki-roots 0.22.6",5323 "webpki-roots",
5614]5324]
56155325
5616[[package]]5326[[package]]
56285338
5629[[package]]5339[[package]]
5630name = "libredox"5340name = "libredox"
5631version = "0.0.1"5341version = "0.1.3"
5632source = "registry+https://github.com/rust-lang/crates.io-index"5342source = "registry+https://github.com/rust-lang/crates.io-index"
5633checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"5343checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
5634dependencies = [5344dependencies = [
5635 "bitflags 2.4.1",5345 "bitflags 2.5.0",
5636 "libc",5346 "libc",
5637 "redox_syscall 0.4.1",
5638]5347]
56395348
5640[[package]]5349[[package]]
5665 "libsecp256k1-core",5374 "libsecp256k1-core",
5666 "libsecp256k1-gen-ecmult",5375 "libsecp256k1-gen-ecmult",
5667 "libsecp256k1-gen-genmult",5376 "libsecp256k1-gen-genmult",
5668 "rand 0.8.5",5377 "rand",
5669 "serde",5378 "serde",
5670 "sha2 0.9.9",5379 "sha2 0.9.9",
5671 "typenum",5380 "typenum",
5679dependencies = [5388dependencies = [
5680 "crunchy",5389 "crunchy",
5681 "digest 0.9.0",5390 "digest 0.9.0",
5682 "subtle 2.4.1",5391 "subtle 2.5.0",
5683]5392]
56845393
5685[[package]]5394[[package]]
57025411
5703[[package]]5412[[package]]
5704name = "libz-sys"5413name = "libz-sys"
5705version = "1.1.12"5414version = "1.1.16"
5706source = "registry+https://github.com/rust-lang/crates.io-index"5415source = "registry+https://github.com/rust-lang/crates.io-index"
5707checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"5416checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9"
5708dependencies = [5417dependencies = [
5709 "cc",5418 "cc",
5710 "pkg-config",5419 "pkg-config",
57585467
5759[[package]]5468[[package]]
5760name = "linux-raw-sys"5469name = "linux-raw-sys"
5761version = "0.4.11"5470version = "0.4.14"
5762source = "registry+https://github.com/rust-lang/crates.io-index"5471source = "registry+https://github.com/rust-lang/crates.io-index"
5763checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"5472checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
57645473
5765[[package]]5474[[package]]
5766name = "lioness"5475name = "lioness"
57765485
5777[[package]]5486[[package]]
5778name = "lock_api"5487name = "lock_api"
5779version = "0.4.11"5488version = "0.4.12"
5780source = "registry+https://github.com/rust-lang/crates.io-index"5489source = "registry+https://github.com/rust-lang/crates.io-index"
5781checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"5490checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
5782dependencies = [5491dependencies = [
5783 "autocfg",5492 "autocfg",
5784 "scopeguard",5493 "scopeguard",
5785]5494]
57865495
5787[[package]]5496[[package]]
5788name = "log"5497name = "log"
5789version = "0.4.20"5498version = "0.4.21"
5790source = "registry+https://github.com/rust-lang/crates.io-index"5499source = "registry+https://github.com/rust-lang/crates.io-index"
5791checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"5500checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
57925501
5793[[package]]5502[[package]]
5794name = "lru"5503name = "lru"
5852 "macro_magic_core",5561 "macro_magic_core",
5853 "macro_magic_macros",5562 "macro_magic_macros",
5854 "quote",5563 "quote",
5855 "syn 2.0.39",5564 "syn 2.0.65",
5856]5565]
58575566
5858[[package]]5567[[package]]
5862checksum = "468155613a44cfd825f1fb0ffa532b018253920d404e6fca1e8d43155198a46d"5571checksum = "468155613a44cfd825f1fb0ffa532b018253920d404e6fca1e8d43155198a46d"
5863dependencies = [5572dependencies = [
5864 "const-random",5573 "const-random",
5865 "derive-syn-parse",5574 "derive-syn-parse 0.1.5",
5866 "macro_magic_core_macros",5575 "macro_magic_core_macros",
5867 "proc-macro2",5576 "proc-macro2",
5868 "quote",5577 "quote",
5869 "syn 2.0.39",5578 "syn 2.0.65",
5870]5579]
58715580
5872[[package]]5581[[package]]
5877dependencies = [5586dependencies = [
5878 "proc-macro2",5587 "proc-macro2",
5879 "quote",5588 "quote",
5880 "syn 2.0.39",5589 "syn 2.0.65",
5881]5590]
58825591
5883[[package]]5592[[package]]
5888dependencies = [5597dependencies = [
5889 "macro_magic_core",5598 "macro_magic_core",
5890 "quote",5599 "quote",
5891 "syn 2.0.39",5600 "syn 2.0.65",
5892]5601]
58935602
5894[[package]]5603[[package]]
5929]5638]
59305639
5931[[package]]5640[[package]]
5932name = "md-5"
5933version = "0.10.6"
5934source = "registry+https://github.com/rust-lang/crates.io-index"
5935checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
5936dependencies = [
5937 "cfg-if",
5938 "digest 0.10.7",
5939]
5940
5941[[package]]
5942name = "memchr"5641name = "memchr"
5943version = "2.6.4"5642version = "2.7.2"
5944source = "registry+https://github.com/rust-lang/crates.io-index"5643source = "registry+https://github.com/rust-lang/crates.io-index"
5945checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"5644checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
59465645
5947[[package]]5646[[package]]
5948name = "memfd"5647name = "memfd"
5949version = "0.6.4"5648version = "0.6.4"
5950source = "registry+https://github.com/rust-lang/crates.io-index"5649source = "registry+https://github.com/rust-lang/crates.io-index"
5951checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"5650checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
5952dependencies = [5651dependencies = [
5953 "rustix 0.38.25",5652 "rustix 0.38.34",
5954]5653]
59555654
5956[[package]]5655[[package]]
5963]5662]
59645663
5965[[package]]5664[[package]]
5966name = "memoffset"5665name = "memmap2"
5967version = "0.6.5"5666version = "0.9.4"
5968source = "registry+https://github.com/rust-lang/crates.io-index"5667source = "registry+https://github.com/rust-lang/crates.io-index"
5969checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"5668checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
5970dependencies = [5669dependencies = [
5971 "autocfg",5670 "libc",
5972]5671]
59735672
5974[[package]]5673[[package]]
5981]5680]
59825681
5983[[package]]5682[[package]]
5984name = "memoffset"
5985version = "0.9.0"
5986source = "registry+https://github.com/rust-lang/crates.io-index"
5987checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
5988dependencies = [
5989 "autocfg",
5990]
5991
5992[[package]]
5993name = "memory-db"5683name = "memory-db"
5994version = "0.32.0"5684version = "0.32.0"
5995source = "registry+https://github.com/rust-lang/crates.io-index"5685source = "registry+https://github.com/rust-lang/crates.io-index"
5996checksum = "808b50db46293432a45e63bc15ea51e0ab4c0a1647b8eb114e31a3e698dd6fbe"5686checksum = "808b50db46293432a45e63bc15ea51e0ab4c0a1647b8eb114e31a3e698dd6fbe"
5997dependencies = [5687dependencies = [
5998 "hash-db 0.16.0",5688 "hash-db",
5999]5689]
60005690
6001[[package]]5691[[package]]
6002name = "merlin"5692name = "merlin"
6003version = "2.0.1"
6004source = "registry+https://github.com/rust-lang/crates.io-index"
6005checksum = "4e261cf0f8b3c42ded9f7d2bb59dea03aa52bc8a1cbc7482f9fc3fd1229d3b42"
6006dependencies = [
6007 "byteorder",
6008 "keccak",
6009 "rand_core 0.5.1",
6010 "zeroize",
6011]
6012
6013[[package]]
6014name = "merlin"
6015version = "3.0.0"5693version = "3.0.0"
6016source = "registry+https://github.com/rust-lang/crates.io-index"5694source = "registry+https://github.com/rust-lang/crates.io-index"
6017checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"5695checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
6029checksum = "69672161530e8aeca1d1400fbf3f1a1747ff60ea604265a4e906c2442df20532"5707checksum = "69672161530e8aeca1d1400fbf3f1a1747ff60ea604265a4e906c2442df20532"
6030dependencies = [5708dependencies = [
6031 "futures",5709 "futures",
6032 "rand 0.8.5",5710 "rand",
6033 "thrift",5711 "thrift",
6034]5712]
60355713
60415719
6042[[package]]5720[[package]]
6043name = "miniz_oxide"5721name = "miniz_oxide"
6044version = "0.7.1"5722version = "0.7.3"
6045source = "registry+https://github.com/rust-lang/crates.io-index"5723source = "registry+https://github.com/rust-lang/crates.io-index"
6046checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"5724checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae"
6047dependencies = [5725dependencies = [
6048 "adler",5726 "adler",
6049]5727]
60505728
6051[[package]]5729[[package]]
6052name = "mio"5730name = "mio"
6053version = "0.8.9"5731version = "0.8.11"
6054source = "registry+https://github.com/rust-lang/crates.io-index"5732source = "registry+https://github.com/rust-lang/crates.io-index"
6055checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"5733checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
6056dependencies = [5734dependencies = [
6057 "libc",5735 "libc",
6058 "wasi 0.11.0+wasi-snapshot-preview1",5736 "wasi 0.11.0+wasi-snapshot-preview1",
6070 "bitflags 1.3.2",5748 "bitflags 1.3.2",
6071 "blake2 0.10.6",5749 "blake2 0.10.6",
6072 "c2-chacha",5750 "c2-chacha",
6073 "curve25519-dalek 4.1.1",5751 "curve25519-dalek 4.1.2",
6074 "either",5752 "either",
6075 "hashlink",5753 "hashlink",
6076 "lioness",5754 "lioness",
6077 "log",5755 "log",
6078 "parking_lot 0.12.1",5756 "parking_lot 0.12.2",
6079 "rand 0.8.5",5757 "rand",
6080 "rand_chacha 0.3.1",5758 "rand_chacha 0.3.1",
6081 "rand_distr",5759 "rand_distr",
6082 "subtle 2.4.1",5760 "subtle 2.5.0",
6083 "thiserror",5761 "thiserror",
6084 "zeroize",5762 "zeroize",
6085]5763]
60865764
6087[[package]]5765[[package]]
6088name = "mmr-gadget"5766name = "mmr-gadget"
6089version = "26.0.0"5767version = "32.0.0"
6090source = "registry+https://github.com/rust-lang/crates.io-index"5768source = "registry+https://github.com/rust-lang/crates.io-index"
6091checksum = "62eff76fd1de7bad43b0e9e666970ae11ef8c24f49622585362c21ae5470986f"5769checksum = "59b5265ecba4e5fc2c242798fc7795f6bf7ce7c9ab909ecea7df3f8242fa74af"
6092dependencies = [5770dependencies = [
6093 "futures",5771 "futures",
6094 "log",5772 "log",
61065784
6107[[package]]5785[[package]]
6108name = "mmr-rpc"5786name = "mmr-rpc"
6109version = "25.0.0"5787version = "31.0.0"
6110source = "registry+https://github.com/rust-lang/crates.io-index"5788source = "registry+https://github.com/rust-lang/crates.io-index"
6111checksum = "a387f061e68601d268aade23387eaaf6542e82b357ebc1f8d6a95a251b996d30"5789checksum = "dfab619df48bac956375483e4d57e995fbfaec310c86cfbc420e905506b67002"
6112dependencies = [5790dependencies = [
6113 "anyhow",
6114 "jsonrpsee",5791 "jsonrpsee",
6115 "parity-scale-codec",5792 "parity-scale-codec",
6116 "serde",5793 "serde",
6159 "data-encoding",5836 "data-encoding",
6160 "log",5837 "log",
6161 "multibase",5838 "multibase",
6162 "multihash",5839 "multihash 0.17.0",
6163 "percent-encoding",5840 "percent-encoding",
6164 "serde",5841 "serde",
6165 "static_assertions",5842 "static_assertions",
6189 "blake3",5866 "blake3",
6190 "core2",5867 "core2",
6191 "digest 0.10.7",5868 "digest 0.10.7",
6192 "multihash-derive",5869 "multihash-derive 0.8.0",
6193 "sha2 0.10.8",5870 "sha2 0.10.8",
6194 "sha3 0.10.8",5871 "sha3 0.10.8",
6195 "unsigned-varint",5872 "unsigned-varint",
6196]5873]
61975874
6198[[package]]5875[[package]]
5876name = "multihash"
5877version = "0.18.1"
5878source = "registry+https://github.com/rust-lang/crates.io-index"
5879checksum = "cfd8a792c1694c6da4f68db0a9d707c72bd260994da179e6030a5dcee00bb815"
5880dependencies = [
5881 "core2",
5882 "digest 0.10.7",
5883 "multihash-derive 0.8.0",
5884 "sha2 0.10.8",
5885 "unsigned-varint",
5886]
5887
5888[[package]]
5889name = "multihash"
5890version = "0.19.1"
5891source = "registry+https://github.com/rust-lang/crates.io-index"
5892checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492"
5893dependencies = [
5894 "core2",
5895 "unsigned-varint",
5896]
5897
5898[[package]]
5899name = "multihash-codetable"
5900version = "0.1.1"
5901source = "registry+https://github.com/rust-lang/crates.io-index"
5902checksum = "f6d815ecb3c8238d00647f8630ede7060a642c9f704761cd6082cb4028af6935"
5903dependencies = [
5904 "blake2b_simd",
5905 "blake2s_simd",
5906 "blake3",
5907 "core2",
5908 "digest 0.10.7",
5909 "multihash-derive 0.9.0",
5910 "ripemd",
5911 "serde",
5912 "sha1",
5913 "sha2 0.10.8",
5914 "sha3 0.10.8",
5915 "strobe-rs",
5916]
5917
5918[[package]]
6199name = "multihash-derive"5919name = "multihash-derive"
6200version = "0.8.0"5920version = "0.8.0"
6201source = "registry+https://github.com/rust-lang/crates.io-index"5921source = "registry+https://github.com/rust-lang/crates.io-index"
6210]5930]
62115931
6212[[package]]5932[[package]]
5933name = "multihash-derive"
5934version = "0.9.0"
5935source = "registry+https://github.com/rust-lang/crates.io-index"
5936checksum = "890e72cb7396cb99ed98c1246a97b243cc16394470d94e0bc8b0c2c11d84290e"
5937dependencies = [
5938 "core2",
5939 "multihash 0.19.1",
5940 "multihash-derive-impl",
5941]
5942
5943[[package]]
5944name = "multihash-derive-impl"
5945version = "0.1.0"
5946source = "registry+https://github.com/rust-lang/crates.io-index"
5947checksum = "d38685e08adb338659871ecfc6ee47ba9b22dcc8abcf6975d379cc49145c3040"
5948dependencies = [
5949 "proc-macro-crate 1.3.1",
5950 "proc-macro-error",
5951 "proc-macro2",
5952 "quote",
5953 "syn 1.0.109",
5954 "synstructure",
5955]
5956
5957[[package]]
6213name = "multimap"5958name = "multimap"
6214version = "0.8.3"5959version = "0.8.3"
6215source = "registry+https://github.com/rust-lang/crates.io-index"5960source = "registry+https://github.com/rust-lang/crates.io-index"
62315976
6232[[package]]5977[[package]]
6233name = "nalgebra"5978name = "nalgebra"
6234version = "0.32.3"5979version = "0.32.5"
6235source = "registry+https://github.com/rust-lang/crates.io-index"5980source = "registry+https://github.com/rust-lang/crates.io-index"
6236checksum = "307ed9b18cc2423f29e83f84fd23a8e73628727990181f18641a8b5dc2ab1caa"5981checksum = "3ea4908d4f23254adda3daa60ffef0f1ac7b8c3e9a864cf3cc154b251908a2ef"
6237dependencies = [5982dependencies = [
6238 "approx",5983 "approx",
6239 "matrixmultiply",5984 "matrixmultiply",
62586003
6259[[package]]6004[[package]]
6260name = "names"6005name = "names"
6261version = "0.13.0"6006version = "0.14.0"
6262source = "registry+https://github.com/rust-lang/crates.io-index"6007source = "registry+https://github.com/rust-lang/crates.io-index"
6263checksum = "e7d66043b25d4a6cccb23619d10c19c25304b355a7dccd4a8e11423dd2382146"6008checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc"
6264dependencies = [6009dependencies = [
6265 "rand 0.8.5",6010 "rand",
6266]6011]
62676012
6268[[package]]6013[[package]]
63266071
6327[[package]]6072[[package]]
6328name = "netlink-sys"6073name = "netlink-sys"
6329version = "0.8.5"6074version = "0.8.6"
6330source = "registry+https://github.com/rust-lang/crates.io-index"6075source = "registry+https://github.com/rust-lang/crates.io-index"
6331checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411"6076checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307"
6332dependencies = [6077dependencies = [
6333 "bytes",6078 "bytes",
6334 "futures",6079 "futures",
6346 "bitflags 1.3.2",6091 "bitflags 1.3.2",
6347 "cfg-if",6092 "cfg-if",
6348 "libc",6093 "libc",
6349 "memoffset 0.6.5",
6350]6094]
63516095
6352[[package]]6096[[package]]
6097name = "nix"
6098version = "0.27.1"
6099source = "registry+https://github.com/rust-lang/crates.io-index"
6100checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
6101dependencies = [
6102 "bitflags 2.5.0",
6103 "cfg-if",
6104 "libc",
6105]
6106
6107[[package]]
6108name = "no-std-compat"
6109version = "0.4.1"
6110source = "registry+https://github.com/rust-lang/crates.io-index"
6111checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
6112
6113[[package]]
6353name = "no-std-net"6114name = "no-std-net"
6354version = "0.6.0"6115version = "0.6.0"
6355source = "registry+https://github.com/rust-lang/crates.io-index"6116source = "registry+https://github.com/rust-lang/crates.io-index"
6378]6139]
63796140
6380[[package]]6141[[package]]
6142name = "nonzero_ext"
6143version = "0.3.0"
6144source = "registry+https://github.com/rust-lang/crates.io-index"
6145checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
6146
6147[[package]]
6381name = "normalize-line-endings"6148name = "normalize-line-endings"
6382version = "0.3.0"6149version = "0.3.0"
6383source = "registry+https://github.com/rust-lang/crates.io-index"6150source = "registry+https://github.com/rust-lang/crates.io-index"
6384checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"6151checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
63856152
6386[[package]]6153[[package]]
6387name = "num-bigint"6154name = "num-bigint"
6388version = "0.4.4"6155version = "0.4.5"
6389source = "registry+https://github.com/rust-lang/crates.io-index"6156source = "registry+https://github.com/rust-lang/crates.io-index"
6390checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"6157checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7"
6391dependencies = [6158dependencies = [
6392 "autocfg",
6393 "num-integer",6159 "num-integer",
6394 "num-traits",6160 "num-traits",
6395]6161]
63966162
6397[[package]]6163[[package]]
6398name = "num-complex"6164name = "num-complex"
6399version = "0.4.4"6165version = "0.4.6"
6400source = "registry+https://github.com/rust-lang/crates.io-index"6166source = "registry+https://github.com/rust-lang/crates.io-index"
6401checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"6167checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
6402dependencies = [6168dependencies = [
6403 "num-traits",6169 "num-traits",
6404]6170]
64056171
6406[[package]]6172[[package]]
6173name = "num-conv"
6174version = "0.1.0"
6175source = "registry+https://github.com/rust-lang/crates.io-index"
6176checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
6177
6178[[package]]
6407name = "num-format"6179name = "num-format"
6408version = "0.4.4"6180version = "0.4.4"
6409source = "registry+https://github.com/rust-lang/crates.io-index"6181source = "registry+https://github.com/rust-lang/crates.io-index"
64156187
6416[[package]]6188[[package]]
6417name = "num-integer"6189name = "num-integer"
6418version = "0.1.45"6190version = "0.1.46"
6419source = "registry+https://github.com/rust-lang/crates.io-index"6191source = "registry+https://github.com/rust-lang/crates.io-index"
6420checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"6192checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
6421dependencies = [6193dependencies = [
6422 "autocfg",
6423 "num-traits",6194 "num-traits",
6424]6195]
64256196
6426[[package]]6197[[package]]
6427name = "num-rational"6198name = "num-rational"
6428version = "0.4.1"6199version = "0.4.2"
6429source = "registry+https://github.com/rust-lang/crates.io-index"6200source = "registry+https://github.com/rust-lang/crates.io-index"
6430checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"6201checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
6431dependencies = [6202dependencies = [
6432 "autocfg",
6433 "num-bigint",6203 "num-bigint",
6434 "num-integer",6204 "num-integer",
6435 "num-traits",6205 "num-traits",
6436]6206]
64376207
6438[[package]]6208[[package]]
6439name = "num-traits"6209name = "num-traits"
6440version = "0.2.17"6210version = "0.2.19"
6441source = "registry+https://github.com/rust-lang/crates.io-index"6211source = "registry+https://github.com/rust-lang/crates.io-index"
6442checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"6212checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
6443dependencies = [6213dependencies = [
6444 "autocfg",6214 "autocfg",
6445 "libm",6215 "libm",
6451source = "registry+https://github.com/rust-lang/crates.io-index"6221source = "registry+https://github.com/rust-lang/crates.io-index"
6452checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"6222checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
6453dependencies = [6223dependencies = [
6454 "hermit-abi 0.3.3",6224 "hermit-abi",
6455 "libc",6225 "libc",
6456]6226]
64576227
6458[[package]]6228[[package]]
6459name = "num_enum"6229name = "num_enum"
6460version = "0.7.1"6230version = "0.7.2"
6461source = "registry+https://github.com/rust-lang/crates.io-index"6231source = "registry+https://github.com/rust-lang/crates.io-index"
6462checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0"6232checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
6463dependencies = [6233dependencies = [
6464 "num_enum_derive",6234 "num_enum_derive",
6465]6235]
64666236
6467[[package]]6237[[package]]
6468name = "num_enum_derive"6238name = "num_enum_derive"
6469version = "0.7.1"6239version = "0.7.2"
6470source = "registry+https://github.com/rust-lang/crates.io-index"6240source = "registry+https://github.com/rust-lang/crates.io-index"
6471checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e"6241checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
6472dependencies = [6242dependencies = [
6473 "proc-macro-crate 2.0.0",6243 "proc-macro-crate 3.1.0",
6474 "proc-macro2",6244 "proc-macro2",
6475 "quote",6245 "quote",
6476 "syn 2.0.39",6246 "syn 2.0.65",
6477]6247]
64786248
6479[[package]]6249[[package]]
64966266
6497[[package]]6267[[package]]
6498name = "object"6268name = "object"
6499version = "0.32.1"6269version = "0.32.2"
6500source = "registry+https://github.com/rust-lang/crates.io-index"6270source = "registry+https://github.com/rust-lang/crates.io-index"
6501checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"6271checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
6502dependencies = [6272dependencies = [
6503 "memchr",6273 "memchr",
6504]6274]
65056275
6506[[package]]6276[[package]]
6507name = "oid-registry"6277name = "oid-registry"
6508version = "0.4.0"
6509source = "registry+https://github.com/rust-lang/crates.io-index"
6510checksum = "38e20717fa0541f39bd146692035c37bedfa532b3e5071b35761082407546b2a"
6511dependencies = [
6512 "asn1-rs 0.3.1",
6513]
6514
6515[[package]]
6516name = "oid-registry"
6517version = "0.6.1"6278version = "0.6.1"
6518source = "registry+https://github.com/rust-lang/crates.io-index"6279source = "registry+https://github.com/rust-lang/crates.io-index"
6519checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"6280checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"
6520dependencies = [6281dependencies = [
6521 "asn1-rs 0.5.2",6282 "asn1-rs",
6522]6283]
65236284
6524[[package]]6285[[package]]
6525name = "once_cell"6286name = "once_cell"
6526version = "1.18.0"6287version = "1.19.0"
6527source = "registry+https://github.com/rust-lang/crates.io-index"6288source = "registry+https://github.com/rust-lang/crates.io-index"
6528checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"6289checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
65296290
6530[[package]]6291[[package]]
6531name = "opal-runtime"6292name = "opal-runtime"
6567 "pallet-balances",6328 "pallet-balances",
6568 "pallet-balances-adapter",6329 "pallet-balances-adapter",
6569 "pallet-base-fee",6330 "pallet-base-fee",
6570 "pallet-collator-selection",6331 "pallet-collator-selection 5.0.0",
6571 "pallet-collective",6332 "pallet-collective",
6572 "pallet-common",6333 "pallet-common",
6573 "pallet-configuration",6334 "pallet-configuration",
6586 "pallet-inflation",6347 "pallet-inflation",
6587 "pallet-maintenance",6348 "pallet-maintenance",
6588 "pallet-membership",6349 "pallet-membership",
6350 "pallet-message-queue",
6589 "pallet-nonfungible",6351 "pallet-nonfungible",
6590 "pallet-preimage",6352 "pallet-preimage",
6591 "pallet-ranked-collective",6353 "pallet-ranked-collective",
6605 "pallet-unique",6367 "pallet-unique",
6606 "pallet-utility",6368 "pallet-utility",
6607 "pallet-xcm",6369 "pallet-xcm",
6370 "parachains-common",
6608 "parity-scale-codec",6371 "parity-scale-codec",
6609 "polkadot-parachain-primitives",6372 "polkadot-parachain-primitives",
6610 "polkadot-runtime-common",6373 "polkadot-runtime-common",
6617 "sp-block-builder",6380 "sp-block-builder",
6618 "sp-consensus-aura",6381 "sp-consensus-aura",
6619 "sp-core",6382 "sp-core",
6383 "sp-genesis-builder",
6620 "sp-inherents",6384 "sp-inherents",
6621 "sp-io",6385 "sp-io",
6622 "sp-offchain",6386 "sp-offchain",
66466410
6647[[package]]6411[[package]]
6648name = "opaque-debug"6412name = "opaque-debug"
6649version = "0.3.0"6413version = "0.3.1"
6650source = "registry+https://github.com/rust-lang/crates.io-index"6414source = "registry+https://github.com/rust-lang/crates.io-index"
6651checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"6415checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
66526416
6653[[package]]6417[[package]]
6654name = "openssl-probe"6418name = "openssl-probe"
66646428
6665[[package]]6429[[package]]
6666name = "orchestra"6430name = "orchestra"
6667version = "0.3.3"6431version = "0.3.6"
6668source = "registry+https://github.com/rust-lang/crates.io-index"6432source = "registry+https://github.com/rust-lang/crates.io-index"
6669checksum = "46d78e1deb2a8d54fc1f063a544130db4da31dfe4d5d3b493186424910222a76"6433checksum = "92829eef0328a3d1cd22a02c0e51deb92a5362df3e7d21a4e9bdc38934694e66"
6670dependencies = [6434dependencies = [
6671 "async-trait",6435 "async-trait",
6672 "dyn-clonable",6436 "dyn-clonable",
66816445
6682[[package]]6446[[package]]
6683name = "orchestra-proc-macro"6447name = "orchestra-proc-macro"
6684version = "0.3.3"6448version = "0.3.6"
6685source = "registry+https://github.com/rust-lang/crates.io-index"6449source = "registry+https://github.com/rust-lang/crates.io-index"
6686checksum = "d035b1f968d91a826f2e34a9d6d02cb2af5aa7ca39ebd27922d850ab4b2dd2c6"6450checksum = "1344346d5af32c95bbddea91b18a88cc83eac394192d20ef2fc4c40a74332355"
6687dependencies = [6451dependencies = [
6688 "expander 2.0.0",6452 "expander 2.1.0",
6689 "indexmap 2.1.0",6453 "indexmap 2.2.6",
6690 "itertools 0.11.0",6454 "itertools 0.11.0",
6691 "petgraph",6455 "petgraph",
6692 "proc-macro-crate 1.3.1",6456 "proc-macro-crate 3.1.0",
6693 "proc-macro2",6457 "proc-macro2",
6694 "quote",6458 "quote",
6695 "syn 1.0.109",6459 "syn 1.0.109",
67066470
6707[[package]]6471[[package]]
6708name = "orml-traits"6472name = "orml-traits"
6709version = "0.6.1"6473version = "0.9.1"
6710source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=unique-polkadot-v1.3.0#99604b000be6252597cfcb82eee82554f6a07a0e"6474source = "registry+https://github.com/rust-lang/crates.io-index"
6475checksum = "83bbad8c343fdef0b5002b532c7590790807083b47f0b0a0f14a28ee865fbaa0"
6711dependencies = [6476dependencies = [
6712 "frame-support",6477 "frame-support",
6713 "impl-trait-for-tuples",6478 "impl-trait-for-tuples",
67266491
6727[[package]]6492[[package]]
6728name = "orml-utilities"6493name = "orml-utilities"
6729version = "0.6.1"6494version = "0.9.1"
6730source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=unique-polkadot-v1.3.0#99604b000be6252597cfcb82eee82554f6a07a0e"6495source = "registry+https://github.com/rust-lang/crates.io-index"
6496checksum = "fad0231512e11fc4e015fc723cdb7782c24d154ccbbe49ded4be82a426dd960e"
6731dependencies = [6497dependencies = [
6732 "frame-support",6498 "frame-support",
6733 "parity-scale-codec",6499 "parity-scale-codec",
67416507
6742[[package]]6508[[package]]
6743name = "orml-vesting"6509name = "orml-vesting"
6744version = "0.6.1"6510version = "0.9.1"
6745source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=unique-polkadot-v1.3.0#99604b000be6252597cfcb82eee82554f6a07a0e"6511source = "registry+https://github.com/rust-lang/crates.io-index"
6512checksum = "49c3f3693177da8c0d9d44b7b0d1eb4197f202f7302cab5c0ce54ba9d777cd42"
6746dependencies = [6513dependencies = [
6747 "frame-support",6514 "frame-support",
6748 "frame-system",6515 "frame-system",
67566523
6757[[package]]6524[[package]]
6758name = "orml-xcm-support"6525name = "orml-xcm-support"
6759version = "0.6.1"6526version = "0.9.1"
6760source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=unique-polkadot-v1.3.0#99604b000be6252597cfcb82eee82554f6a07a0e"6527source = "registry+https://github.com/rust-lang/crates.io-index"
6528checksum = "78e7a62c91ab5eb34d2257dbe328b0db11ec0e7cda34160413655ca0d936e2cf"
6761dependencies = [6529dependencies = [
6762 "frame-support",6530 "frame-support",
6763 "orml-traits",6531 "orml-traits",
67706538
6771[[package]]6539[[package]]
6772name = "orml-xtokens"6540name = "orml-xtokens"
6773version = "0.6.1"6541version = "0.9.1"
6774source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=unique-polkadot-v1.3.0#99604b000be6252597cfcb82eee82554f6a07a0e"6542source = "registry+https://github.com/rust-lang/crates.io-index"
6543checksum = "d93ce3e8787e8f630b561ec645eb85181d4fa81dd08a76b798fc781b7e83e49f"
6775dependencies = [6544dependencies = [
6776 "cumulus-primitives-core",
6777 "frame-support",6545 "frame-support",
6778 "frame-system",6546 "frame-system",
6779 "log",6547 "log",
6791]6559]
67926560
6793[[package]]6561[[package]]
6794name = "p256"
6795version = "0.11.1"
6796source = "registry+https://github.com/rust-lang/crates.io-index"
6797checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
6798dependencies = [
6799 "ecdsa 0.14.8",
6800 "elliptic-curve 0.12.3",
6801 "sha2 0.10.8",
6802]
6803
6804[[package]]
6805name = "p384"
6806version = "0.11.2"
6807source = "registry+https://github.com/rust-lang/crates.io-index"
6808checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa"
6809dependencies = [
6810 "ecdsa 0.14.8",
6811 "elliptic-curve 0.12.3",
6812 "sha2 0.10.8",
6813]
6814
6815[[package]]
6816name = "pallet-app-promotion"6562name = "pallet-app-promotion"
6817version = "0.2.2"6563version = "0.2.2"
6818dependencies = [6564dependencies = [
6835]6581]
68366582
6837[[package]]6583[[package]]
6584name = "pallet-asset-conversion"
6585version = "13.0.0"
6586source = "registry+https://github.com/rust-lang/crates.io-index"
6587checksum = "4dbd5ff1c6f662d330beb109f6180ee66ed9cd7710cad28f3d15c444556fcce4"
6588dependencies = [
6589 "frame-benchmarking",
6590 "frame-support",
6591 "frame-system",
6592 "parity-scale-codec",
6593 "scale-info",
6594 "sp-api",
6595 "sp-arithmetic",
6596 "sp-core",
6597 "sp-io",
6598 "sp-runtime",
6599 "sp-std",
6600]
6601
6602[[package]]
6838name = "pallet-asset-rate"6603name = "pallet-asset-rate"
6839version = "4.0.0"6604version = "10.0.0"
6840source = "registry+https://github.com/rust-lang/crates.io-index"6605source = "registry+https://github.com/rust-lang/crates.io-index"
6841checksum = "740aebbcfefe8528f56ff8a339f810520a28df3ec159d016ef719aaa9f131af4"6606checksum = "a5a492d16d0f7423cb2d7ca6fa6b4d423a4f4e2f67d2dc92d84d5988fcc33cfb"
6842dependencies = [6607dependencies = [
6843 "frame-benchmarking",6608 "frame-benchmarking",
6844 "frame-support",6609 "frame-support",
6851]6616]
68526617
6853[[package]]6618[[package]]
6619name = "pallet-asset-tx-payment"
6620version = "31.0.0"
6621source = "registry+https://github.com/rust-lang/crates.io-index"
6622checksum = "cfcf34819002b9d6c8d7a28d89207498f63288de6689061fe9c1fb7c55454ff8"
6623dependencies = [
6624 "frame-benchmarking",
6625 "frame-support",
6626 "frame-system",
6627 "pallet-transaction-payment",
6628 "parity-scale-codec",
6629 "scale-info",
6630 "serde",
6631 "sp-core",
6632 "sp-io",
6633 "sp-runtime",
6634 "sp-std",
6635]
6636
6637[[package]]
6638name = "pallet-assets"
6639version = "32.0.0"
6640source = "registry+https://github.com/rust-lang/crates.io-index"
6641checksum = "805543c2ea1f10f14bc767f156b8ec80785345b683eaa59dea84d28745a87ee3"
6642dependencies = [
6643 "frame-benchmarking",
6644 "frame-support",
6645 "frame-system",
6646 "log",
6647 "parity-scale-codec",
6648 "scale-info",
6649 "sp-core",
6650 "sp-runtime",
6651 "sp-std",
6652]
6653
6654[[package]]
6854name = "pallet-aura"6655name = "pallet-aura"
6855version = "24.0.0"6656version = "30.0.0"
6856source = "registry+https://github.com/rust-lang/crates.io-index"6657source = "registry+https://github.com/rust-lang/crates.io-index"
6857checksum = "04fbef67cf62445b7fd8e68241e6b71d9fb8c77abb3d52259eebf525a4cd5586"6658checksum = "e3f1176f435a94b510b99bc2aaaa84788d60f8c5352c5f34f165b37523e448a1"
6858dependencies = [6659dependencies = [
6859 "frame-support",6660 "frame-support",
6860 "frame-system",6661 "frame-system",
68706671
6871[[package]]6672[[package]]
6872name = "pallet-authority-discovery"6673name = "pallet-authority-discovery"
6873version = "25.0.0"6674version = "31.0.1"
6874source = "registry+https://github.com/rust-lang/crates.io-index"6675source = "registry+https://github.com/rust-lang/crates.io-index"
6875checksum = "fda272a66bbf1602579efcede67606ac43cda6d462ad551c527d8cadc871813d"6676checksum = "6a9c124d86227da7ae9073cc2984c0384c7830f7fa61450c0990c56837335da2"
6876dependencies = [6677dependencies = [
6877 "frame-support",6678 "frame-support",
6878 "frame-system",6679 "frame-system",
68876688
6888[[package]]6689[[package]]
6889name = "pallet-authorship"6690name = "pallet-authorship"
6890version = "25.0.0"6691version = "31.0.0"
6891source = "registry+https://github.com/rust-lang/crates.io-index"6692source = "registry+https://github.com/rust-lang/crates.io-index"
6892checksum = "2d38eab59f7d15fe43c81fc3cd92f4c1f895ca6d0efb74fc2a6d6d7d3d34d413"6693checksum = "8168348a94c479b7da001b3f0d1100210704eda8ce72c58aac456f1d866d7d67"
6893dependencies = [6694dependencies = [
6894 "frame-support",6695 "frame-support",
6895 "frame-system",6696 "frame-system",
69026703
6903[[package]]6704[[package]]
6904name = "pallet-babe"6705name = "pallet-babe"
6905version = "25.0.0"6706version = "31.0.0"
6906source = "registry+https://github.com/rust-lang/crates.io-index"6707source = "registry+https://github.com/rust-lang/crates.io-index"
6907checksum = "6b12430ca4b79b27231acb1ff3f99d33d6503fbeba40bfc8380e42d59b6d52b0"6708checksum = "37353294183655c76cdc56ffc5edf777b1e2275af59ae73c8aa255b6d941b362"
6908dependencies = [6709dependencies = [
6909 "frame-benchmarking",6710 "frame-benchmarking",
6910 "frame-support",6711 "frame-support",
69276728
6928[[package]]6729[[package]]
6929name = "pallet-bags-list"6730name = "pallet-bags-list"
6930version = "24.0.0"6731version = "30.0.0"
6931source = "registry+https://github.com/rust-lang/crates.io-index"6732source = "registry+https://github.com/rust-lang/crates.io-index"
6932checksum = "5d49c4448e51a5c64d63a4263aebeb2dfb90dabb48746e178b337fb7f533d45f"6733checksum = "dc3f838e96a2cbd06731beb72b755ccc5bd05bcc696717a1148bdddfe9062e93"
6933dependencies = [6734dependencies = [
6934 "aquamarine",6735 "aquamarine 0.5.0",
6935 "docify",6736 "docify",
6936 "frame-benchmarking",6737 "frame-benchmarking",
6937 "frame-election-provider-support",6738 "frame-election-provider-support",
69506751
6951[[package]]6752[[package]]
6952name = "pallet-balances"6753name = "pallet-balances"
6953version = "25.0.0"6754version = "31.0.0"
6954source = "registry+https://github.com/rust-lang/crates.io-index"6755source = "registry+https://github.com/rust-lang/crates.io-index"
6955checksum = "9de2915b425ae77d63ba25c194780599b7be25307454a138cfb316c16d001e68"6756checksum = "d3565d525dd88e07da5b2309cd6ffe7447ddc5406eeaa2cb26157d35787a69a7"
6956dependencies = [6757dependencies = [
6758 "docify",
6957 "frame-benchmarking",6759 "frame-benchmarking",
6958 "frame-support",6760 "frame-support",
6959 "frame-system",6761 "frame-system",
6988[[package]]6790[[package]]
6989name = "pallet-base-fee"6791name = "pallet-base-fee"
6990version = "1.0.0"6792version = "1.0.0"
6991source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"6793source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
6992dependencies = [6794dependencies = [
6993 "fp-evm",6795 "fp-evm",
6994 "frame-support",6796 "frame-support",
70016803
7002[[package]]6804[[package]]
7003name = "pallet-beefy"6805name = "pallet-beefy"
7004version = "25.0.0"6806version = "31.0.0"
7005source = "registry+https://github.com/rust-lang/crates.io-index"6807source = "registry+https://github.com/rust-lang/crates.io-index"
7006checksum = "8563fce9fdb0e557015c0b58ed7ea7d5c1a4a1ddb1d27bf56e040d6bbf5c79e9"6808checksum = "a1371a2f241fd33b794b0e824f28be9de76e7544a2602421e1c4a58cb0eccef6"
7007dependencies = [6809dependencies = [
7008 "frame-support",6810 "frame-support",
7009 "frame-system",6811 "frame-system",
70226824
7023[[package]]6825[[package]]
7024name = "pallet-beefy-mmr"6826name = "pallet-beefy-mmr"
7025version = "25.0.0"6827version = "31.0.0"
7026source = "registry+https://github.com/rust-lang/crates.io-index"6828source = "registry+https://github.com/rust-lang/crates.io-index"
7027checksum = "ee3ed75c348ba23064cea40dab623719ef348bfe67ea39f195f82e2e7a7d0115"6829checksum = "c32a1e978b043f4bf7cfcdb130a51dda4dbade1de5b85d2d634082edbc08f9cb"
7028dependencies = [6830dependencies = [
7029 "array-bytes 6.2.0",6831 "array-bytes 6.2.3",
7030 "binary-merkle-tree",6832 "binary-merkle-tree",
7031 "frame-support",6833 "frame-support",
7032 "frame-system",6834 "frame-system",
70486850
7049[[package]]6851[[package]]
7050name = "pallet-bounties"6852name = "pallet-bounties"
7051version = "24.0.0"6853version = "30.0.0"
7052source = "registry+https://github.com/rust-lang/crates.io-index"6854source = "registry+https://github.com/rust-lang/crates.io-index"
7053checksum = "74c0fb83c88f217e5bfe07a69a6d8a6c32d01241159ab81705ba5d4c3e24aaab"6855checksum = "e23273ffc30d94c725cb37ac1f45a40e308d8e8bfab251a299d4ed1fa9e8e46f"
7054dependencies = [6856dependencies = [
7055 "frame-benchmarking",6857 "frame-benchmarking",
7056 "frame-support",6858 "frame-support",
7066]6868]
70676869
7068[[package]]6870[[package]]
6871name = "pallet-broker"
6872version = "0.9.0"
6873source = "registry+https://github.com/rust-lang/crates.io-index"
6874checksum = "c1b05f01c3d279cd661eba2c391844bac03fa5f979b9de821e6eb1cbe6069dfc"
6875dependencies = [
6876 "bitvec",
6877 "frame-benchmarking",
6878 "frame-support",
6879 "frame-system",
6880 "parity-scale-codec",
6881 "scale-info",
6882 "sp-arithmetic",
6883 "sp-core",
6884 "sp-runtime",
6885 "sp-std",
6886]
6887
6888[[package]]
7069name = "pallet-child-bounties"6889name = "pallet-child-bounties"
7070version = "24.0.0"6890version = "30.0.0"
7071source = "registry+https://github.com/rust-lang/crates.io-index"6891source = "registry+https://github.com/rust-lang/crates.io-index"
7072checksum = "2246ce705aee37f9b6ad818e3646910d31ef4191e1c234bff054a710ef8d8a38"6892checksum = "46f1f5d1f6420b72e7fff2fa9146f1f13f68e3a3d293b421d9b9d34ad0dfa134"
7073dependencies = [6893dependencies = [
7074 "frame-benchmarking",6894 "frame-benchmarking",
7075 "frame-support",6895 "frame-support",
7099 "pallet-session",6919 "pallet-session",
7100 "pallet-timestamp",6920 "pallet-timestamp",
7101 "parity-scale-codec",6921 "parity-scale-codec",
7102 "rand 0.8.5",6922 "rand",
7103 "scale-info",6923 "scale-info",
7104 "serde",6924 "serde",
7105 "sp-consensus-aura",6925 "sp-consensus-aura",
7112]6932]
71136933
7114[[package]]6934[[package]]
6935name = "pallet-collator-selection"
6936version = "12.0.1"
6937source = "registry+https://github.com/rust-lang/crates.io-index"
6938checksum = "26edc27ed73c658e6f3d37b4cc8822be3f293e1f0dc58830b42c272781ac8a44"
6939dependencies = [
6940 "frame-benchmarking",
6941 "frame-support",
6942 "frame-system",
6943 "log",
6944 "pallet-authorship",
6945 "pallet-balances",
6946 "pallet-session",
6947 "parity-scale-codec",
6948 "rand",
6949 "scale-info",
6950 "sp-runtime",
6951 "sp-staking",
6952 "sp-std",
6953]
6954
6955[[package]]
7115name = "pallet-collective"6956name = "pallet-collective"
7116version = "25.0.0"6957version = "31.0.0"
7117source = "registry+https://github.com/rust-lang/crates.io-index"6958source = "registry+https://github.com/rust-lang/crates.io-index"
7118checksum = "dddb120b5ee520146617a8c49b4d4c980ba9188918d43085539bf78815e7ec1d"6959checksum = "241ffbf21673fca6bf8caa2ee35088a18704b95d174e32280cb7569f58af7c61"
7119dependencies = [6960dependencies = [
7120 "frame-benchmarking",6961 "frame-benchmarking",
7121 "frame-support",6962 "frame-support",
71757016
7176[[package]]7017[[package]]
7177name = "pallet-conviction-voting"7018name = "pallet-conviction-voting"
7178version = "25.0.0"7019version = "31.0.0"
7179source = "registry+https://github.com/rust-lang/crates.io-index"7020source = "registry+https://github.com/rust-lang/crates.io-index"
7180checksum = "1c8ff7512a377b708f71772e5169550cebc8f74bc8c26553015698eaa0975356"7021checksum = "f51344679f168ecc258bf52d0a9578f6c3043e2aff4b9147004c7b8429460370"
7181dependencies = [7022dependencies = [
7182 "assert_matches",7023 "assert_matches",
7183 "frame-benchmarking",7024 "frame-benchmarking",
71937034
7194[[package]]7035[[package]]
7195name = "pallet-democracy"7036name = "pallet-democracy"
7196version = "25.0.0"7037version = "31.0.0"
7197source = "registry+https://github.com/rust-lang/crates.io-index"7038source = "registry+https://github.com/rust-lang/crates.io-index"
7198checksum = "ed9f24ad18db2eeae0f03ba1743a82aaf300e0bbd6cdcb1119b0da93eef3d77f"7039checksum = "1603fc7a149fd1f8bc43349035a69370a024acc95d6a10a37d3b9e1f22cc58ab"
7199dependencies = [7040dependencies = [
7200 "frame-benchmarking",7041 "frame-benchmarking",
7201 "frame-support",7042 "frame-support",
72127053
7213[[package]]7054[[package]]
7214name = "pallet-election-provider-multi-phase"7055name = "pallet-election-provider-multi-phase"
7215version = "24.0.0"7056version = "30.0.0"
7216source = "registry+https://github.com/rust-lang/crates.io-index"7057source = "registry+https://github.com/rust-lang/crates.io-index"
7217checksum = "481178ef558a9409d9c12fc01279b517e3a0a7797664e89761447dba3a182ce6"7058checksum = "da78b2feeba1286b66ac20cbfbcd321fe9d1d2bc15e9e31292023e9a66dbb819"
7218dependencies = [7059dependencies = [
7219 "frame-benchmarking",7060 "frame-benchmarking",
7220 "frame-election-provider-support",7061 "frame-election-provider-support",
7223 "log",7064 "log",
7224 "pallet-election-provider-support-benchmarking",7065 "pallet-election-provider-support-benchmarking",
7225 "parity-scale-codec",7066 "parity-scale-codec",
7226 "rand 0.8.5",7067 "rand",
7227 "scale-info",7068 "scale-info",
7228 "sp-arithmetic",7069 "sp-arithmetic",
7229 "sp-core",7070 "sp-core",
72367077
7237[[package]]7078[[package]]
7238name = "pallet-election-provider-support-benchmarking"7079name = "pallet-election-provider-support-benchmarking"
7239version = "24.0.0"7080version = "30.0.0"
7240source = "registry+https://github.com/rust-lang/crates.io-index"7081source = "registry+https://github.com/rust-lang/crates.io-index"
7241checksum = "b5ab6413ec88b64acf849a202795c67940dc3bcc846ce03bd0893b90e2119ecf"7082checksum = "e1b20f98b9a1497a59d2b0eca0051c5ada89851bf29b26fda3a2cfe934a32116"
7242dependencies = [7083dependencies = [
7243 "frame-benchmarking",7084 "frame-benchmarking",
7244 "frame-election-provider-support",7085 "frame-election-provider-support",
72517092
7252[[package]]7093[[package]]
7253name = "pallet-elections-phragmen"7094name = "pallet-elections-phragmen"
7254version = "26.0.0"7095version = "32.0.0"
7255source = "registry+https://github.com/rust-lang/crates.io-index"7096source = "registry+https://github.com/rust-lang/crates.io-index"
7256checksum = "021da1d28b604b3654f895987dcb1ccb47d73102b31bc84c8f784bed261f01d8"7097checksum = "de22659bdd6190e4f94936f0d338e67dde80e537fe22c30eb96ceab9f0d9914f"
7257dependencies = [7098dependencies = [
7258 "frame-benchmarking",7099 "frame-benchmarking",
7259 "frame-support",7100 "frame-support",
7272[[package]]7113[[package]]
7273name = "pallet-ethereum"7114name = "pallet-ethereum"
7274version = "4.0.0-dev"7115version = "4.0.0-dev"
7275source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"7116source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
7276dependencies = [7117dependencies = [
7277 "ethereum",7118 "ethereum",
7278 "ethereum-types",7119 "ethereum-types",
7295[[package]]7136[[package]]
7296name = "pallet-evm"7137name = "pallet-evm"
7297version = "6.0.0-dev"7138version = "6.0.0-dev"
7298source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"7139source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
7299dependencies = [7140dependencies = [
7300 "environmental",7141 "environmental",
7301 "evm",7142 "evm",
7304 "frame-benchmarking",7145 "frame-benchmarking",
7305 "frame-support",7146 "frame-support",
7306 "frame-system",7147 "frame-system",
7307 "hash-db 0.16.0",7148 "hash-db",
7308 "hex",7149 "hex",
7309 "hex-literal",7150 "hex-literal",
7310 "impl-trait-for-tuples",7151 "impl-trait-for-tuples",
7377[[package]]7218[[package]]
7378name = "pallet-evm-precompile-simple"7219name = "pallet-evm-precompile-simple"
7379version = "2.0.0-dev"7220version = "2.0.0-dev"
7380source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.3.0#2b684850edc955bcd3c3943216e451364ff0afa3"7221source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.9.0#7656405def86265ed578133a4dd628112dbb795d"
7381dependencies = [7222dependencies = [
7382 "fp-evm",7223 "fp-evm",
7383 "ripemd",7224 "ripemd",
74027243
7403[[package]]7244[[package]]
7404name = "pallet-fast-unstake"7245name = "pallet-fast-unstake"
7405version = "24.0.0"7246version = "30.0.0"
7406source = "registry+https://github.com/rust-lang/crates.io-index"7247source = "registry+https://github.com/rust-lang/crates.io-index"
7407checksum = "05634a197738c999a3032393916182fedccce13cb063fc330ee9bf810cd53b49"7248checksum = "24717c932bd68705e3a5b6b9311a31e57b354274de1c373feb9ca920f6a3e439"
7408dependencies = [7249dependencies = [
7409 "docify",7250 "docify",
7410 "frame-benchmarking",7251 "frame-benchmarking",
74737314
7474[[package]]7315[[package]]
7475name = "pallet-grandpa"7316name = "pallet-grandpa"
7476version = "25.0.0"7317version = "31.0.0"
7477source = "registry+https://github.com/rust-lang/crates.io-index"7318source = "registry+https://github.com/rust-lang/crates.io-index"
7478checksum = "b87c7f4cd94a526054dfebf7a84fbcaf6385033defa246ad83e321e71f8c5a92"7319checksum = "d9f8a78e4f5e2399596fa918f22e588e034d78c13a46925313abb4b152a9d919"
7479dependencies = [7320dependencies = [
7480 "frame-benchmarking",7321 "frame-benchmarking",
7481 "frame-support",7322 "frame-support",
75147355
7515[[package]]7356[[package]]
7516name = "pallet-identity"7357name = "pallet-identity"
7517version = "25.0.0"7358version = "31.0.0"
7518source = "registry+https://github.com/rust-lang/crates.io-index"7359source = "registry+https://github.com/rust-lang/crates.io-index"
7519checksum = "735bf6c19d30299e2d448797170a67d41c6a8ba593fb3a71ce4e11d3b85c60e9"7360checksum = "33bca13843a11add3909a8c4bffae547ba9fa3a11c07ac2f8afd670acd85cb15"
7520dependencies = [7361dependencies = [
7521 "enumflags2",7362 "enumflags2",
7522 "frame-benchmarking",7363 "frame-benchmarking",
7523 "frame-support",7364 "frame-support",
7524 "frame-system",7365 "frame-system",
7366 "log",
7525 "parity-scale-codec",7367 "parity-scale-codec",
7526 "scale-info",7368 "scale-info",
7527 "sp-io",7369 "sp-io",
75317373
7532[[package]]7374[[package]]
7533name = "pallet-im-online"7375name = "pallet-im-online"
7534version = "24.0.0"7376version = "30.0.0"
7535source = "registry+https://github.com/rust-lang/crates.io-index"7377source = "registry+https://github.com/rust-lang/crates.io-index"
7536checksum = "59eb1c68cc6b4700ad1d2a81ba847ff7b37406aa0326b7716825155d3f985762"7378checksum = "39cb6cbcef9e9ab68a5e79429a1f32ebc8114e4c9c2c2b0356c1db212e3e0bc2"
7537dependencies = [7379dependencies = [
7538 "frame-benchmarking",7380 "frame-benchmarking",
7539 "frame-support",7381 "frame-support",
75527394
7553[[package]]7395[[package]]
7554name = "pallet-indices"7396name = "pallet-indices"
7555version = "25.0.0"7397version = "31.0.0"
7556source = "registry+https://github.com/rust-lang/crates.io-index"7398source = "registry+https://github.com/rust-lang/crates.io-index"
7557checksum = "0893ae7f2211010e92bf57fe31f18e2223a2f97f6d6393aa7192e283ec520beb"7399checksum = "a3e23345544e9b6635d296195c355a768c82a9e1d82138378ef5b80102828664"
7558dependencies = [7400dependencies = [
7559 "frame-benchmarking",7401 "frame-benchmarking",
7560 "frame-support",7402 "frame-support",
76007442
7601[[package]]7443[[package]]
7602name = "pallet-membership"7444name = "pallet-membership"
7603version = "25.0.0"7445version = "31.0.0"
7604source = "registry+https://github.com/rust-lang/crates.io-index"7446source = "registry+https://github.com/rust-lang/crates.io-index"
7605checksum = "2e1504034588eb733f8ce98b77757e9a7390662313aa133ef1e3b9fbb94359c7"7447checksum = "b8bb958b03ec28b6e7e97abfca28acb1c1d8e91ad5194537f6550c348fc60f54"
7606dependencies = [7448dependencies = [
7607 "frame-benchmarking",7449 "frame-benchmarking",
7608 "frame-support",7450 "frame-support",
76187460
7619[[package]]7461[[package]]
7620name = "pallet-message-queue"7462name = "pallet-message-queue"
7621version = "28.0.0"7463version = "34.0.0"
7622source = "registry+https://github.com/rust-lang/crates.io-index"7464source = "registry+https://github.com/rust-lang/crates.io-index"
7623checksum = "0776bf51d03bd746159063fa1357234feb85114273d40ef3aa3efba65d091eb4"7465checksum = "063b2e7912fbbe67985e68e460f2f242b90de48a63a1f03dd2ae022154ba25e9"
7624dependencies = [7466dependencies = [
7467 "environmental",
7625 "frame-benchmarking",7468 "frame-benchmarking",
7626 "frame-support",7469 "frame-support",
7627 "frame-system",7470 "frame-system",
76387481
7639[[package]]7482[[package]]
7640name = "pallet-mmr"7483name = "pallet-mmr"
7641version = "24.0.0"7484version = "30.0.0"
7642source = "registry+https://github.com/rust-lang/crates.io-index"7485source = "registry+https://github.com/rust-lang/crates.io-index"
7643checksum = "e2b9789cac80b48e9427724d0b400f984fb844fc711fc2dd2d0cdccdedda7169"7486checksum = "44f5356b869f71205d53ed686846075ebb7d67824f334289ebbe6c61766c90c6"
7644dependencies = [7487dependencies = [
7645 "frame-benchmarking",7488 "frame-benchmarking",
7646 "frame-support",7489 "frame-support",
76577500
7658[[package]]7501[[package]]
7659name = "pallet-multisig"7502name = "pallet-multisig"
7660version = "25.0.0"7503version = "31.0.0"
7661source = "registry+https://github.com/rust-lang/crates.io-index"7504source = "registry+https://github.com/rust-lang/crates.io-index"
7662checksum = "fea2785a0bfb1884a8283bf65010bb7189c8fce958ced9947a8c71c148ef199f"7505checksum = "284ff5c6675ac6438c2f4a20d75627ad4b6d7c78bb5fd911198e34ce48bc7cf2"
7663dependencies = [7506dependencies = [
7664 "frame-benchmarking",7507 "frame-benchmarking",
7665 "frame-support",7508 "frame-support",
76747517
7675[[package]]7518[[package]]
7676name = "pallet-nis"7519name = "pallet-nis"
7677version = "25.0.0"7520version = "31.0.0"
7678source = "registry+https://github.com/rust-lang/crates.io-index"7521source = "registry+https://github.com/rust-lang/crates.io-index"
7679checksum = "7aa7ec891b7f1801a405095a2ad2c70eef94d2abe86792eee54794de23cbd035"7522checksum = "948a11c933d345bfd7750e92b5650656e4d967f4fbcf7e36200ef7063985b9c6"
7680dependencies = [7523dependencies = [
7681 "frame-benchmarking",7524 "frame-benchmarking",
7682 "frame-support",7525 "frame-support",
76917534
7692[[package]]7535[[package]]
7693name = "pallet-nomination-pools"7536name = "pallet-nomination-pools"
7694version = "22.0.0"7537version = "28.0.0"
7695source = "registry+https://github.com/rust-lang/crates.io-index"7538source = "registry+https://github.com/rust-lang/crates.io-index"
7696checksum = "1896f33fff0c41934532fb492078d78b784f301ddd81e5041dd8e8279e652c49"7539checksum = "781148c86c07aca84f471d06b449d7098e94d76bc08dd7e69bcb2572264d1b20"
7697dependencies = [7540dependencies = [
7698 "frame-support",7541 "frame-support",
7699 "frame-system",7542 "frame-system",
77117554
7712[[package]]7555[[package]]
7713name = "pallet-nomination-pools-benchmarking"7556name = "pallet-nomination-pools-benchmarking"
7714version = "23.0.0"7557version = "29.0.0"
7715source = "registry+https://github.com/rust-lang/crates.io-index"7558source = "registry+https://github.com/rust-lang/crates.io-index"
7716checksum = "b27cbf4a47cc79862d254f16b38c68fd2dda087ce58e7c0021859d89718e865a"7559checksum = "d267d96d52b7bb17b5bd1333375f86a58595a457218ddc82ddec32c194806713"
7717dependencies = [7560dependencies = [
7718 "frame-benchmarking",7561 "frame-benchmarking",
7719 "frame-election-provider-support",7562 "frame-election-provider-support",
77327575
7733[[package]]7576[[package]]
7734name = "pallet-nomination-pools-runtime-api"7577name = "pallet-nomination-pools-runtime-api"
7735version = "20.0.0"7578version = "26.0.0"
7736source = "registry+https://github.com/rust-lang/crates.io-index"7579source = "registry+https://github.com/rust-lang/crates.io-index"
7737checksum = "65c256cc530a19ff614f2af9b5c95ae9aa777a2bf1542aa455ae65e842f8c924"7580checksum = "cc2055f407f235071239494548d86f4f6d5c6ec24968fd8dcac553e00e08588d"
7738dependencies = [7581dependencies = [
7739 "pallet-nomination-pools",7582 "pallet-nomination-pools",
7740 "parity-scale-codec",7583 "parity-scale-codec",
77657608
7766[[package]]7609[[package]]
7767name = "pallet-offences"7610name = "pallet-offences"
7768version = "24.0.0"7611version = "30.0.0"
7769source = "registry+https://github.com/rust-lang/crates.io-index"7612source = "registry+https://github.com/rust-lang/crates.io-index"
7770checksum = "f3fd14c02ed4b689652826aa93284aada5a2cf859df3cc34ad88b2fd410a8c50"7613checksum = "8f42b47ac29f107f30213d259cc0f73e1270743b66909fc7c9079d691a891b5a"
7771dependencies = [7614dependencies = [
7772 "frame-support",7615 "frame-support",
7773 "frame-system",7616 "frame-system",
77837626
7784[[package]]7627[[package]]
7785name = "pallet-offences-benchmarking"7628name = "pallet-offences-benchmarking"
7786version = "25.0.0"7629version = "31.0.0"
7787source = "registry+https://github.com/rust-lang/crates.io-index"7630source = "registry+https://github.com/rust-lang/crates.io-index"
7788checksum = "b1b3ae77cfb16f0495372853d42a44e34ab7b183bd8996a8cee91715f783ff49"7631checksum = "2d0745d6fd98a6ef7b19139470a28f9b9530b425c03dc02fbd773c989fe0a96b"
7789dependencies = [7632dependencies = [
7790 "frame-benchmarking",7633 "frame-benchmarking",
7791 "frame-election-provider-support",7634 "frame-election-provider-support",
78087651
7809[[package]]7652[[package]]
7810name = "pallet-preimage"7653name = "pallet-preimage"
7811version = "25.0.0"7654version = "31.0.0"
7812source = "registry+https://github.com/rust-lang/crates.io-index"7655source = "registry+https://github.com/rust-lang/crates.io-index"
7813checksum = "a1ed40405c758b52375cfc75aac74f10ff9bb9480569e5cfca42682e2db6c387"7656checksum = "6d01a900fe79c5f0762ccc29a11dda2799830ce233aa5384b2f13d9cc28e2e70"
7814dependencies = [7657dependencies = [
7815 "frame-benchmarking",7658 "frame-benchmarking",
7816 "frame-support",7659 "frame-support",
78267669
7827[[package]]7670[[package]]
7828name = "pallet-proxy"7671name = "pallet-proxy"
7829version = "25.0.0"7672version = "31.0.0"
7830source = "registry+https://github.com/rust-lang/crates.io-index"7673source = "registry+https://github.com/rust-lang/crates.io-index"
7831checksum = "0fbc0b550f5cbbad51f9daf795cc7046d40bbff256dae8d6072fd710ab40fd3a"7674checksum = "61918227f99ed2b322bf9050337773c8a40908b2f6a800352a20485e5ba0ef1c"
7832dependencies = [7675dependencies = [
7833 "frame-benchmarking",7676 "frame-benchmarking",
7834 "frame-support",7677 "frame-support",
78427685
7843[[package]]7686[[package]]
7844name = "pallet-ranked-collective"7687name = "pallet-ranked-collective"
7845version = "25.0.0"7688version = "31.0.0"
7846source = "registry+https://github.com/rust-lang/crates.io-index"7689source = "registry+https://github.com/rust-lang/crates.io-index"
7847checksum = "8181da7fd6b9adf4f8641c5bcb156cd209e3226eea87ee9f9b1ac41f8e37c714"7690checksum = "47fbdfc5da0a70c788be3ea594153c825b4e79ae6a83499f38c251cdb5a726c0"
7848dependencies = [7691dependencies = [
7849 "frame-benchmarking",7692 "frame-benchmarking",
7850 "frame-support",7693 "frame-support",
7851 "frame-system",7694 "frame-system",
7695 "impl-trait-for-tuples",
7852 "log",7696 "log",
7853 "parity-scale-codec",7697 "parity-scale-codec",
7854 "scale-info",7698 "scale-info",
78617705
7862[[package]]7706[[package]]
7863name = "pallet-recovery"7707name = "pallet-recovery"
7864version = "25.0.0"7708version = "31.0.0"
7865source = "registry+https://github.com/rust-lang/crates.io-index"7709source = "registry+https://github.com/rust-lang/crates.io-index"
7866checksum = "889fddd16cfdea09c2ae4dc8e9f67a1ec4b8ac680412cffb772fa572489ec687"7710checksum = "7cf473e4b04cd9ba40ed8963a03499de0a1a84c8eb9343b569b15bab6bb47a79"
7867dependencies = [7711dependencies = [
7868 "frame-benchmarking",7712 "frame-benchmarking",
7869 "frame-support",7713 "frame-support",
78777721
7878[[package]]7722[[package]]
7879name = "pallet-referenda"7723name = "pallet-referenda"
7880version = "25.0.0"7724version = "31.0.0"
7881source = "registry+https://github.com/rust-lang/crates.io-index"7725source = "registry+https://github.com/rust-lang/crates.io-index"
7882checksum = "592ff9873af379bf55e835072afd787cd6435204213ac484e86345b026f4ae4e"7726checksum = "b515fdbcade5b8a507e1a8ffc8b5a59725b1c8c71cfc6f8f5ae490e4a33f732c"
7883dependencies = [7727dependencies = [
7884 "assert_matches",7728 "assert_matches",
7885 "frame-benchmarking",7729 "frame-benchmarking",
7916]7760]
79177761
7918[[package]]7762[[package]]
7763name = "pallet-root-testing"
7764version = "7.0.0"
7765source = "registry+https://github.com/rust-lang/crates.io-index"
7766checksum = "7926eb378bda52162a713aca44a6faab5fc7d6867f82ac14ba375df2b33eaa7f"
7767dependencies = [
7768 "frame-support",
7769 "frame-system",
7770 "parity-scale-codec",
7771 "scale-info",
7772 "sp-core",
7773 "sp-io",
7774 "sp-runtime",
7775 "sp-std",
7776]
7777
7778[[package]]
7919name = "pallet-scheduler"7779name = "pallet-scheduler"
7920version = "26.0.0"7780version = "32.0.0"
7921source = "registry+https://github.com/rust-lang/crates.io-index"7781source = "registry+https://github.com/rust-lang/crates.io-index"
7922checksum = "3508a51d359c6640577feead9dc00667f38cec385baad77b636c61ff746ffe24"7782checksum = "44f81ff1151067225c2c359a132880e084a1c72656457fe443147ed2e6daaac2"
7923dependencies = [7783dependencies = [
7924 "docify",7784 "docify",
7925 "frame-benchmarking",7785 "frame-benchmarking",
79367796
7937[[package]]7797[[package]]
7938name = "pallet-session"7798name = "pallet-session"
7939version = "25.0.0"7799version = "31.0.0"
7940source = "registry+https://github.com/rust-lang/crates.io-index"7800source = "registry+https://github.com/rust-lang/crates.io-index"
7941checksum = "768a6fb5333efc2bd2a3538c1d6ffa4178398660d4e3be89f2eb82d4e9088ae6"7801checksum = "17951aa288869e5afe5815eedc7038dd50b9741d215b66323ff4a12f5686ac15"
7942dependencies = [7802dependencies = [
7943 "frame-support",7803 "frame-support",
7944 "frame-system",7804 "frame-system",
79597819
7960[[package]]7820[[package]]
7961name = "pallet-session-benchmarking"7821name = "pallet-session-benchmarking"
7962version = "25.0.0"7822version = "31.0.0"
7963source = "registry+https://github.com/rust-lang/crates.io-index"7823source = "registry+https://github.com/rust-lang/crates.io-index"
7964checksum = "5401cee669394e86a15851ace4ad60ef1b4d656f11ff22c83d8004051279ea59"7824checksum = "118d0e5a8c09dbb1c7326021335aab36546846c678b3ce79301ace02cec260f7"
7965dependencies = [7825dependencies = [
7966 "frame-benchmarking",7826 "frame-benchmarking",
7967 "frame-support",7827 "frame-support",
7968 "frame-system",7828 "frame-system",
7969 "pallet-session",7829 "pallet-session",
7970 "pallet-staking",7830 "pallet-staking",
7971 "parity-scale-codec",7831 "parity-scale-codec",
7972 "rand 0.8.5",7832 "rand",
7973 "sp-runtime",7833 "sp-runtime",
7974 "sp-session",7834 "sp-session",
7975 "sp-std",7835 "sp-std",
7976]7836]
79777837
7978[[package]]7838[[package]]
7979name = "pallet-society"7839name = "pallet-society"
7980version = "25.0.0"7840version = "31.0.0"
7981source = "registry+https://github.com/rust-lang/crates.io-index"7841source = "registry+https://github.com/rust-lang/crates.io-index"
7982checksum = "36959be2c7f810ba6b8ece8cfe2ee515774c1c776f1ed0bebf3b9e8068f6a435"7842checksum = "7f3255dc30ce7ebfd7ee59b1890d1f0091f416f486532d4eaf795dc209e3c28e"
7983dependencies = [7843dependencies = [
7984 "frame-benchmarking",7844 "frame-benchmarking",
7985 "frame-support",7845 "frame-support",
79967856
7997[[package]]7857[[package]]
7998name = "pallet-staking"7858name = "pallet-staking"
7999version = "25.0.0"7859version = "31.0.0"
8000source = "registry+https://github.com/rust-lang/crates.io-index"7860source = "registry+https://github.com/rust-lang/crates.io-index"
8001checksum = "bed335abd32d357dd9750dae7fb87b01dfd8fe69faadcb94a6e0e0a43057d923"7861checksum = "baeb3d22e737307280e2047cba983cc9aa477a6f4c3001e8c1f07077d148c8f7"
8002dependencies = [7862dependencies = [
8003 "frame-benchmarking",7863 "frame-benchmarking",
8004 "frame-election-provider-support",7864 "frame-election-provider-support",
80207880
8021[[package]]7881[[package]]
8022name = "pallet-staking-reward-curve"7882name = "pallet-staking-reward-curve"
8023version = "10.0.0"7883version = "11.0.0"
8024source = "registry+https://github.com/rust-lang/crates.io-index"7884source = "registry+https://github.com/rust-lang/crates.io-index"
8025checksum = "df8878e29f3d001ac1b1b714621f462e41a9d1fa8f385657f955e8a1ec0684d7"7885checksum = "efca5a4a423427d2c83af5fe07ab648c16b91e3782c3cc23316fe0bd96b4c794"
8026dependencies = [7886dependencies = [
8027 "proc-macro-crate 1.3.1",7887 "proc-macro-crate 3.1.0",
8028 "proc-macro2",7888 "proc-macro2",
8029 "quote",7889 "quote",
8030 "syn 2.0.39",7890 "syn 2.0.65",
8031]7891]
80327892
8033[[package]]7893[[package]]
8034name = "pallet-staking-reward-fn"7894name = "pallet-staking-reward-fn"
8035version = "16.0.0"7895version = "21.0.0"
8036source = "registry+https://github.com/rust-lang/crates.io-index"7896source = "registry+https://github.com/rust-lang/crates.io-index"
8037checksum = "45b6f832653badb5f70bdfecc1ded64b02b8159b27f18515af03f8b80f1b023b"7897checksum = "1e341c47481040b68edcf166ad34633c4c5da20d1559413e68387da935a6ae18"
8038dependencies = [7898dependencies = [
8039 "log",7899 "log",
8040 "sp-arithmetic",7900 "sp-arithmetic",
8041]7901]
80427902
8043[[package]]7903[[package]]
8044name = "pallet-staking-runtime-api"7904name = "pallet-staking-runtime-api"
8045version = "11.0.0"7905version = "17.0.0"
8046source = "registry+https://github.com/rust-lang/crates.io-index"7906source = "registry+https://github.com/rust-lang/crates.io-index"
8047checksum = "773c0d24ad4da4b505e47b43e91c8c0af4e835f16104bc770732a4796c174748"7907checksum = "b398bbc910ed6e7e2fd76251910a8895e7c3343023e2279124568a1c860cab54"
8048dependencies = [7908dependencies = [
8049 "parity-scale-codec",7909 "parity-scale-codec",
8050 "sp-api",7910 "sp-api",
7911 "sp-staking",
8051]7912]
80527913
8053[[package]]7914[[package]]
8054name = "pallet-state-trie-migration"7915name = "pallet-state-trie-migration"
8055version = "26.0.0"7916version = "32.0.0"
8056source = "registry+https://github.com/rust-lang/crates.io-index"7917source = "registry+https://github.com/rust-lang/crates.io-index"
8057checksum = "550292d79f281fd1bfbbf2643f10cef3d67068075d46374295f2efe7f7113da0"7918checksum = "de51e792bcf770a00c5adf8db67f35dae450f445d36fa4b650980017063a62aa"
8058dependencies = [7919dependencies = [
8059 "frame-benchmarking",7920 "frame-benchmarking",
8060 "frame-support",7921 "frame-support",
80877948
8088[[package]]7949[[package]]
8089name = "pallet-sudo"7950name = "pallet-sudo"
8090version = "25.0.0"7951version = "31.0.0"
8091source = "registry+https://github.com/rust-lang/crates.io-index"7952source = "registry+https://github.com/rust-lang/crates.io-index"
8092checksum = "fcec9f73ecb8d0439a13043a253a9fd90aa6bf5aece6470194bbfc7f79256d88"7953checksum = "a00abb554e916fd31ffbc792bff01e2dd9961a0a4bb781d27ef5f30c908ac2f6"
8093dependencies = [7954dependencies = [
8094 "docify",7955 "docify",
8095 "frame-benchmarking",7956 "frame-benchmarking",
8105[[package]]7966[[package]]
8106name = "pallet-template-transaction-payment"7967name = "pallet-template-transaction-payment"
8107version = "3.0.0"7968version = "3.0.0"
8108source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v1.3.0#6071a67116a08ef81083337360de376b63c0ea1c"7969source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v1.9.0#f61acb0c67e58e16f9a4d9ab3a82b5cac1a5bede"
8109dependencies = [7970dependencies = [
8110 "frame-benchmarking",7971 "frame-benchmarking",
8111 "frame-support",7972 "frame-support",
81367997
8137[[package]]7998[[package]]
8138name = "pallet-timestamp"7999name = "pallet-timestamp"
8139version = "24.0.0"8000version = "30.0.0"
8140source = "registry+https://github.com/rust-lang/crates.io-index"8001source = "registry+https://github.com/rust-lang/crates.io-index"
8141checksum = "b25ec8749cf3f481b5e5199be701bac0dea835851b83fc7c455192762711858d"8002checksum = "bb766403f8cabcedb1725326befd7253de3e4c1d3b3d5f7c40adc49ebee5040c"
8142dependencies = [8003dependencies = [
8143 "docify",8004 "docify",
8144 "frame-benchmarking",8005 "frame-benchmarking",
81578018
8158[[package]]8019[[package]]
8159name = "pallet-tips"8020name = "pallet-tips"
8160version = "24.0.0"8021version = "30.0.0"
8161source = "registry+https://github.com/rust-lang/crates.io-index"8022source = "registry+https://github.com/rust-lang/crates.io-index"
8162checksum = "81b17cf8b964e5533f1f5ac1f087f3f69adfead754cb5dd25abe395ec1e7abc9"8023checksum = "fee0ebf5ee31239f9017785cecd54b46be26edef126b6369af477d67f5088ffb"
8163dependencies = [8024dependencies = [
8164 "frame-benchmarking",8025 "frame-benchmarking",
8165 "frame-support",8026 "frame-support",
81778038
8178[[package]]8039[[package]]
8179name = "pallet-transaction-payment"8040name = "pallet-transaction-payment"
8180version = "25.0.0"8041version = "31.0.0"
8181source = "registry+https://github.com/rust-lang/crates.io-index"8042source = "registry+https://github.com/rust-lang/crates.io-index"
8182checksum = "87ef7ceaac786e41613731e3bc48284f1aa3ec260934abda2daed949de6e5ada"8043checksum = "12df1de833ad0abff5daa53f80594d6ef66d250cc1ae073c01e406ce37bbf25e"
8183dependencies = [8044dependencies = [
8184 "frame-support",8045 "frame-support",
8185 "frame-system",8046 "frame-system",
81948055
8195[[package]]8056[[package]]
8196name = "pallet-transaction-payment-rpc"8057name = "pallet-transaction-payment-rpc"
8197version = "27.0.0"8058version = "33.0.0"
8198source = "registry+https://github.com/rust-lang/crates.io-index"8059source = "registry+https://github.com/rust-lang/crates.io-index"
8199checksum = "99adb3915b29d04362648a4be9114de3bfe37c431f214b1ef96b71f358950d9d"8060checksum = "17b3e7cc2ef454af06e0d73e180d2f22c7f6714dca7c1d4a3cc95786041e42c2"
8200dependencies = [8061dependencies = [
8201 "jsonrpsee",8062 "jsonrpsee",
8202 "pallet-transaction-payment-rpc-runtime-api",8063 "pallet-transaction-payment-rpc-runtime-api",
82118072
8212[[package]]8073[[package]]
8213name = "pallet-transaction-payment-rpc-runtime-api"8074name = "pallet-transaction-payment-rpc-runtime-api"
8214version = "25.0.0"8075version = "31.0.0"
8215source = "registry+https://github.com/rust-lang/crates.io-index"8076source = "registry+https://github.com/rust-lang/crates.io-index"
8216checksum = "07d87fdc4028155367c6ea98143054a6c00b38bfd77ec08681e289e429e35505"8077checksum = "4e060567db5e59e3f26cc274cb9fc5db5af160ac67062d61e488f7887fef5470"
8217dependencies = [8078dependencies = [
8218 "pallet-transaction-payment",8079 "pallet-transaction-payment",
8219 "parity-scale-codec",8080 "parity-scale-codec",
82248085
8225[[package]]8086[[package]]
8226name = "pallet-treasury"8087name = "pallet-treasury"
8227version = "24.0.0"8088version = "30.0.0"
8228source = "registry+https://github.com/rust-lang/crates.io-index"8089source = "registry+https://github.com/rust-lang/crates.io-index"
8229checksum = "8dd462af11574485864023849e0622916b611dbc88111192fb39b1e6d7e666ba"8090checksum = "174da255855136b4bf7174a1499ddf20134efe75d59fac4709244fe813534656"
8230dependencies = [8091dependencies = [
8231 "docify",8092 "docify",
8232 "frame-benchmarking",8093 "frame-benchmarking",
82718132
8272[[package]]8133[[package]]
8273name = "pallet-utility"8134name = "pallet-utility"
8274version = "25.0.0"8135version = "31.0.0"
8275source = "registry+https://github.com/rust-lang/crates.io-index"8136source = "registry+https://github.com/rust-lang/crates.io-index"
8276checksum = "85a8a6941da32837e4297e0d8abe0a5c94f348a119cccbf27b0f99ee01246c0e"8137checksum = "73c54ec28e67769b35a650d497ddd10bf0dd783d14965a1034cdcb71ae1d1442"
8277dependencies = [8138dependencies = [
8278 "frame-benchmarking",8139 "frame-benchmarking",
8279 "frame-support",8140 "frame-support",
82888149
8289[[package]]8150[[package]]
8290name = "pallet-vesting"8151name = "pallet-vesting"
8291version = "25.0.0"8152version = "31.0.0"
8292source = "registry+https://github.com/rust-lang/crates.io-index"8153source = "registry+https://github.com/rust-lang/crates.io-index"
8293checksum = "fd29411ef24eb6a856adf1bc33b37ead4835a25dafb1c4c8c95b13fa5247748f"8154checksum = "4a5627016e1cb40d02bf589507429558208c05948d1399ab405307bfe3b1d967"
8294dependencies = [8155dependencies = [
8295 "frame-benchmarking",8156 "frame-benchmarking",
8296 "frame-support",8157 "frame-support",
83048165
8305[[package]]8166[[package]]
8306name = "pallet-whitelist"8167name = "pallet-whitelist"
8307version = "24.0.0"8168version = "30.0.0"
8308source = "registry+https://github.com/rust-lang/crates.io-index"8169source = "registry+https://github.com/rust-lang/crates.io-index"
8309checksum = "d37304829099cfec7d17df70cfe11ccf6cb7bd624eab80e8e79e895859454540"8170checksum = "a68e2271ffe7a20565b7539931b9c01f29039ab151ac14fd93032e81f250727f"
8310dependencies = [8171dependencies = [
8311 "frame-benchmarking",8172 "frame-benchmarking",
8312 "frame-support",8173 "frame-support",
83208181
8321[[package]]8182[[package]]
8322name = "pallet-xcm"8183name = "pallet-xcm"
8323version = "4.0.0"8184version = "10.0.1"
8324source = "registry+https://github.com/rust-lang/crates.io-index"8185source = "registry+https://github.com/rust-lang/crates.io-index"
8325checksum = "04d5e5404d9dadb39390949aadc2c641c16ce4cb0f47ed7a7ff584ab914c2984"8186checksum = "bd52ee00a54f8b6ff3a90e97622b2403667ef25105dd08d71d45a7075c0ba478"
8326dependencies = [8187dependencies = [
8327 "bounded-collections",8188 "bounded-collections",
8328 "frame-benchmarking",8189 "frame-benchmarking",
8329 "frame-support",8190 "frame-support",
8330 "frame-system",8191 "frame-system",
8331 "log",8192 "log",
8193 "pallet-balances",
8332 "parity-scale-codec",8194 "parity-scale-codec",
8333 "scale-info",8195 "scale-info",
8334 "serde",8196 "serde",
8337 "sp-runtime",8199 "sp-runtime",
8338 "sp-std",8200 "sp-std",
8339 "staging-xcm",8201 "staging-xcm",
8202 "staging-xcm-builder",
8340 "staging-xcm-executor",8203 "staging-xcm-executor",
8341]8204]
83428205
8343[[package]]8206[[package]]
8344name = "pallet-xcm-benchmarks"8207name = "pallet-xcm-benchmarks"
8345version = "4.0.0"8208version = "10.0.0"
8346source = "registry+https://github.com/rust-lang/crates.io-index"8209source = "registry+https://github.com/rust-lang/crates.io-index"
8347checksum = "e6bfdc94e39541b111db7d2c2a95a18a3c3bb42dd37c20b8705727e617ce00c9"8210checksum = "3af346fe874360fdd3e36a63cac72a891283b63a2865b28f8afccaa63472fd40"
8348dependencies = [8211dependencies = [
8349 "frame-benchmarking",8212 "frame-benchmarking",
8350 "frame-support",8213 "frame-support",
8361]8224]
83628225
8363[[package]]8226[[package]]
8227name = "parachains-common"
8228version = "10.0.0"
8229source = "registry+https://github.com/rust-lang/crates.io-index"
8230checksum = "5539fb10c2901cf120d3db87f6ee1568696ccce30cea1a0d0cdee31f64f1da37"
8231dependencies = [
8232 "cumulus-primitives-core",
8233 "cumulus-primitives-utility",
8234 "frame-support",
8235 "frame-system",
8236 "log",
8237 "pallet-asset-tx-payment",
8238 "pallet-assets",
8239 "pallet-authorship",
8240 "pallet-balances",
8241 "pallet-collator-selection 12.0.1",
8242 "pallet-message-queue",
8243 "pallet-xcm",
8244 "parity-scale-codec",
8245 "polkadot-primitives",
8246 "scale-info",
8247 "sp-consensus-aura",
8248 "sp-core",
8249 "sp-io",
8250 "sp-runtime",
8251 "sp-std",
8252 "staging-parachain-info",
8253 "staging-xcm",
8254 "staging-xcm-executor",
8255 "substrate-wasm-builder",
8256]
8257
8258[[package]]
8259name = "parity-bip39"
8260version = "2.0.1"
8261source = "registry+https://github.com/rust-lang/crates.io-index"
8262checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9"
8263dependencies = [
8264 "bitcoin_hashes 0.13.0",
8265 "rand",
8266 "rand_core 0.6.4",
8267 "serde",
8268 "unicode-normalization",
8269]
8270
8271[[package]]
8364name = "parity-db"8272name = "parity-db"
8365version = "0.4.12"8273version = "0.4.13"
8366source = "registry+https://github.com/rust-lang/crates.io-index"8274source = "registry+https://github.com/rust-lang/crates.io-index"
8367checksum = "59e9ab494af9e6e813c72170f0d3c1de1500990d62c97cc05cc7576f91aa402f"8275checksum = "592a28a24b09c9dc20ac8afaa6839abc417c720afe42c12e1e4a9d6aa2508d2e"
8368dependencies = [8276dependencies = [
8369 "blake2 0.10.6",8277 "blake2 0.10.6",
8370 "crc32fast",8278 "crc32fast",
8373 "libc",8281 "libc",
8374 "log",8282 "log",
8375 "lz4",8283 "lz4",
8376 "memmap2",8284 "memmap2 0.5.10",
8377 "parking_lot 0.12.1",8285 "parking_lot 0.12.2",
8378 "rand 0.8.5",8286 "rand",
8379 "siphasher",8287 "siphasher",
8380 "snap",8288 "snap",
8289 "winapi",
8381]8290]
83828291
8383[[package]]8292[[package]]
8384name = "parity-scale-codec"8293name = "parity-scale-codec"
8385version = "3.6.5"8294version = "3.6.12"
8386source = "registry+https://github.com/rust-lang/crates.io-index"8295source = "registry+https://github.com/rust-lang/crates.io-index"
8387checksum = "0dec8a8073036902368c2cdc0387e85ff9a37054d7e7c98e592145e0c92cd4fb"8296checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee"
8388dependencies = [8297dependencies = [
8389 "arrayvec 0.7.4",8298 "arrayvec 0.7.4",
8390 "bitvec",8299 "bitvec",
83978306
8398[[package]]8307[[package]]
8399name = "parity-scale-codec-derive"8308name = "parity-scale-codec-derive"
8400version = "3.6.5"8309version = "3.6.12"
8401source = "registry+https://github.com/rust-lang/crates.io-index"8310source = "registry+https://github.com/rust-lang/crates.io-index"
8402checksum = "312270ee71e1cd70289dacf597cab7b207aa107d2f28191c2ae45b2ece18a260"8311checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c"
8403dependencies = [8312dependencies = [
8404 "proc-macro-crate 1.3.1",8313 "proc-macro-crate 3.1.0",
8405 "proc-macro2",8314 "proc-macro2",
8406 "quote",8315 "quote",
8407 "syn 1.0.109",8316 "syn 1.0.109",
84388347
8439[[package]]8348[[package]]
8440name = "parking_lot"8349name = "parking_lot"
8441version = "0.12.1"8350version = "0.12.2"
8442source = "registry+https://github.com/rust-lang/crates.io-index"8351source = "registry+https://github.com/rust-lang/crates.io-index"
8443checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"8352checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
8444dependencies = [8353dependencies = [
8445 "lock_api",8354 "lock_api",
8446 "parking_lot_core 0.9.9",8355 "parking_lot_core 0.9.10",
8447]8356]
84488357
8449[[package]]8358[[package]]
84628371
8463[[package]]8372[[package]]
8464name = "parking_lot_core"8373name = "parking_lot_core"
8465version = "0.9.9"8374version = "0.9.10"
8466source = "registry+https://github.com/rust-lang/crates.io-index"8375source = "registry+https://github.com/rust-lang/crates.io-index"
8467checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"8376checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
8468dependencies = [8377dependencies = [
8469 "cfg-if",8378 "cfg-if",
8470 "libc",8379 "libc",
8471 "redox_syscall 0.4.1",8380 "redox_syscall 0.5.1",
8472 "smallvec",8381 "smallvec",
8473 "windows-targets 0.48.5",8382 "windows-targets 0.52.5",
8474]8383]
84758384
8476[[package]]8385[[package]]
8480checksum = "7924d1d0ad836f665c9065e26d016c673ece3993f30d340068b16f282afc1156"8389checksum = "7924d1d0ad836f665c9065e26d016c673ece3993f30d340068b16f282afc1156"
84818390
8482[[package]]8391[[package]]
8483name = "paste"8392name = "password-hash"
8484version = "1.0.14"8393version = "0.5.0"
8485source = "registry+https://github.com/rust-lang/crates.io-index"8394source = "registry+https://github.com/rust-lang/crates.io-index"
8486checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"8395checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
8487
8488[[package]]
8489name = "pbkdf2"
8490version = "0.8.0"
8491source = "registry+https://github.com/rust-lang/crates.io-index"
8492checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa"
8493dependencies = [8396dependencies = [
8494 "crypto-mac 0.11.1",8397 "base64ct",
8398 "rand_core 0.6.4",
8399 "subtle 2.5.0",
8495]8400]
84968401
8497[[package]]8402[[package]]
8498name = "pbkdf2"8403name = "paste"
8499version = "0.11.0"8404version = "1.0.15"
8500source = "registry+https://github.com/rust-lang/crates.io-index"8405source = "registry+https://github.com/rust-lang/crates.io-index"
8501checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"8406checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
8502dependencies = [
8503 "digest 0.10.7",
8504]
85058407
8506[[package]]8408[[package]]
8507name = "pbkdf2"8409name = "pbkdf2"
8510checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"8412checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
8511dependencies = [8413dependencies = [
8512 "digest 0.10.7",8414 "digest 0.10.7",
8415 "password-hash",
8513]8416]
85148417
8515[[package]]8418[[package]]
8528]8431]
85298432
8530[[package]]8433[[package]]
8531name = "pem-rfc7468"
8532version = "0.6.0"
8533source = "registry+https://github.com/rust-lang/crates.io-index"
8534checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac"
8535dependencies = [
8536 "base64ct",
8537]
8538
8539[[package]]
8540name = "percent-encoding"8434name = "percent-encoding"
8541version = "2.3.0"8435version = "2.3.1"
8542source = "registry+https://github.com/rust-lang/crates.io-index"8436source = "registry+https://github.com/rust-lang/crates.io-index"
8543checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"8437checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
85448438
8545[[package]]8439[[package]]
8546name = "pest"8440name = "pest"
8547version = "2.7.5"8441version = "2.7.10"
8548source = "registry+https://github.com/rust-lang/crates.io-index"8442source = "registry+https://github.com/rust-lang/crates.io-index"
8549checksum = "ae9cee2a55a544be8b89dc6848072af97a20f2422603c10865be2a42b580fff5"8443checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8"
8550dependencies = [8444dependencies = [
8551 "memchr",8445 "memchr",
8552 "thiserror",8446 "thiserror",
85558449
8556[[package]]8450[[package]]
8557name = "pest_derive"8451name = "pest_derive"
8558version = "2.7.5"8452version = "2.7.10"
8559source = "registry+https://github.com/rust-lang/crates.io-index"8453source = "registry+https://github.com/rust-lang/crates.io-index"
8560checksum = "81d78524685f5ef2a3b3bd1cafbc9fcabb036253d9b1463e726a91cd16e2dfc2"8454checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459"
8561dependencies = [8455dependencies = [
8562 "pest",8456 "pest",
8563 "pest_generator",8457 "pest_generator",
8564]8458]
85658459
8566[[package]]8460[[package]]
8567name = "pest_generator"8461name = "pest_generator"
8568version = "2.7.5"8462version = "2.7.10"
8569source = "registry+https://github.com/rust-lang/crates.io-index"8463source = "registry+https://github.com/rust-lang/crates.io-index"
8570checksum = "68bd1206e71118b5356dae5ddc61c8b11e28b09ef6a31acbd15ea48a28e0c227"8464checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687"
8571dependencies = [8465dependencies = [
8572 "pest",8466 "pest",
8573 "pest_meta",8467 "pest_meta",
8574 "proc-macro2",8468 "proc-macro2",
8575 "quote",8469 "quote",
8576 "syn 2.0.39",8470 "syn 2.0.65",
8577]8471]
85788472
8579[[package]]8473[[package]]
8580name = "pest_meta"8474name = "pest_meta"
8581version = "2.7.5"8475version = "2.7.10"
8582source = "registry+https://github.com/rust-lang/crates.io-index"8476source = "registry+https://github.com/rust-lang/crates.io-index"
8583checksum = "7c747191d4ad9e4a4ab9c8798f1e82a39affe7ef9648390b7e5548d18e099de6"8477checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd"
8584dependencies = [8478dependencies = [
8585 "once_cell",8479 "once_cell",
8586 "pest",8480 "pest",
85898483
8590[[package]]8484[[package]]
8591name = "petgraph"8485name = "petgraph"
8592version = "0.6.4"8486version = "0.6.5"
8593source = "registry+https://github.com/rust-lang/crates.io-index"8487source = "registry+https://github.com/rust-lang/crates.io-index"
8594checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"8488checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
8595dependencies = [8489dependencies = [
8596 "fixedbitset",8490 "fixedbitset",
8597 "indexmap 2.1.0",8491 "indexmap 2.2.6",
8598]8492]
85998493
8600[[package]]8494[[package]]
8601name = "pin-project"8495name = "pin-project"
8602version = "1.1.3"8496version = "1.1.5"
8603source = "registry+https://github.com/rust-lang/crates.io-index"8497source = "registry+https://github.com/rust-lang/crates.io-index"
8604checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"8498checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
8605dependencies = [8499dependencies = [
8606 "pin-project-internal",8500 "pin-project-internal",
8607]8501]
86088502
8609[[package]]8503[[package]]
8610name = "pin-project-internal"8504name = "pin-project-internal"
8611version = "1.1.3"8505version = "1.1.5"
8612source = "registry+https://github.com/rust-lang/crates.io-index"8506source = "registry+https://github.com/rust-lang/crates.io-index"
8613checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"8507checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
8614dependencies = [8508dependencies = [
8615 "proc-macro2",8509 "proc-macro2",
8616 "quote",8510 "quote",
8617 "syn 2.0.39",8511 "syn 2.0.65",
8618]8512]
86198513
8620[[package]]8514[[package]]
86258519
8626[[package]]8520[[package]]
8627name = "pin-project-lite"8521name = "pin-project-lite"
8628version = "0.2.13"8522version = "0.2.14"
8629source = "registry+https://github.com/rust-lang/crates.io-index"8523source = "registry+https://github.com/rust-lang/crates.io-index"
8630checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"8524checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
86318525
8632[[package]]8526[[package]]
8633name = "pin-utils"8527name = "pin-utils"
86378531
8638[[package]]8532[[package]]
8639name = "piper"8533name = "piper"
8640version = "0.2.1"8534version = "0.2.2"
8641source = "registry+https://github.com/rust-lang/crates.io-index"8535source = "registry+https://github.com/rust-lang/crates.io-index"
8642checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"8536checksum = "464db0c665917b13ebb5d453ccdec4add5658ee1adc7affc7677615356a8afaf"
8643dependencies = [8537dependencies = [
8644 "atomic-waker",8538 "atomic-waker",
8645 "fastrand 2.0.1",8539 "fastrand 2.1.0",
8646 "futures-io",8540 "futures-io",
8647]8541]
86488542
8649[[package]]8543[[package]]
8650name = "pkcs8"8544name = "pkcs8"
8651version = "0.9.0"
8652source = "registry+https://github.com/rust-lang/crates.io-index"
8653checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
8654dependencies = [
8655 "der 0.6.1",
8656 "spki 0.6.0",
8657]
8658
8659[[package]]
8660name = "pkcs8"
8661version = "0.10.2"8545version = "0.10.2"
8662source = "registry+https://github.com/rust-lang/crates.io-index"8546source = "registry+https://github.com/rust-lang/crates.io-index"
8663checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"8547checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
8664dependencies = [8548dependencies = [
8665 "der 0.7.8",8549 "der",
8666 "spki 0.7.2",8550 "spki",
8667]8551]
86688552
8669[[package]]8553[[package]]
8670name = "pkg-config"8554name = "pkg-config"
8671version = "0.3.27"8555version = "0.3.30"
8672source = "registry+https://github.com/rust-lang/crates.io-index"8556source = "registry+https://github.com/rust-lang/crates.io-index"
8673checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"8557checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
86748558
8675[[package]]8559[[package]]
8676name = "platforms"8560name = "platforms"
8677version = "3.2.0"8561version = "3.4.0"
8678source = "registry+https://github.com/rust-lang/crates.io-index"8562source = "registry+https://github.com/rust-lang/crates.io-index"
8679checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0"8563checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7"
86808564
8681[[package]]8565[[package]]
8682name = "polkadot-approval-distribution"8566name = "polkadot-approval-distribution"
8683version = "4.0.0"8567version = "10.0.0"
8684source = "registry+https://github.com/rust-lang/crates.io-index"8568source = "registry+https://github.com/rust-lang/crates.io-index"
8685checksum = "aafcdaca311b3f8ea463548cc2f62289a2689d3198ea8cba2d100fab378fff3c"8569checksum = "c71bcf7eaa793354f996553b9b472833f761d9cd9e9bf6b2123895da4df6a25b"
8686dependencies = [8570dependencies = [
8571 "bitvec",
8687 "futures",8572 "futures",
8688 "futures-timer",8573 "futures-timer",
8574 "itertools 0.10.5",
8689 "polkadot-node-jaeger",8575 "polkadot-node-jaeger",
8690 "polkadot-node-metrics",8576 "polkadot-node-metrics",
8691 "polkadot-node-network-protocol",8577 "polkadot-node-network-protocol",
8692 "polkadot-node-primitives",8578 "polkadot-node-primitives",
8693 "polkadot-node-subsystem",8579 "polkadot-node-subsystem",
8694 "polkadot-node-subsystem-util",8580 "polkadot-node-subsystem-util",
8695 "polkadot-primitives",8581 "polkadot-primitives",
8696 "rand 0.8.5",8582 "rand",
8697 "tracing-gum",8583 "tracing-gum",
8698]8584]
86998585
8700[[package]]8586[[package]]
8701name = "polkadot-availability-bitfield-distribution"8587name = "polkadot-availability-bitfield-distribution"
8702version = "4.0.0"8588version = "10.0.0"
8703source = "registry+https://github.com/rust-lang/crates.io-index"8589source = "registry+https://github.com/rust-lang/crates.io-index"
8704checksum = "316fa25f773ac3f470578d2dc2ff73cefc2a01c9ea0a9a00767529184701792c"8590checksum = "9b156f5a0a20ffcd852e266b865ad9149c6180a4cf1af07f334567c3b86f0fec"
8705dependencies = [8591dependencies = [
8706 "always-assert",8592 "always-assert",
8707 "futures",8593 "futures",
8710 "polkadot-node-subsystem",8596 "polkadot-node-subsystem",
8711 "polkadot-node-subsystem-util",8597 "polkadot-node-subsystem-util",
8712 "polkadot-primitives",8598 "polkadot-primitives",
8713 "rand 0.8.5",8599 "rand",
8714 "tracing-gum",8600 "tracing-gum",
8715]8601]
87168602
8717[[package]]8603[[package]]
8718name = "polkadot-availability-distribution"8604name = "polkadot-availability-distribution"
8719version = "4.0.0"8605version = "10.0.0"
8720source = "registry+https://github.com/rust-lang/crates.io-index"8606source = "registry+https://github.com/rust-lang/crates.io-index"
8721checksum = "118ed63ece1ec1ccf240ab44d932a932ae778ece57a6fba34953b7c0b436f6b1"8607checksum = "156b913d3eb7981ac8d540bacef09d5dac3a5d0584fa5a27fc8971870a02040a"
8722dependencies = [8608dependencies = [
8723 "derive_more",8609 "derive_more",
8724 "fatality",8610 "fatality",
8730 "polkadot-node-subsystem",8616 "polkadot-node-subsystem",
8731 "polkadot-node-subsystem-util",8617 "polkadot-node-subsystem-util",
8732 "polkadot-primitives",8618 "polkadot-primitives",
8733 "rand 0.8.5",8619 "rand",
8734 "schnellru",8620 "schnellru",
8735 "sp-core",8621 "sp-core",
8736 "sp-keystore",8622 "sp-keystore",
87408626
8741[[package]]8627[[package]]
8742name = "polkadot-availability-recovery"8628name = "polkadot-availability-recovery"
8743version = "4.0.0"8629version = "10.0.0"
8744source = "registry+https://github.com/rust-lang/crates.io-index"8630source = "registry+https://github.com/rust-lang/crates.io-index"
8745checksum = "13245b9f37a4d409c47cf46f74d2601df82f1bf12678b1a792ad1aa5effebd13"8631checksum = "d736bca91fe70f303d09a1e251b7d3cb39164c94948d95a7769256ece066a3ed"
8746dependencies = [8632dependencies = [
8747 "async-trait",8633 "async-trait",
8748 "fatality",8634 "fatality",
8754 "polkadot-node-subsystem",8640 "polkadot-node-subsystem",
8755 "polkadot-node-subsystem-util",8641 "polkadot-node-subsystem-util",
8756 "polkadot-primitives",8642 "polkadot-primitives",
8757 "rand 0.8.5",8643 "rand",
8758 "sc-network",8644 "sc-network",
8759 "schnellru",8645 "schnellru",
8760 "thiserror",8646 "thiserror",
8647 "tokio",
8761 "tracing-gum",8648 "tracing-gum",
8762]8649]
87638650
8764[[package]]8651[[package]]
8765name = "polkadot-cli"8652name = "polkadot-cli"
8766version = "4.0.0"8653version = "10.0.0"
8767source = "registry+https://github.com/rust-lang/crates.io-index"8654source = "registry+https://github.com/rust-lang/crates.io-index"
8768checksum = "dd0d87ec2b375e4f353d9fc22fa8d405578e44f1f12a7ff74936a3997f69d62f"8655checksum = "5509ed80ddcbb63c88b9f346b22f4b663e52dadf475118ec06406a0688817c55"
8769dependencies = [8656dependencies = [
8657 "cfg-if",
8770 "clap",8658 "clap",
8771 "frame-benchmarking-cli",8659 "frame-benchmarking-cli",
8772 "futures",8660 "futures",
8784 "sp-io",8672 "sp-io",
8785 "sp-keyring",8673 "sp-keyring",
8786 "sp-maybe-compressed-blob",8674 "sp-maybe-compressed-blob",
8675 "sp-runtime",
8787 "substrate-build-script-utils",8676 "substrate-build-script-utils",
8788 "thiserror",8677 "thiserror",
8789 "try-runtime-cli",8678 "try-runtime-cli",
8790]8679]
87918680
8792[[package]]8681[[package]]
8793name = "polkadot-collator-protocol"8682name = "polkadot-collator-protocol"
8794version = "4.0.0"8683version = "10.0.0"
8795source = "registry+https://github.com/rust-lang/crates.io-index"8684source = "registry+https://github.com/rust-lang/crates.io-index"
8796checksum = "1f5ed0e739de576e41203ba99b9da1347998174a84fb5ea825f1a8e30e1dff88"8685checksum = "c82682bdd0aea251ab8f31a1b06f4c2c1c494e80fed4fc13ca9bc7622870bc82"
8797dependencies = [8686dependencies = [
8798 "bitvec",8687 "bitvec",
8799 "fatality",8688 "fatality",
88148703
8815[[package]]8704[[package]]
8816name = "polkadot-core-primitives"8705name = "polkadot-core-primitives"
8817version = "4.0.0"8706version = "10.0.0"
8818source = "registry+https://github.com/rust-lang/crates.io-index"8707source = "registry+https://github.com/rust-lang/crates.io-index"
8819checksum = "b08d1d6ca24e1b13f8069e015cfab794344212dd7436aadd61de8086a82664ef"8708checksum = "44c2f38f3195108e9da39b9845895bb3dff76f1c7b31409143febeb1560cd276"
8820dependencies = [8709dependencies = [
8821 "parity-scale-codec",8710 "parity-scale-codec",
8822 "scale-info",8711 "scale-info",
88278716
8828[[package]]8717[[package]]
8829name = "polkadot-dispute-distribution"8718name = "polkadot-dispute-distribution"
8830version = "4.0.0"8719version = "10.0.0"
8831source = "registry+https://github.com/rust-lang/crates.io-index"8720source = "registry+https://github.com/rust-lang/crates.io-index"
8832checksum = "ffa05fec2897e38a2ec42df5f84110fbb170dbe549d5d1e454f635b141cb2aca"8721checksum = "f5331cccd51a1593bc26a1619964f49876629589139cdf46151c21a6308c6bad"
8833dependencies = [8722dependencies = [
8834 "derive_more",8723 "derive_more",
8835 "fatality",8724 "fatality",
8836 "futures",8725 "futures",
8837 "futures-timer",8726 "futures-timer",
8838 "indexmap 1.9.3",8727 "indexmap 2.2.6",
8839 "parity-scale-codec",8728 "parity-scale-codec",
8840 "polkadot-erasure-coding",8729 "polkadot-erasure-coding",
8841 "polkadot-node-network-protocol",8730 "polkadot-node-network-protocol",
88538742
8854[[package]]8743[[package]]
8855name = "polkadot-erasure-coding"8744name = "polkadot-erasure-coding"
8856version = "4.0.0"8745version = "10.0.0"
8857source = "registry+https://github.com/rust-lang/crates.io-index"8746source = "registry+https://github.com/rust-lang/crates.io-index"
8858checksum = "9714c537368095f1bc2e70c45fb8ae3347c19b344f8d5b4722cc781690a74924"8747checksum = "4842b32ecf4ab29521f1f9dd199c35398cd101883912f74e070658cd465037af"
8859dependencies = [8748dependencies = [
8860 "parity-scale-codec",8749 "parity-scale-codec",
8861 "polkadot-node-primitives",8750 "polkadot-node-primitives",
88688757
8869[[package]]8758[[package]]
8870name = "polkadot-gossip-support"8759name = "polkadot-gossip-support"
8871version = "4.0.0"8760version = "10.0.0"
8872source = "registry+https://github.com/rust-lang/crates.io-index"8761source = "registry+https://github.com/rust-lang/crates.io-index"
8873checksum = "9acc782f4c0efb0809cc325a49b50c498255a973dfc665e940043af20936d525"8762checksum = "3165cced1fd975f43d21e8a0701b19461d07131ace5feae2bfeb8ea005953683"
8874dependencies = [8763dependencies = [
8875 "futures",8764 "futures",
8876 "futures-timer",8765 "futures-timer",
8877 "polkadot-node-network-protocol",8766 "polkadot-node-network-protocol",
8878 "polkadot-node-subsystem",8767 "polkadot-node-subsystem",
8879 "polkadot-node-subsystem-util",8768 "polkadot-node-subsystem-util",
8880 "polkadot-primitives",8769 "polkadot-primitives",
8881 "rand 0.8.5",8770 "rand",
8882 "rand_chacha 0.3.1",8771 "rand_chacha 0.3.1",
8883 "sc-network",8772 "sc-network",
8884 "sc-network-common",8773 "sc-network-common",
8885 "sp-application-crypto",8774 "sp-application-crypto",
8886 "sp-core",8775 "sp-core",
8776 "sp-crypto-hashing",
8887 "sp-keystore",8777 "sp-keystore",
8888 "tracing-gum",8778 "tracing-gum",
8889]8779]
88908780
8891[[package]]8781[[package]]
8892name = "polkadot-network-bridge"8782name = "polkadot-network-bridge"
8893version = "4.0.0"8783version = "10.0.0"
8894source = "registry+https://github.com/rust-lang/crates.io-index"8784source = "registry+https://github.com/rust-lang/crates.io-index"
8895checksum = "bf7355e7f9cac8e5fe4899796e92aea2ea94678854dc44e21890a33d4c6c6ec3"8785checksum = "48f34d1b7dde0d43c37aeacb37c199cbfc1c541a3ff03317fcb6bcc2d69501f6"
8896dependencies = [8786dependencies = [
8897 "always-assert",8787 "always-assert",
8898 "async-trait",8788 "async-trait",
8899 "bytes",8789 "bytes",
8900 "fatality",8790 "fatality",
8901 "futures",8791 "futures",
8902 "parity-scale-codec",8792 "parity-scale-codec",
8903 "parking_lot 0.12.1",8793 "parking_lot 0.12.2",
8904 "polkadot-node-metrics",8794 "polkadot-node-metrics",
8905 "polkadot-node-network-protocol",8795 "polkadot-node-network-protocol",
8906 "polkadot-node-subsystem",8796 "polkadot-node-subsystem",
89148804
8915[[package]]8805[[package]]
8916name = "polkadot-node-collation-generation"8806name = "polkadot-node-collation-generation"
8917version = "4.0.0"8807version = "10.0.0"
8918source = "registry+https://github.com/rust-lang/crates.io-index"8808source = "registry+https://github.com/rust-lang/crates.io-index"
8919checksum = "9bed91a561c9edfc5bd1d8e432cec8cecde63aaf12131cc19881d67e39be0fce"8809checksum = "1060f6954c43f120751ad3f2a54155541893fcf9a966f4a9ce5192ee7888fa1f"
8920dependencies = [8810dependencies = [
8921 "futures",8811 "futures",
8922 "parity-scale-codec",8812 "parity-scale-codec",
89338823
8934[[package]]8824[[package]]
8935name = "polkadot-node-core-approval-voting"8825name = "polkadot-node-core-approval-voting"
8936version = "4.0.0"8826version = "10.0.0"
8937source = "registry+https://github.com/rust-lang/crates.io-index"8827source = "registry+https://github.com/rust-lang/crates.io-index"
8938checksum = "976e5fcd0c10fbe37d120a9e4702324585e529498c56d03fd7b529f17644fe34"8828checksum = "427edaa41cc878f0d22b3248e900d1f65760a92f6e230e7a54ff6118b8ef9c79"
8939dependencies = [8829dependencies = [
8940 "bitvec",8830 "bitvec",
8941 "derive_more",8831 "derive_more",
8942 "futures",8832 "futures",
8943 "futures-timer",8833 "futures-timer",
8834 "itertools 0.10.5",
8944 "kvdb",8835 "kvdb",
8945 "merlin 2.0.1",8836 "merlin",
8946 "parity-scale-codec",8837 "parity-scale-codec",
8947 "polkadot-node-jaeger",8838 "polkadot-node-jaeger",
8948 "polkadot-node-primitives",8839 "polkadot-node-primitives",
8949 "polkadot-node-subsystem",8840 "polkadot-node-subsystem",
8950 "polkadot-node-subsystem-util",8841 "polkadot-node-subsystem-util",
8951 "polkadot-overseer",8842 "polkadot-overseer",
8952 "polkadot-primitives",8843 "polkadot-primitives",
8844 "rand",
8845 "rand_chacha 0.3.1",
8846 "rand_core 0.6.4",
8953 "sc-keystore",8847 "sc-keystore",
8954 "schnellru",8848 "schnellru",
8955 "schnorrkel 0.9.1",8849 "schnorrkel 0.11.4",
8956 "sp-application-crypto",8850 "sp-application-crypto",
8957 "sp-consensus",8851 "sp-consensus",
8958 "sp-consensus-slots",8852 "sp-consensus-slots",
89638857
8964[[package]]8858[[package]]
8965name = "polkadot-node-core-av-store"8859name = "polkadot-node-core-av-store"
8966version = "4.0.0"8860version = "10.0.0"
8967source = "registry+https://github.com/rust-lang/crates.io-index"8861source = "registry+https://github.com/rust-lang/crates.io-index"
8968checksum = "d9d1018400db515cec0748e4c83d6010601d1784350dfd465386a7ee47699cd3"8862checksum = "669f4ba3485a915853e94db99cf0dc5af9bccacd76b4d6f06550c5ecbd33d4aa"
8969dependencies = [8863dependencies = [
8970 "bitvec",8864 "bitvec",
8971 "futures",8865 "futures",
89868880
8987[[package]]8881[[package]]
8988name = "polkadot-node-core-backing"8882name = "polkadot-node-core-backing"
8989version = "4.0.0"8883version = "10.0.0"
8990source = "registry+https://github.com/rust-lang/crates.io-index"8884source = "registry+https://github.com/rust-lang/crates.io-index"
8991checksum = "051940f4f7214dcc370077ead642052cda2c7316641ea9ff1f05624be2a272d2"8885checksum = "307ec8006475fd2f5f878bbfd7c74368f4fde0fd10096925a85b5e027ace4889"
8992dependencies = [8886dependencies = [
8993 "bitvec",8887 "bitvec",
8994 "fatality",8888 "fatality",
8999 "polkadot-node-subsystem-util",8893 "polkadot-node-subsystem-util",
9000 "polkadot-primitives",8894 "polkadot-primitives",
9001 "polkadot-statement-table",8895 "polkadot-statement-table",
8896 "schnellru",
9002 "sp-keystore",8897 "sp-keystore",
9003 "thiserror",8898 "thiserror",
9004 "tracing-gum",8899 "tracing-gum",
9005]8900]
90068901
9007[[package]]8902[[package]]
9008name = "polkadot-node-core-bitfield-signing"8903name = "polkadot-node-core-bitfield-signing"
9009version = "4.0.0"8904version = "10.0.0"
9010source = "registry+https://github.com/rust-lang/crates.io-index"8905source = "registry+https://github.com/rust-lang/crates.io-index"
9011checksum = "77cea47f010914b5e52f2f1eb96c058cb117045c5864c733236e7b24ea103d22"8906checksum = "b8133ce90b5bfc6d81c8d124dd26ec86624eb88bb33e57c0fb59d1262c9224ea"
9012dependencies = [8907dependencies = [
9013 "futures",8908 "futures",
9014 "polkadot-node-subsystem",8909 "polkadot-node-subsystem",
90228917
9023[[package]]8918[[package]]
9024name = "polkadot-node-core-candidate-validation"8919name = "polkadot-node-core-candidate-validation"
9025version = "4.0.0"8920version = "10.0.0"
9026source = "registry+https://github.com/rust-lang/crates.io-index"8921source = "registry+https://github.com/rust-lang/crates.io-index"
9027checksum = "fbb2306632d1ee08cc2f4d5945b4ec795fd79ce801ae03e79961c18877220ed2"8922checksum = "1a4335b31f5d7dd3c59a7a061ca32061d290244fde416186fd22bee5093cf4bb"
9028dependencies = [8923dependencies = [
9029 "async-trait",8924 "async-trait",
9030 "futures",8925 "futures",
90448939
9045[[package]]8940[[package]]
9046name = "polkadot-node-core-chain-api"8941name = "polkadot-node-core-chain-api"
9047version = "4.0.0"8942version = "10.0.0"
9048source = "registry+https://github.com/rust-lang/crates.io-index"8943source = "registry+https://github.com/rust-lang/crates.io-index"
9049checksum = "712e8787fcec6e036d21421adf3db0295c142a878c482e0aba2e5aefcf050f10"8944checksum = "23b25733a45754fa4f049d26289994e379be21b132ca36982378604b53341104"
9050dependencies = [8945dependencies = [
9051 "futures",8946 "futures",
9052 "polkadot-node-metrics",8947 "polkadot-node-metrics",
9053 "polkadot-node-subsystem",8948 "polkadot-node-subsystem",
9054 "polkadot-primitives",8949 "polkadot-node-subsystem-types",
9055 "sc-client-api",8950 "sc-client-api",
9056 "sc-consensus-babe",8951 "sc-consensus-babe",
9057 "sp-blockchain",
9058 "tracing-gum",8952 "tracing-gum",
9059]8953]
90608954
9061[[package]]8955[[package]]
9062name = "polkadot-node-core-chain-selection"8956name = "polkadot-node-core-chain-selection"
9063version = "4.0.0"8957version = "10.0.0"
9064source = "registry+https://github.com/rust-lang/crates.io-index"8958source = "registry+https://github.com/rust-lang/crates.io-index"
9065checksum = "8028469b10f5f1fa10ea9b08cb09bb53bcb55a25298e4154928d3aaf7d5d066a"8959checksum = "c77a7c69bd67b0840c0f97c61637b798f6ec49c6a1c4cf153e4d8e8b22e34c45"
9066dependencies = [8960dependencies = [
9067 "futures",8961 "futures",
9068 "futures-timer",8962 "futures-timer",
90788972
9079[[package]]8973[[package]]
9080name = "polkadot-node-core-dispute-coordinator"8974name = "polkadot-node-core-dispute-coordinator"
9081version = "4.0.0"8975version = "10.0.0"
9082source = "registry+https://github.com/rust-lang/crates.io-index"8976source = "registry+https://github.com/rust-lang/crates.io-index"
9083checksum = "662387f0e7b23596326754796fbb6f52e32c3deb0c11f9ff341e23a0a7139608"8977checksum = "ea6fb7b632e37b5eff4d3ceb246a6d7277c82bb573cbc2360c37719a5e00df82"
9084dependencies = [8978dependencies = [
9085 "fatality",8979 "fatality",
9086 "futures",8980 "futures",
90988992
9099[[package]]8993[[package]]
9100name = "polkadot-node-core-parachains-inherent"8994name = "polkadot-node-core-parachains-inherent"
9101version = "4.0.0"8995version = "10.0.0"
9102source = "registry+https://github.com/rust-lang/crates.io-index"8996source = "registry+https://github.com/rust-lang/crates.io-index"
9103checksum = "ec0f57ce13de845fe1441fa3ab3405dcb142d3dc0ea985c4e28efa35b97d07d0"8997checksum = "8c904246202cb80fc3e3872e142d74958903515c3b91d3d4d88907cf8bca46e2"
9104dependencies = [8998dependencies = [
9105 "async-trait",8999 "async-trait",
9106 "futures",9000 "futures",
91169010
9117[[package]]9011[[package]]
9118name = "polkadot-node-core-prospective-parachains"9012name = "polkadot-node-core-prospective-parachains"
9119version = "3.0.0"9013version = "9.0.0"
9120source = "registry+https://github.com/rust-lang/crates.io-index"9014source = "registry+https://github.com/rust-lang/crates.io-index"
9121checksum = "5a010a14312c5c5eec800397cc60cce10131d4a29cedf563ee639fc7b9b27ba1"9015checksum = "d343298e502e687bc2f8ae837cad538a9b5d60ce714ace58120cb91aeb41d1c1"
9122dependencies = [9016dependencies = [
9123 "bitvec",9017 "bitvec",
9124 "fatality",9018 "fatality",
91349028
9135[[package]]9029[[package]]
9136name = "polkadot-node-core-provisioner"9030name = "polkadot-node-core-provisioner"
9137version = "4.0.0"9031version = "10.0.0"
9138source = "registry+https://github.com/rust-lang/crates.io-index"9032source = "registry+https://github.com/rust-lang/crates.io-index"
9139checksum = "d8a67ac3aa0a0e89ff20d5eb761fca78c124848a2627e35343e824d78cc9fe91"9033checksum = "f9be87118cc96f05bd5a35bee2f8c495b894d23fbff1c954b15d7dbe4516564c"
9140dependencies = [9034dependencies = [
9141 "bitvec",9035 "bitvec",
9142 "fatality",9036 "fatality",
9146 "polkadot-node-subsystem",9040 "polkadot-node-subsystem",
9147 "polkadot-node-subsystem-util",9041 "polkadot-node-subsystem-util",
9148 "polkadot-primitives",9042 "polkadot-primitives",
9043 "schnellru",
9149 "thiserror",9044 "thiserror",
9150 "tracing-gum",9045 "tracing-gum",
9151]9046]
91529047
9153[[package]]9048[[package]]
9154name = "polkadot-node-core-pvf"9049name = "polkadot-node-core-pvf"
9155version = "4.0.0"9050version = "10.0.0"
9156source = "registry+https://github.com/rust-lang/crates.io-index"9051source = "registry+https://github.com/rust-lang/crates.io-index"
9157checksum = "6f58224dbfbd773947ff3fccc3318bda11909e8a0f7c36f7f1234c0c1f25a62a"9052checksum = "99c07e2dad8712e1e5978c6404aca20d2c7f1b5d6151d60277f49ce949b3ed5d"
9158dependencies = [9053dependencies = [
9159 "always-assert",9054 "always-assert",
9055 "array-bytes 6.2.3",
9056 "blake3",
9160 "cfg-if",9057 "cfg-if",
9161 "futures",9058 "futures",
9162 "futures-timer",9059 "futures-timer",
9168 "polkadot-node-core-pvf-common",9065 "polkadot-node-core-pvf-common",
9169 "polkadot-node-metrics",9066 "polkadot-node-metrics",
9170 "polkadot-node-primitives",9067 "polkadot-node-primitives",
9068 "polkadot-node-subsystem",
9171 "polkadot-parachain-primitives",9069 "polkadot-parachain-primitives",
9172 "polkadot-primitives",9070 "polkadot-primitives",
9173 "rand 0.8.5",9071 "rand",
9174 "slotmap",9072 "slotmap",
9175 "sp-core",9073 "sp-core",
9176 "sp-maybe-compressed-blob",9074 "sp-maybe-compressed-blob",
9177 "sp-wasm-interface",9075 "sp-wasm-interface",
9178 "tempfile",9076 "tempfile",
9077 "thiserror",
9179 "tokio",9078 "tokio",
9180 "tracing-gum",9079 "tracing-gum",
9181]9080]
91829081
9183[[package]]9082[[package]]
9184name = "polkadot-node-core-pvf-checker"9083name = "polkadot-node-core-pvf-checker"
9185version = "4.0.0"9084version = "10.0.0"
9186source = "registry+https://github.com/rust-lang/crates.io-index"9085source = "registry+https://github.com/rust-lang/crates.io-index"
9187checksum = "7abe14484e66b365748bd4b2988cc2c68e03146bc399bdf8139f9eb5cf6c6cf0"9086checksum = "1536bf89078dca39061f2a4d742e11dc14da38ffa5b6ce84e5c454cf9fd9b151"
9188dependencies = [9087dependencies = [
9189 "futures",9088 "futures",
9190 "polkadot-node-primitives",9089 "polkadot-node-primitives",
91999098
9200[[package]]9099[[package]]
9201name = "polkadot-node-core-pvf-common"9100name = "polkadot-node-core-pvf-common"
9202version = "4.0.0"9101version = "10.0.0"
9203source = "registry+https://github.com/rust-lang/crates.io-index"9102source = "registry+https://github.com/rust-lang/crates.io-index"
9204checksum = "94004d011a260b8efdf6ddf80ac815ba6ede84bb46e32d588161c1d860c5a65d"9103checksum = "2781bf5b07873b37ed5a76b28866367ea2529d4b91497c3db560c0eb59b2a2d9"
9205dependencies = [9104dependencies = [
9206 "cfg-if",9105 "cfg-if",
9207 "cpu-time",9106 "cpu-time",
9208 "futures",9107 "futures",
9209 "landlock",9108 "landlock",
9210 "libc",9109 "libc",
9110 "nix 0.27.1",
9211 "parity-scale-codec",9111 "parity-scale-codec",
9212 "polkadot-parachain-primitives",9112 "polkadot-parachain-primitives",
9213 "polkadot-primitives",9113 "polkadot-primitives",
9214 "sc-executor",9114 "sc-executor",
9215 "sc-executor-common",9115 "sc-executor-common",
9216 "sc-executor-wasmtime",9116 "sc-executor-wasmtime",
9117 "seccompiler",
9217 "sp-core",9118 "sp-core",
9119 "sp-crypto-hashing",
9218 "sp-externalities",9120 "sp-externalities",
9219 "sp-io",9121 "sp-io",
9220 "sp-tracing",9122 "sp-tracing",
9221 "tokio",9123 "thiserror",
9222 "tracing-gum",9124 "tracing-gum",
9223]9125]
92249126
9225[[package]]9127[[package]]
9226name = "polkadot-node-core-runtime-api"9128name = "polkadot-node-core-runtime-api"
9227version = "4.0.0"9129version = "10.0.0"
9228source = "registry+https://github.com/rust-lang/crates.io-index"9130source = "registry+https://github.com/rust-lang/crates.io-index"
9229checksum = "dccc7a95fea3562bd3a47f22c0e4ddcb755114dc0477f3173db8d5ebf0d84f50"9131checksum = "7065d7dd209b05ceaf3781ca0a7cdfcb0071c3a61a8357e37dff8587a94928d2"
9230dependencies = [9132dependencies = [
9231 "futures",9133 "futures",
9232 "polkadot-node-metrics",9134 "polkadot-node-metrics",
92409142
9241[[package]]9143[[package]]
9242name = "polkadot-node-jaeger"9144name = "polkadot-node-jaeger"
9243version = "4.0.0"9145version = "10.0.0"
9244source = "registry+https://github.com/rust-lang/crates.io-index"9146source = "registry+https://github.com/rust-lang/crates.io-index"
9245checksum = "2cfe6d4769181dce55b1b8fc53f0bd85bb4aa20473702fbce95a94abafa19379"9147checksum = "e14e65e3d9990d1f8f793a23c05c6aa82a551e551225ab86d2625474afef748f"
9246dependencies = [9148dependencies = [
9247 "lazy_static",9149 "lazy_static",
9248 "log",9150 "log",
9249 "mick-jaeger",9151 "mick-jaeger",
9250 "parity-scale-codec",9152 "parity-scale-codec",
9251 "parking_lot 0.12.1",9153 "parking_lot 0.12.2",
9252 "polkadot-node-primitives",9154 "polkadot-node-primitives",
9253 "polkadot-primitives",9155 "polkadot-primitives",
9254 "sc-network",9156 "sc-network",
92599161
9260[[package]]9162[[package]]
9261name = "polkadot-node-metrics"9163name = "polkadot-node-metrics"
9262version = "4.0.0"9164version = "10.0.0"
9263source = "registry+https://github.com/rust-lang/crates.io-index"9165source = "registry+https://github.com/rust-lang/crates.io-index"
9264checksum = "c51a586fc3ef87c685588a650c18882b4cf069d8adc0d7d9bd2670749cb4e82b"9166checksum = "a4ca58a67371546b66a011f0e27551094a8499a53223b16c164e769d25d981d0"
9265dependencies = [9167dependencies = [
9266 "bs58 0.5.0",9168 "bs58 0.5.1",
9267 "futures",9169 "futures",
9268 "futures-timer",9170 "futures-timer",
9269 "log",9171 "log",
92799181
9280[[package]]9182[[package]]
9281name = "polkadot-node-network-protocol"9183name = "polkadot-node-network-protocol"
9282version = "4.0.0"9184version = "10.0.0"
9283source = "registry+https://github.com/rust-lang/crates.io-index"9185source = "registry+https://github.com/rust-lang/crates.io-index"
9284checksum = "f6de513655bf71400299cda1ccaebfa612fd3965e7ce5a9120b4ff37bfc80931"9186checksum = "67c3b078794c9c383ee3ceff65f2713ec81c033c6d8785ead5f7797e914c1fe3"
9285dependencies = [9187dependencies = [
9286 "async-channel 1.9.0",9188 "async-channel 1.9.0",
9287 "async-trait",9189 "async-trait",
9294 "polkadot-node-jaeger",9196 "polkadot-node-jaeger",
9295 "polkadot-node-primitives",9197 "polkadot-node-primitives",
9296 "polkadot-primitives",9198 "polkadot-primitives",
9297 "rand 0.8.5",9199 "rand",
9298 "sc-authority-discovery",9200 "sc-authority-discovery",
9299 "sc-network",9201 "sc-network",
9300 "strum 0.24.1",9202 "strum 0.24.1",
93049206
9305[[package]]9207[[package]]
9306name = "polkadot-node-primitives"9208name = "polkadot-node-primitives"
9307version = "4.0.0"9209version = "10.0.0"
9308source = "registry+https://github.com/rust-lang/crates.io-index"9210source = "registry+https://github.com/rust-lang/crates.io-index"
9309checksum = "3e82ee5edac871310bd1ce16a035ad2fc901d6ddd69ea0bbabc7f0a70a02770a"9211checksum = "1d9521abb7028ce7040f66a0786423bee2cdb7725ca46e5cee1f86191bcb2ed3"
9310dependencies = [9212dependencies = [
9213 "bitvec",
9311 "bounded-vec",9214 "bounded-vec",
9312 "futures",9215 "futures",
9313 "parity-scale-codec",9216 "parity-scale-codec",
9314 "polkadot-parachain-primitives",9217 "polkadot-parachain-primitives",
9315 "polkadot-primitives",9218 "polkadot-primitives",
9316 "schnorrkel 0.9.1",9219 "schnorrkel 0.11.4",
9317 "serde",9220 "serde",
9318 "sp-application-crypto",9221 "sp-application-crypto",
9319 "sp-consensus-babe",9222 "sp-consensus-babe",
93279230
9328[[package]]9231[[package]]
9329name = "polkadot-node-subsystem"9232name = "polkadot-node-subsystem"
9330version = "4.0.0"9233version = "10.0.0"
9331source = "registry+https://github.com/rust-lang/crates.io-index"9234source = "registry+https://github.com/rust-lang/crates.io-index"
9332checksum = "0e89d3f964ebd57275c2fff4d3cc755d210698fedeac1a0a238c0eb31534c96d"9235checksum = "c7865c507f0eab9d816c40b1d4e2acb4e8f77db9efc8c0af23942d6b0f50e6f6"
9333dependencies = [9236dependencies = [
9334 "polkadot-node-jaeger",9237 "polkadot-node-jaeger",
9335 "polkadot-node-subsystem-types",9238 "polkadot-node-subsystem-types",
93389241
9339[[package]]9242[[package]]
9340name = "polkadot-node-subsystem-types"9243name = "polkadot-node-subsystem-types"
9341version = "4.0.0"9244version = "10.0.0"
9342source = "registry+https://github.com/rust-lang/crates.io-index"9245source = "registry+https://github.com/rust-lang/crates.io-index"
9343checksum = "8e1013b3bac6e9b76bbd71433c3eba36b5c0fa9306bfc473ec02e3a104e156d2"9246checksum = "bf0e971c1377901212059b794b48acac9a855cac83f2e07dc1b708ca0e77ba64"
9344dependencies = [9247dependencies = [
9345 "async-trait",9248 "async-trait",
9249 "bitvec",
9346 "derive_more",9250 "derive_more",
9347 "futures",9251 "futures",
9348 "orchestra",9252 "orchestra",
9357 "smallvec",9261 "smallvec",
9358 "sp-api",9262 "sp-api",
9359 "sp-authority-discovery",9263 "sp-authority-discovery",
9264 "sp-blockchain",
9360 "sp-consensus-babe",9265 "sp-consensus-babe",
9266 "sp-runtime",
9361 "substrate-prometheus-endpoint",9267 "substrate-prometheus-endpoint",
9362 "thiserror",9268 "thiserror",
9363]9269]
93649270
9365[[package]]9271[[package]]
9366name = "polkadot-node-subsystem-util"9272name = "polkadot-node-subsystem-util"
9367version = "4.0.0"9273version = "10.0.0"
9368source = "registry+https://github.com/rust-lang/crates.io-index"9274source = "registry+https://github.com/rust-lang/crates.io-index"
9369checksum = "8134075bfee921305ff229412e9282a3351215bf049c6a403197cc795f919941"9275checksum = "4937553bd1a5f9ee9343a1a227ae07237b48a29c99ecd53217b090ca84b753c6"
9370dependencies = [9276dependencies = [
9371 "async-trait",9277 "async-trait",
9372 "derive_more",9278 "derive_more",
9377 "kvdb",9283 "kvdb",
9378 "parity-db",9284 "parity-db",
9379 "parity-scale-codec",9285 "parity-scale-codec",
9380 "parking_lot 0.11.2",9286 "parking_lot 0.12.2",
9381 "pin-project",9287 "pin-project",
9382 "polkadot-node-jaeger",9288 "polkadot-node-jaeger",
9383 "polkadot-node-metrics",9289 "polkadot-node-metrics",
9388 "polkadot-overseer",9294 "polkadot-overseer",
9389 "polkadot-primitives",9295 "polkadot-primitives",
9390 "prioritized-metered-channel",9296 "prioritized-metered-channel",
9391 "rand 0.8.5",9297 "rand",
9392 "sc-client-api",9298 "sc-client-api",
9393 "schnellru",9299 "schnellru",
9394 "sp-application-crypto",9300 "sp-application-crypto",
94009306
9401[[package]]9307[[package]]
9402name = "polkadot-overseer"9308name = "polkadot-overseer"
9403version = "4.0.0"9309version = "10.0.0"
9404source = "registry+https://github.com/rust-lang/crates.io-index"9310source = "registry+https://github.com/rust-lang/crates.io-index"
9405checksum = "e2f547e981cbd72357ba30952193844d30de5063e9d304c117c9b941f12b5f84"9311checksum = "97415bc09e9dd20d44a019eaf0bb803ab3239a7eca20820b181e53901966fdbc"
9406dependencies = [9312dependencies = [
9407 "async-trait",9313 "async-trait",
9408 "futures",9314 "futures",
9409 "futures-timer",9315 "futures-timer",
9410 "orchestra",9316 "orchestra",
9411 "parking_lot 0.12.1",9317 "parking_lot 0.12.2",
9412 "polkadot-node-metrics",9318 "polkadot-node-metrics",
9413 "polkadot-node-network-protocol",9319 "polkadot-node-network-protocol",
9414 "polkadot-node-primitives",9320 "polkadot-node-primitives",
94239329
9424[[package]]9330[[package]]
9425name = "polkadot-parachain-primitives"9331name = "polkadot-parachain-primitives"
9426version = "3.0.0"9332version = "9.0.0"
9427source = "registry+https://github.com/rust-lang/crates.io-index"9333source = "registry+https://github.com/rust-lang/crates.io-index"
9428checksum = "42265630c0c48e25d7ee5a9f4bdcafd003be65c0a44deeb6541620ca169fa519"9334checksum = "4b87dda07862f2b16f2c2b7d315f2b4549c896562d973d466b6d19de36aba30d"
9429dependencies = [9335dependencies = [
9430 "bounded-collections",9336 "bounded-collections",
9431 "derive_more",9337 "derive_more",
9432 "frame-support",
9433 "parity-scale-codec",9338 "parity-scale-codec",
9434 "polkadot-core-primitives",9339 "polkadot-core-primitives",
9435 "scale-info",9340 "scale-info",
9436 "serde",9341 "serde",
9437 "sp-core",9342 "sp-core",
9438 "sp-runtime",9343 "sp-runtime",
9439 "sp-std",9344 "sp-std",
9345 "sp-weights",
9440]9346]
94419347
9442[[package]]9348[[package]]
9443name = "polkadot-primitives"9349name = "polkadot-primitives"
9444version = "4.0.0"9350version = "10.0.0"
9445source = "registry+https://github.com/rust-lang/crates.io-index"9351source = "registry+https://github.com/rust-lang/crates.io-index"
9446checksum = "ee4508ff6b035edc08c54bb61238500179963f6f1eb8266dce6a5625509124bc"9352checksum = "7e01b525a35852e2861397eecbdb4a03dda69f14f7ca04968f2e06d6cba51dfb"
9447dependencies = [9353dependencies = [
9448 "bitvec",9354 "bitvec",
9449 "hex-literal",9355 "hex-literal",
9356 "log",
9450 "parity-scale-codec",9357 "parity-scale-codec",
9451 "polkadot-core-primitives",9358 "polkadot-core-primitives",
9452 "polkadot-parachain-primitives",9359 "polkadot-parachain-primitives",
94689375
9469[[package]]9376[[package]]
9470name = "polkadot-rpc"9377name = "polkadot-rpc"
9471version = "4.0.0"9378version = "10.0.0"
9472source = "registry+https://github.com/rust-lang/crates.io-index"9379source = "registry+https://github.com/rust-lang/crates.io-index"
9473checksum = "ce0432643ea2e4923db1f0ba6c82305c53725e18c857e911c4d979e4f7aafae5"9380checksum = "9bf68469a4e01a0c8a16869fde6de3071fbebdf836058c8afe8396470ef2c462"
9474dependencies = [9381dependencies = [
9475 "jsonrpsee",9382 "jsonrpsee",
9476 "mmr-rpc",9383 "mmr-rpc",
9486 "sc-consensus-grandpa",9393 "sc-consensus-grandpa",
9487 "sc-consensus-grandpa-rpc",9394 "sc-consensus-grandpa-rpc",
9488 "sc-rpc",9395 "sc-rpc",
9396 "sc-rpc-spec-v2",
9489 "sc-sync-state-rpc",9397 "sc-sync-state-rpc",
9490 "sc-transaction-pool-api",9398 "sc-transaction-pool-api",
9491 "sp-api",9399 "sp-api",
95019409
9502[[package]]9410[[package]]
9503name = "polkadot-runtime-common"9411name = "polkadot-runtime-common"
9504version = "4.0.0"9412version = "10.0.0"
9505source = "registry+https://github.com/rust-lang/crates.io-index"9413source = "registry+https://github.com/rust-lang/crates.io-index"
9506checksum = "a788f8ed8b33262c33f72d78e3416c5991e40d333178ae43000a92181ee44bca"9414checksum = "b1abd7bff20e17e025a4e001aff55dfefcfd7ef8a8ae138de44998a012e227f2"
9507dependencies = [9415dependencies = [
9508 "bitvec",9416 "bitvec",
9509 "frame-benchmarking",9417 "frame-benchmarking",
9517 "pallet-authorship",9425 "pallet-authorship",
9518 "pallet-babe",9426 "pallet-babe",
9519 "pallet-balances",9427 "pallet-balances",
9428 "pallet-broker",
9520 "pallet-election-provider-multi-phase",9429 "pallet-election-provider-multi-phase",
9521 "pallet-fast-unstake",9430 "pallet-fast-unstake",
9431 "pallet-identity 31.0.0",
9522 "pallet-session",9432 "pallet-session",
9523 "pallet-staking",9433 "pallet-staking",
9524 "pallet-staking-reward-fn",9434 "pallet-staking-reward-fn",
9525 "pallet-timestamp",9435 "pallet-timestamp",
9526 "pallet-transaction-payment",9436 "pallet-transaction-payment",
9527 "pallet-treasury",9437 "pallet-treasury",
9528 "pallet-vesting",9438 "pallet-vesting",
9529 "pallet-xcm-benchmarks",
9530 "parity-scale-codec",9439 "parity-scale-codec",
9531 "polkadot-primitives",9440 "polkadot-primitives",
9532 "polkadot-runtime-parachains",9441 "polkadot-runtime-parachains",
95529461
9553[[package]]9462[[package]]
9554name = "polkadot-runtime-metrics"9463name = "polkadot-runtime-metrics"
9555version = "4.0.0"9464version = "10.0.0"
9556source = "registry+https://github.com/rust-lang/crates.io-index"9465source = "registry+https://github.com/rust-lang/crates.io-index"
9557checksum = "bfe45b01d9d621174c9c0eef0871aeead5986393838206fe58df3ae414bcb8d2"9466checksum = "4fed9088becfd874b6dbf064f9d1dd1bfa2e3c2188459a572aac2e689c028772"
9558dependencies = [9467dependencies = [
9559 "bs58 0.5.0",9468 "bs58 0.5.1",
9560 "frame-benchmarking",9469 "frame-benchmarking",
9561 "parity-scale-codec",9470 "parity-scale-codec",
9562 "polkadot-primitives",9471 "polkadot-primitives",
95669475
9567[[package]]9476[[package]]
9568name = "polkadot-runtime-parachains"9477name = "polkadot-runtime-parachains"
9569version = "4.0.0"9478version = "10.0.0"
9570source = "registry+https://github.com/rust-lang/crates.io-index"9479source = "registry+https://github.com/rust-lang/crates.io-index"
9571checksum = "936dbae8a7a88dba07da726d779126716e05364d8475ced1c313f32755050a02"9480checksum = "8ce601c5f1005ff1d315c1e5c161a73e63e54bf23527f98c2bfa3ffc5b22f5e6"
9572dependencies = [9481dependencies = [
9573 "bitflags 1.3.2",9482 "bitflags 1.3.2",
9574 "bitvec",9483 "bitvec",
9582 "pallet-authorship",9491 "pallet-authorship",
9583 "pallet-babe",9492 "pallet-babe",
9584 "pallet-balances",9493 "pallet-balances",
9494 "pallet-broker",
9585 "pallet-message-queue",9495 "pallet-message-queue",
9586 "pallet-session",9496 "pallet-session",
9587 "pallet-staking",9497 "pallet-staking",
9592 "polkadot-parachain-primitives",9502 "polkadot-parachain-primitives",
9593 "polkadot-primitives",9503 "polkadot-primitives",
9594 "polkadot-runtime-metrics",9504 "polkadot-runtime-metrics",
9595 "rand 0.8.5",9505 "rand",
9596 "rand_chacha 0.3.1",9506 "rand_chacha 0.3.1",
9597 "rustc-hex",9507 "rustc-hex",
9598 "scale-info",9508 "scale-info",
9599 "serde",9509 "serde",
9600 "sp-api",9510 "sp-api",
9601 "sp-application-crypto",9511 "sp-application-crypto",
9512 "sp-arithmetic",
9602 "sp-core",9513 "sp-core",
9603 "sp-inherents",9514 "sp-inherents",
9604 "sp-io",9515 "sp-io",
96149525
9615[[package]]9526[[package]]
9616name = "polkadot-service"9527name = "polkadot-service"
9617version = "4.0.0"9528version = "10.0.0"
9618source = "registry+https://github.com/rust-lang/crates.io-index"9529source = "registry+https://github.com/rust-lang/crates.io-index"
9619checksum = "afc65d44c4dd6a8be74194dcac66552dd4e79ee0bcc287349721925e8238177a"9530checksum = "322db94a98084bf62ac2c58194856d823455ceb74000c9602f817b8b738a8f78"
9620dependencies = [9531dependencies = [
9621 "async-trait",9532 "async-trait",
9622 "frame-benchmarking",9533 "frame-benchmarking",
9638 "pallet-transaction-payment-rpc-runtime-api",9549 "pallet-transaction-payment-rpc-runtime-api",
9639 "parity-db",9550 "parity-db",
9640 "parity-scale-codec",9551 "parity-scale-codec",
9552 "parking_lot 0.12.2",
9641 "polkadot-approval-distribution",9553 "polkadot-approval-distribution",
9642 "polkadot-availability-bitfield-distribution",9554 "polkadot-availability-bitfield-distribution",
9643 "polkadot-availability-distribution",9555 "polkadot-availability-distribution",
97319643
9732[[package]]9644[[package]]
9733name = "polkadot-statement-distribution"9645name = "polkadot-statement-distribution"
9734version = "4.0.0"9646version = "10.0.0"
9735source = "registry+https://github.com/rust-lang/crates.io-index"9647source = "registry+https://github.com/rust-lang/crates.io-index"
9736checksum = "f6992cb6e2ba744752f9f403cb5e0f70ac5431f39f9ea859a3978f22c79799cb"9648checksum = "38a4ef148c9bbed26f8630311ac26c9df1c07195a46a84fb5e8e7e7122e90248"
9737dependencies = [9649dependencies = [
9738 "arrayvec 0.7.4",9650 "arrayvec 0.7.4",
9739 "bitvec",9651 "bitvec",
9740 "fatality",9652 "fatality",
9741 "futures",9653 "futures",
9742 "futures-timer",9654 "futures-timer",
9743 "indexmap 1.9.3",9655 "indexmap 2.2.6",
9744 "parity-scale-codec",9656 "parity-scale-codec",
9745 "polkadot-node-network-protocol",9657 "polkadot-node-network-protocol",
9746 "polkadot-node-primitives",9658 "polkadot-node-primitives",
9747 "polkadot-node-subsystem",9659 "polkadot-node-subsystem",
9748 "polkadot-node-subsystem-types",
9749 "polkadot-node-subsystem-util",9660 "polkadot-node-subsystem-util",
9750 "polkadot-primitives",9661 "polkadot-primitives",
9751 "sp-keystore",9662 "sp-keystore",
97569667
9757[[package]]9668[[package]]
9758name = "polkadot-statement-table"9669name = "polkadot-statement-table"
9759version = "4.0.0"9670version = "10.0.0"
9760source = "registry+https://github.com/rust-lang/crates.io-index"9671source = "registry+https://github.com/rust-lang/crates.io-index"
9761checksum = "22b2a11cb8871f7e30a8f5e455c92d19a186065644ee00f9acda550ff89dacce"9672checksum = "a18144720acd47e1243b60c20bfb03f73dc67cbaf61bf2820991961e1ebb803b"
9762dependencies = [9673dependencies = [
9763 "parity-scale-codec",9674 "parity-scale-codec",
9764 "polkadot-primitives",9675 "polkadot-primitives",
9765 "sp-core",9676 "sp-core",
9677 "tracing-gum",
9766]9678]
97679679
9768[[package]]9680[[package]]
9681name = "polkavm"
9682version = "0.9.3"
9683source = "registry+https://github.com/rust-lang/crates.io-index"
9684checksum = "8a3693e5efdb2bf74e449cd25fd777a28bd7ed87e41f5d5da75eb31b4de48b94"
9685dependencies = [
9686 "libc",
9687 "log",
9688 "polkavm-assembler",
9689 "polkavm-common 0.9.0",
9690 "polkavm-linux-raw",
9691]
9692
9693[[package]]
9694name = "polkavm-assembler"
9695version = "0.9.0"
9696source = "registry+https://github.com/rust-lang/crates.io-index"
9697checksum = "1fa96d6d868243acc12de813dd48e756cbadcc8e13964c70d272753266deadc1"
9698dependencies = [
9699 "log",
9700]
9701
9702[[package]]
9703name = "polkavm-common"
9704version = "0.8.0"
9705source = "registry+https://github.com/rust-lang/crates.io-index"
9706checksum = "92c99f7eee94e7be43ba37eef65ad0ee8cbaf89b7c00001c3f6d2be985cb1817"
9707
9708[[package]]
9709name = "polkavm-common"
9710version = "0.9.0"
9711source = "registry+https://github.com/rust-lang/crates.io-index"
9712checksum = "1d9428a5cfcc85c5d7b9fc4b6a18c4b802d0173d768182a51cc7751640f08b92"
9713dependencies = [
9714 "log",
9715]
9716
9717[[package]]
9718name = "polkavm-derive"
9719version = "0.8.0"
9720source = "registry+https://github.com/rust-lang/crates.io-index"
9721checksum = "79fa916f7962348bd1bb1a65a83401675e6fc86c51a0fdbcf92a3108e58e6125"
9722dependencies = [
9723 "polkavm-derive-impl-macro 0.8.0",
9724]
9725
9726[[package]]
9727name = "polkavm-derive"
9728version = "0.9.1"
9729source = "registry+https://github.com/rust-lang/crates.io-index"
9730checksum = "ae8c4bea6f3e11cd89bb18bcdddac10bd9a24015399bd1c485ad68a985a19606"
9731dependencies = [
9732 "polkavm-derive-impl-macro 0.9.0",
9733]
9734
9735[[package]]
9736name = "polkavm-derive-impl"
9737version = "0.8.0"
9738source = "registry+https://github.com/rust-lang/crates.io-index"
9739checksum = "c10b2654a8a10a83c260bfb93e97b262cf0017494ab94a65d389e0eda6de6c9c"
9740dependencies = [
9741 "polkavm-common 0.8.0",
9742 "proc-macro2",
9743 "quote",
9744 "syn 2.0.65",
9745]
9746
9747[[package]]
9748name = "polkavm-derive-impl"
9749version = "0.9.0"
9750source = "registry+https://github.com/rust-lang/crates.io-index"
9751checksum = "5c4fdfc49717fb9a196e74a5d28e0bc764eb394a2c803eb11133a31ac996c60c"
9752dependencies = [
9753 "polkavm-common 0.9.0",
9754 "proc-macro2",
9755 "quote",
9756 "syn 2.0.65",
9757]
9758
9759[[package]]
9760name = "polkavm-derive-impl-macro"
9761version = "0.8.0"
9762source = "registry+https://github.com/rust-lang/crates.io-index"
9763checksum = "15e85319a0d5129dc9f021c62607e0804f5fb777a05cdda44d750ac0732def66"
9764dependencies = [
9765 "polkavm-derive-impl 0.8.0",
9766 "syn 2.0.65",
9767]
9768
9769[[package]]
9770name = "polkavm-derive-impl-macro"
9771version = "0.9.0"
9772source = "registry+https://github.com/rust-lang/crates.io-index"
9773checksum = "8ba81f7b5faac81e528eb6158a6f3c9e0bb1008e0ffa19653bc8dea925ecb429"
9774dependencies = [
9775 "polkavm-derive-impl 0.9.0",
9776 "syn 2.0.65",
9777]
9778
9779[[package]]
9780name = "polkavm-linker"
9781version = "0.9.2"
9782source = "registry+https://github.com/rust-lang/crates.io-index"
9783checksum = "9c7be503e60cf56c0eb785f90aaba4b583b36bff00e93997d93fef97f9553c39"
9784dependencies = [
9785 "gimli 0.28.1",
9786 "hashbrown 0.14.5",
9787 "log",
9788 "object 0.32.2",
9789 "polkavm-common 0.9.0",
9790 "regalloc2 0.9.3",
9791 "rustc-demangle",
9792]
9793
9794[[package]]
9795name = "polkavm-linux-raw"
9796version = "0.9.0"
9797source = "registry+https://github.com/rust-lang/crates.io-index"
9798checksum = "26e85d3456948e650dff0cfc85603915847faf893ed1e66b020bb82ef4557120"
9799
9800[[package]]
9769name = "polling"9801name = "polling"
9770version = "2.8.0"9802version = "2.8.0"
9771source = "registry+https://github.com/rust-lang/crates.io-index"9803source = "registry+https://github.com/rust-lang/crates.io-index"
9777 "concurrent-queue",9809 "concurrent-queue",
9778 "libc",9810 "libc",
9779 "log",9811 "log",
9780 "pin-project-lite 0.2.13",9812 "pin-project-lite 0.2.14",
9781 "windows-sys 0.48.0",9813 "windows-sys 0.48.0",
9782]9814]
97839815
9784[[package]]9816[[package]]
9785name = "polling"9817name = "polling"
9786version = "3.3.0"9818version = "3.7.0"
9787source = "registry+https://github.com/rust-lang/crates.io-index"9819source = "registry+https://github.com/rust-lang/crates.io-index"
9788checksum = "e53b6af1f60f36f8c2ac2aad5459d75a5a9b4be1e8cdd40264f315d78193e531"9820checksum = "645493cf344456ef24219d02a768cf1fb92ddf8c92161679ae3d91b91a637be3"
9789dependencies = [9821dependencies = [
9790 "cfg-if",9822 "cfg-if",
9791 "concurrent-queue",9823 "concurrent-queue",
9792 "pin-project-lite 0.2.13",9824 "hermit-abi",
9825 "pin-project-lite 0.2.14",
9793 "rustix 0.38.25",9826 "rustix 0.38.34",
9794 "tracing",9827 "tracing",
9795 "windows-sys 0.48.0",9828 "windows-sys 0.52.0",
9796]9829]
97979830
9798[[package]]9831[[package]]
9802checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"9835checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
9803dependencies = [9836dependencies = [
9804 "cpufeatures",9837 "cpufeatures",
9805 "opaque-debug 0.3.0",9838 "opaque-debug 0.3.1",
9806 "universal-hash 0.5.1",9839 "universal-hash",
9807]9840]
98089841
9809[[package]]9842[[package]]
9810name = "polyval"9843name = "polyval"
9811version = "0.5.3"9844version = "0.6.2"
9812source = "registry+https://github.com/rust-lang/crates.io-index"9845source = "registry+https://github.com/rust-lang/crates.io-index"
9813checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"9846checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
9814dependencies = [9847dependencies = [
9815 "cfg-if",9848 "cfg-if",
9816 "cpufeatures",9849 "cpufeatures",
9817 "opaque-debug 0.3.0",9850 "opaque-debug 0.3.1",
9818 "universal-hash 0.4.1",9851 "universal-hash",
9819]9852]
98209853
9821[[package]]9854[[package]]
9822name = "polyval"
9823version = "0.6.1"
9824source = "registry+https://github.com/rust-lang/crates.io-index"
9825checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb"
9826dependencies = [
9827 "cfg-if",
9828 "cpufeatures",
9829 "opaque-debug 0.3.0",
9830 "universal-hash 0.5.1",
9831]
9832
9833[[package]]
9834name = "portable-atomic"9855name = "portable-atomic"
9835version = "1.5.1"9856version = "1.6.0"
9836source = "registry+https://github.com/rust-lang/crates.io-index"9857source = "registry+https://github.com/rust-lang/crates.io-index"
9837checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b"9858checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
98389859
9839[[package]]9860[[package]]
9840name = "powerfmt"9861name = "powerfmt"
9890]9911]
98919912
9892[[package]]9913[[package]]
9914name = "prettier-please"
9915version = "0.2.0"
9916source = "registry+https://github.com/rust-lang/crates.io-index"
9917checksum = "22020dfcf177fcc7bf5deaf7440af371400c67c0de14c399938d8ed4fb4645d3"
9918dependencies = [
9919 "proc-macro2",
9920 "syn 2.0.65",
9921]
9922
9923[[package]]
9893name = "prettyplease"9924name = "prettyplease"
9894version = "0.1.25"9925version = "0.1.11"
9895source = "registry+https://github.com/rust-lang/crates.io-index"9926source = "registry+https://github.com/rust-lang/crates.io-index"
9896checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"9927checksum = "f28f53e8b192565862cf99343194579a022eb9c7dd3a8d03134734803c7b3125"
9897dependencies = [9928dependencies = [
9898 "proc-macro2",9929 "proc-macro2",
9899 "syn 1.0.109",9930 "syn 1.0.109",
9900]9931]
99019932
9902[[package]]9933[[package]]
9903name = "prettyplease"9934name = "prettyplease"
9904version = "0.2.15"9935version = "0.2.20"
9905source = "registry+https://github.com/rust-lang/crates.io-index"9936source = "registry+https://github.com/rust-lang/crates.io-index"
9906checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d"9937checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e"
9907dependencies = [9938dependencies = [
9908 "proc-macro2",9939 "proc-macro2",
9909 "syn 2.0.39",9940 "syn 2.0.65",
9910]9941]
99119942
9912[[package]]9943[[package]]
99259956
9926[[package]]9957[[package]]
9927name = "prioritized-metered-channel"9958name = "prioritized-metered-channel"
9928version = "0.5.1"9959version = "0.6.1"
9929source = "registry+https://github.com/rust-lang/crates.io-index"9960source = "registry+https://github.com/rust-lang/crates.io-index"
9930checksum = "e99f0c89bd88f393aab44a4ab949351f7bc7e7e1179d11ecbfe50cbe4c47e342"9961checksum = "a172e6cc603231f2cf004232eabcecccc0da53ba576ab286ef7baa0cfc7927ad"
9931dependencies = [9962dependencies = [
9932 "coarsetime",9963 "coarsetime",
9933 "crossbeam-queue",9964 "crossbeam-queue",
99519982
9952[[package]]9983[[package]]
9953name = "proc-macro-crate"9984name = "proc-macro-crate"
9954version = "2.0.0"9985version = "3.1.0"
9955source = "registry+https://github.com/rust-lang/crates.io-index"9986source = "registry+https://github.com/rust-lang/crates.io-index"
9956checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8"9987checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
9957dependencies = [9988dependencies = [
9958 "toml_edit 0.20.7",9989 "toml_edit 0.21.1",
9959]9990]
99609991
9961[[package]]9992[[package]]
998410015
9985[[package]]10016[[package]]
9986name = "proc-macro-warning"10017name = "proc-macro-warning"
9987version = "1.0.0"10018version = "1.0.2"
9988source = "registry+https://github.com/rust-lang/crates.io-index"10019source = "registry+https://github.com/rust-lang/crates.io-index"
9989checksum = "9b698b0b09d40e9b7c1a47b132d66a8b54bcd20583d9b6d06e4535e383b4405c"10020checksum = "834da187cfe638ae8abb0203f0b33e5ccdb02a28e7199f2f47b3e2754f50edca"
9990dependencies = [10021dependencies = [
9991 "proc-macro2",10022 "proc-macro2",
9992 "quote",10023 "quote",
9993 "syn 2.0.39",10024 "syn 2.0.65",
9994]10025]
999510026
9996[[package]]10027[[package]]
9997name = "proc-macro2"10028name = "proc-macro2"
9998version = "1.0.69"10029version = "1.0.83"
9999source = "registry+https://github.com/rust-lang/crates.io-index"10030source = "registry+https://github.com/rust-lang/crates.io-index"
10000checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"10031checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43"
10001dependencies = [10032dependencies = [
10002 "unicode-ident",10033 "unicode-ident",
10003]10034]
1000410035
10005[[package]]10036[[package]]
10006name = "prometheus"10037name = "prometheus"
10007version = "0.13.3"10038version = "0.13.4"
10008source = "registry+https://github.com/rust-lang/crates.io-index"10039source = "registry+https://github.com/rust-lang/crates.io-index"
10009checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c"10040checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
10010dependencies = [10041dependencies = [
10011 "cfg-if",10042 "cfg-if",
10012 "fnv",10043 "fnv",
10013 "lazy_static",10044 "lazy_static",
10014 "memchr",10045 "memchr",
10015 "parking_lot 0.12.1",10046 "parking_lot 0.12.2",
10016 "thiserror",10047 "thiserror",
10017]10048]
1001810049
10024dependencies = [10055dependencies = [
10025 "dtoa",10056 "dtoa",
10026 "itoa",10057 "itoa",
10027 "parking_lot 0.12.1",10058 "parking_lot 0.12.2",
10028 "prometheus-client-derive-encode",10059 "prometheus-client-derive-encode",
10029]10060]
1003010061
10036dependencies = [10067dependencies = [
10037 "proc-macro2",10068 "proc-macro2",
10038 "quote",10069 "quote",
10039 "syn 2.0.39",10070 "syn 2.0.65",
10040]10071]
1004110072
10042[[package]]10073[[package]]
10046checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"10077checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
10047dependencies = [10078dependencies = [
10048 "bytes",10079 "bytes",
10049 "prost-derive",10080 "prost-derive 0.11.9",
10050]10081]
1005110082
10052[[package]]10083[[package]]
10084name = "prost"
10085version = "0.12.6"
10086source = "registry+https://github.com/rust-lang/crates.io-index"
10087checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
10088dependencies = [
10089 "bytes",
10090 "prost-derive 0.12.6",
10091]
10092
10093[[package]]
10053name = "prost-build"10094name = "prost-build"
10054version = "0.11.9"10095version = "0.11.9"
10055source = "registry+https://github.com/rust-lang/crates.io-index"10096source = "registry+https://github.com/rust-lang/crates.io-index"
10056checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"10097checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"
10057dependencies = [10098dependencies = [
10058 "bytes",10099 "bytes",
10059 "heck",10100 "heck 0.4.1",
10060 "itertools 0.10.5",10101 "itertools 0.10.5",
10061 "lazy_static",10102 "lazy_static",
10062 "log",10103 "log",
10063 "multimap",10104 "multimap",
10064 "petgraph",10105 "petgraph",
10065 "prettyplease 0.1.25",10106 "prettyplease 0.1.11",
10066 "prost",10107 "prost 0.11.9",
10067 "prost-types",10108 "prost-types",
10068 "regex",10109 "regex",
10069 "syn 1.0.109",10110 "syn 1.0.109",
10085]10126]
1008610127
10087[[package]]10128[[package]]
10129name = "prost-derive"
10130version = "0.12.6"
10131source = "registry+https://github.com/rust-lang/crates.io-index"
10132checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
10133dependencies = [
10134 "anyhow",
10135 "itertools 0.12.1",
10136 "proc-macro2",
10137 "quote",
10138 "syn 2.0.65",
10139]
10140
10141[[package]]
10088name = "prost-types"10142name = "prost-types"
10089version = "0.11.9"10143version = "0.11.9"
10090source = "registry+https://github.com/rust-lang/crates.io-index"10144source = "registry+https://github.com/rust-lang/crates.io-index"
10091checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"10145checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
10092dependencies = [10146dependencies = [
10093 "prost",10147 "prost 0.11.9",
10094]10148]
1009510149
10096[[package]]10150[[package]]
10103]10157]
1010410158
10105[[package]]10159[[package]]
10160name = "quanta"
10161version = "0.12.3"
10162source = "registry+https://github.com/rust-lang/crates.io-index"
10163checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5"
10164dependencies = [
10165 "crossbeam-utils",
10166 "libc",
10167 "once_cell",
10168 "raw-cpuid",
10169 "wasi 0.11.0+wasi-snapshot-preview1",
10170 "web-sys",
10171 "winapi",
10172]
10173
10174[[package]]
10106name = "quartz-runtime"10175name = "quartz-runtime"
10107version = "1.3.0"10176version = "1.3.0"
10108dependencies = [10177dependencies = [
10141 "pallet-balances",10210 "pallet-balances",
10142 "pallet-balances-adapter",10211 "pallet-balances-adapter",
10143 "pallet-base-fee",10212 "pallet-base-fee",
10144 "pallet-collator-selection",10213 "pallet-collator-selection 5.0.0",
10145 "pallet-collective",10214 "pallet-collective",
10146 "pallet-common",10215 "pallet-common",
10147 "pallet-configuration",10216 "pallet-configuration",
10160 "pallet-inflation",10229 "pallet-inflation",
10161 "pallet-maintenance",10230 "pallet-maintenance",
10162 "pallet-membership",10231 "pallet-membership",
10232 "pallet-message-queue",
10163 "pallet-nonfungible",10233 "pallet-nonfungible",
10164 "pallet-preimage",10234 "pallet-preimage",
10165 "pallet-ranked-collective",10235 "pallet-ranked-collective",
10179 "pallet-unique",10249 "pallet-unique",
10180 "pallet-utility",10250 "pallet-utility",
10181 "pallet-xcm",10251 "pallet-xcm",
10252 "parachains-common",
10182 "parity-scale-codec",10253 "parity-scale-codec",
10183 "polkadot-parachain-primitives",10254 "polkadot-parachain-primitives",
10184 "polkadot-runtime-common",10255 "polkadot-runtime-common",
10191 "sp-block-builder",10262 "sp-block-builder",
10192 "sp-consensus-aura",10263 "sp-consensus-aura",
10193 "sp-core",10264 "sp-core",
10265 "sp-genesis-builder",
10194 "sp-inherents",10266 "sp-inherents",
10195 "sp-io",10267 "sp-io",
10196 "sp-offchain",10268 "sp-offchain",
10258checksum = "94b0b33c13a79f669c85defaf4c275dc86a0c0372807d0ca3d78e0bb87274863"10330checksum = "94b0b33c13a79f669c85defaf4c275dc86a0c0372807d0ca3d78e0bb87274863"
10259dependencies = [10331dependencies = [
10260 "bytes",10332 "bytes",
10261 "rand 0.8.5",10333 "rand",
10262 "ring 0.16.20",10334 "ring 0.16.20",
10263 "rustc-hash",10335 "rustc-hash",
10264 "rustls 0.20.9",10336 "rustls 0.20.9",
10265 "slab",10337 "slab",
10266 "thiserror",10338 "thiserror",
10267 "tinyvec",10339 "tinyvec",
10268 "tracing",10340 "tracing",
10269 "webpki 0.22.4",10341 "webpki",
10270]10342]
1027110343
10272[[package]]10344[[package]]
10273name = "quote"10345name = "quote"
10274version = "1.0.33"10346version = "1.0.36"
10275source = "registry+https://github.com/rust-lang/crates.io-index"10347source = "registry+https://github.com/rust-lang/crates.io-index"
10276checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"10348checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
10277dependencies = [10349dependencies = [
10278 "proc-macro2",10350 "proc-macro2",
10279]10351]
1028610358
10287[[package]]10359[[package]]
10288name = "rand"10360name = "rand"
10289version = "0.7.3"
10290source = "registry+https://github.com/rust-lang/crates.io-index"
10291checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
10292dependencies = [
10293 "getrandom 0.1.16",
10294 "libc",
10295 "rand_chacha 0.2.2",
10296 "rand_core 0.5.1",
10297 "rand_hc",
10298]
10299
10300[[package]]
10301name = "rand"
10302version = "0.8.5"10361version = "0.8.5"
10303source = "registry+https://github.com/rust-lang/crates.io-index"10362source = "registry+https://github.com/rust-lang/crates.io-index"
10304checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"10363checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
10343source = "registry+https://github.com/rust-lang/crates.io-index"10402source = "registry+https://github.com/rust-lang/crates.io-index"
10344checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"10403checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
10345dependencies = [10404dependencies = [
10346 "getrandom 0.2.11",10405 "getrandom 0.2.15",
10347]10406]
1034810407
10349[[package]]10408[[package]]
10353checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"10412checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
10354dependencies = [10413dependencies = [
10355 "num-traits",10414 "num-traits",
10356 "rand 0.8.5",10415 "rand",
10357]10416]
1035810417
10359[[package]]10418[[package]]
10360name = "rand_hc"10419name = "rand_pcg"
10361version = "0.2.0"10420version = "0.3.1"
10362source = "registry+https://github.com/rust-lang/crates.io-index"10421source = "registry+https://github.com/rust-lang/crates.io-index"
10363checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"10422checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
10364dependencies = [10423dependencies = [
10365 "rand_core 0.5.1",10424 "rand_core 0.6.4",
10366]10425]
1036710426
10368[[package]]10427[[package]]
10369name = "rand_pcg"10428name = "raw-cpuid"
10370version = "0.3.1"10429version = "11.0.2"
10371source = "registry+https://github.com/rust-lang/crates.io-index"10430source = "registry+https://github.com/rust-lang/crates.io-index"
10372checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"10431checksum = "e29830cbb1290e404f24c73af91c5d8d631ce7e128691e9477556b540cd01ecd"
10373dependencies = [10432dependencies = [
10374 "rand_core 0.6.4",10433 "bitflags 2.5.0",
10375]10434]
1037610435
10377[[package]]10436[[package]]
1038210441
10383[[package]]10442[[package]]
10384name = "rayon"10443name = "rayon"
10385version = "1.8.0"10444version = "1.10.0"
10386source = "registry+https://github.com/rust-lang/crates.io-index"10445source = "registry+https://github.com/rust-lang/crates.io-index"
10387checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"10446checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
10388dependencies = [10447dependencies = [
10389 "either",10448 "either",
10390 "rayon-core",10449 "rayon-core",
10391]10450]
1039210451
10393[[package]]10452[[package]]
10394name = "rayon-core"10453name = "rayon-core"
10395version = "1.12.0"10454version = "1.12.1"
10396source = "registry+https://github.com/rust-lang/crates.io-index"10455source = "registry+https://github.com/rust-lang/crates.io-index"
10397checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"10456checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
10398dependencies = [10457dependencies = [
10399 "crossbeam-deque",10458 "crossbeam-deque",
10400 "crossbeam-utils",10459 "crossbeam-utils",
10401]10460]
1040210461
10403[[package]]10462[[package]]
10404name = "rcgen"10463name = "rcgen"
10405version = "0.9.3"
10406source = "registry+https://github.com/rust-lang/crates.io-index"
10407checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd"
10408dependencies = [
10409 "pem",
10410 "ring 0.16.20",
10411 "time",
10412 "x509-parser 0.13.2",
10413 "yasna",
10414]
10415
10416[[package]]
10417name = "rcgen"
10418version = "0.10.0"10464version = "0.10.0"
10419source = "registry+https://github.com/rust-lang/crates.io-index"10465source = "registry+https://github.com/rust-lang/crates.io-index"
10420checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b"10466checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b"
1043610482
10437[[package]]10483[[package]]
10438name = "redox_syscall"10484name = "redox_syscall"
10439version = "0.3.5"10485version = "0.4.1"
10440source = "registry+https://github.com/rust-lang/crates.io-index"10486source = "registry+https://github.com/rust-lang/crates.io-index"
10441checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"10487checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
10442dependencies = [10488dependencies = [
10443 "bitflags 1.3.2",10489 "bitflags 1.3.2",
10444]10490]
1044510491
10446[[package]]10492[[package]]
10447name = "redox_syscall"10493name = "redox_syscall"
10448version = "0.4.1"10494version = "0.5.1"
10449source = "registry+https://github.com/rust-lang/crates.io-index"10495source = "registry+https://github.com/rust-lang/crates.io-index"
10450checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"10496checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
10451dependencies = [10497dependencies = [
10452 "bitflags 1.3.2",10498 "bitflags 2.5.0",
10453]10499]
1045410500
10455[[package]]10501[[package]]
10456name = "redox_users"10502name = "redox_users"
10457version = "0.4.4"10503version = "0.4.5"
10458source = "registry+https://github.com/rust-lang/crates.io-index"10504source = "registry+https://github.com/rust-lang/crates.io-index"
10459checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"10505checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
10460dependencies = [10506dependencies = [
10461 "getrandom 0.2.11",10507 "getrandom 0.2.15",
10462 "libredox",10508 "libredox",
10463 "thiserror",10509 "thiserror",
10464]10510]
1046510511
10466[[package]]10512[[package]]
10467name = "reed-solomon-novelpoly"10513name = "reed-solomon-novelpoly"
10468version = "1.0.2"10514version = "2.0.0"
10469source = "registry+https://github.com/rust-lang/crates.io-index"10515source = "registry+https://github.com/rust-lang/crates.io-index"
10470checksum = "58130877ca403ab42c864fbac74bb319a0746c07a634a92a5cfc7f54af272582"10516checksum = "87413ebb313323d431e85d0afc5a68222aaed972843537cbfe5f061cf1b4bcab"
10471dependencies = [10517dependencies = [
10472 "derive_more",10518 "derive_more",
10473 "fs-err",10519 "fs-err",
10474 "itertools 0.11.0",
10475 "static_init",10520 "static_init",
10476 "thiserror",10521 "thiserror",
10477]10522]
1047810523
10479[[package]]10524[[package]]
10480name = "ref-cast"10525name = "ref-cast"
10481version = "1.0.20"10526version = "1.0.23"
10482source = "registry+https://github.com/rust-lang/crates.io-index"10527source = "registry+https://github.com/rust-lang/crates.io-index"
10483checksum = "acde58d073e9c79da00f2b5b84eed919c8326832648a5b109b3fce1bb1175280"10528checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931"
10484dependencies = [10529dependencies = [
10485 "ref-cast-impl",10530 "ref-cast-impl",
10486]10531]
1048710532
10488[[package]]10533[[package]]
10489name = "ref-cast-impl"10534name = "ref-cast-impl"
10490version = "1.0.20"10535version = "1.0.23"
10491source = "registry+https://github.com/rust-lang/crates.io-index"10536source = "registry+https://github.com/rust-lang/crates.io-index"
10492checksum = "7f7473c2cfcf90008193dd0e3e16599455cb601a9fce322b5bb55de799664925"10537checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
10493dependencies = [10538dependencies = [
10494 "proc-macro2",10539 "proc-macro2",
10495 "quote",10540 "quote",
10496 "syn 2.0.39",10541 "syn 2.0.65",
10497]10542]
1049810543
10499[[package]]10544[[package]]
10509]10554]
1051010555
10511[[package]]10556[[package]]
10557name = "regalloc2"
10558version = "0.9.3"
10559source = "registry+https://github.com/rust-lang/crates.io-index"
10560checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6"
10561dependencies = [
10562 "hashbrown 0.13.2",
10563 "log",
10564 "rustc-hash",
10565 "slice-group-by",
10566 "smallvec",
10567]
10568
10569[[package]]
10512name = "regex"10570name = "regex"
10513version = "1.10.2"10571version = "1.10.4"
10514source = "registry+https://github.com/rust-lang/crates.io-index"10572source = "registry+https://github.com/rust-lang/crates.io-index"
10515checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"10573checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
10516dependencies = [10574dependencies = [
10517 "aho-corasick",10575 "aho-corasick",
10518 "memchr",10576 "memchr",
10519 "regex-automata 0.4.3",10577 "regex-automata 0.4.6",
10520 "regex-syntax 0.8.2",10578 "regex-syntax 0.8.3",
10521]10579]
1052210580
10523[[package]]10581[[package]]
1053110589
10532[[package]]10590[[package]]
10533name = "regex-automata"10591name = "regex-automata"
10534version = "0.4.3"10592version = "0.4.6"
10535source = "registry+https://github.com/rust-lang/crates.io-index"10593source = "registry+https://github.com/rust-lang/crates.io-index"
10536checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"10594checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
10537dependencies = [10595dependencies = [
10538 "aho-corasick",10596 "aho-corasick",
10539 "memchr",10597 "memchr",
10540 "regex-syntax 0.8.2",10598 "regex-syntax 0.8.3",
10541]10599]
1054210600
10543[[package]]10601[[package]]
1054810606
10549[[package]]10607[[package]]
10550name = "regex-syntax"10608name = "regex-syntax"
10551version = "0.8.2"10609version = "0.8.3"
10552source = "registry+https://github.com/rust-lang/crates.io-index"10610source = "registry+https://github.com/rust-lang/crates.io-index"
10553checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"10611checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
1055410612
10555[[package]]10613[[package]]
10556name = "resolv-conf"10614name = "resolv-conf"
1056410622
10565[[package]]10623[[package]]
10566name = "rfc6979"10624name = "rfc6979"
10567version = "0.3.1"
10568source = "registry+https://github.com/rust-lang/crates.io-index"
10569checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb"
10570dependencies = [
10571 "crypto-bigint 0.4.9",
10572 "hmac 0.12.1",
10573 "zeroize",
10574]
10575
10576[[package]]
10577name = "rfc6979"
10578version = "0.4.0"10625version = "0.4.0"
10579source = "registry+https://github.com/rust-lang/crates.io-index"10626source = "registry+https://github.com/rust-lang/crates.io-index"
10580checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"10627checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
10581dependencies = [10628dependencies = [
10582 "hmac 0.12.1",10629 "hmac 0.12.1",
10583 "subtle 2.4.1",10630 "subtle 2.5.0",
10584]10631]
1058510632
10586[[package]]10633[[package]]
1060010647
10601[[package]]10648[[package]]
10602name = "ring"10649name = "ring"
10603version = "0.17.5"10650version = "0.17.8"
10604source = "registry+https://github.com/rust-lang/crates.io-index"10651source = "registry+https://github.com/rust-lang/crates.io-index"
10605checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b"10652checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
10606dependencies = [10653dependencies = [
10607 "cc",10654 "cc",
10608 "getrandom 0.2.11",10655 "cfg-if",
10656 "getrandom 0.2.15",
10609 "libc",10657 "libc",
10610 "spin 0.9.8",10658 "spin 0.9.8",
10611 "untrusted 0.9.0",10659 "untrusted 0.9.0",
10612 "windows-sys 0.48.0",10660 "windows-sys 0.52.0",
10613]10661]
1061410662
10615[[package]]10663[[package]]
1065510703
10656[[package]]10704[[package]]
10657name = "rococo-runtime"10705name = "rococo-runtime"
10658version = "4.0.0"10706version = "10.0.0"
10659source = "registry+https://github.com/rust-lang/crates.io-index"10707source = "registry+https://github.com/rust-lang/crates.io-index"
10660checksum = "4198843a4ec01f56b58ee26e15df123593da562a07b838c66c4e519dbfc1922d"10708checksum = "165988588402ce7dc2d32dfba280cbbd59befc444d8f95579b999ecd8575ef27"
10661dependencies = [10709dependencies = [
10662 "binary-merkle-tree",10710 "binary-merkle-tree",
10663 "frame-benchmarking",10711 "frame-benchmarking",
10683 "pallet-democracy",10731 "pallet-democracy",
10684 "pallet-elections-phragmen",10732 "pallet-elections-phragmen",
10685 "pallet-grandpa",10733 "pallet-grandpa",
10686 "pallet-identity 25.0.0",10734 "pallet-identity 31.0.0",
10687 "pallet-im-online",10735 "pallet-im-online",
10688 "pallet-indices",10736 "pallet-indices",
10689 "pallet-membership",10737 "pallet-membership",
10697 "pallet-ranked-collective",10745 "pallet-ranked-collective",
10698 "pallet-recovery",10746 "pallet-recovery",
10699 "pallet-referenda",10747 "pallet-referenda",
10748 "pallet-root-testing",
10700 "pallet-scheduler",10749 "pallet-scheduler",
10701 "pallet-session",10750 "pallet-session",
10702 "pallet-society",10751 "pallet-society",
1075110800
10752[[package]]10801[[package]]
10753name = "rococo-runtime-constants"10802name = "rococo-runtime-constants"
10754version = "4.0.0"10803version = "10.0.0"
10755source = "registry+https://github.com/rust-lang/crates.io-index"10804source = "registry+https://github.com/rust-lang/crates.io-index"
10756checksum = "272eaa4f1b4b5357d89d1f8f504cb5ee81a105bf7e5c295f053c6e521f2a199b"10805checksum = "0033b0335cd7cb691fbcd16346e151ffb21ad4e2a8675eda06b48275b8f52549"
10757dependencies = [10806dependencies = [
10758 "frame-support",10807 "frame-support",
10759 "polkadot-primitives",10808 "polkadot-primitives",
10763 "sp-runtime",10812 "sp-runtime",
10764 "sp-weights",10813 "sp-weights",
10765 "staging-xcm",10814 "staging-xcm",
10815 "staging-xcm-builder",
10766]10816]
1076710817
10768[[package]]10818[[package]]
10819name = "route-recognizer"
10820version = "0.3.1"
10821source = "registry+https://github.com/rust-lang/crates.io-index"
10822checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746"
10823
10824[[package]]
10769name = "rpassword"10825name = "rpassword"
10770version = "7.3.1"10826version = "7.3.1"
10771source = "registry+https://github.com/rust-lang/crates.io-index"10827source = "registry+https://github.com/rust-lang/crates.io-index"
10777]10833]
1077810834
10779[[package]]10835[[package]]
10780name = "rtcp"
10781version = "0.7.2"
10782source = "registry+https://github.com/rust-lang/crates.io-index"
10783checksum = "1919efd6d4a6a85d13388f9487549bb8e359f17198cc03ffd72f79b553873691"
10784dependencies = [
10785 "bytes",
10786 "thiserror",
10787 "webrtc-util",
10788]
10789
10790[[package]]
10791name = "rtnetlink"10836name = "rtnetlink"
10792version = "0.10.1"10837version = "0.10.1"
10793source = "registry+https://github.com/rust-lang/crates.io-index"10838source = "registry+https://github.com/rust-lang/crates.io-index"
10797 "log",10842 "log",
10798 "netlink-packet-route",10843 "netlink-packet-route",
10799 "netlink-proto",10844 "netlink-proto",
10800 "nix",10845 "nix 0.24.3",
10801 "thiserror",10846 "thiserror",
10802 "tokio",10847 "tokio",
10803]10848]
10813]10858]
1081410859
10815[[package]]10860[[package]]
10816name = "rtp"
10817version = "0.6.8"
10818source = "registry+https://github.com/rust-lang/crates.io-index"
10819checksum = "a2a095411ff00eed7b12e4c6a118ba984d113e1079582570d56a5ee723f11f80"
10820dependencies = [
10821 "async-trait",
10822 "bytes",
10823 "rand 0.8.5",
10824 "serde",
10825 "thiserror",
10826 "webrtc-util",
10827]
10828
10829[[package]]
10830name = "rustc-demangle"10861name = "rustc-demangle"
10831version = "0.1.23"10862version = "0.1.24"
10832source = "registry+https://github.com/rust-lang/crates.io-index"10863source = "registry+https://github.com/rust-lang/crates.io-index"
10833checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"10864checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1083410865
10835[[package]]10866[[package]]
10836name = "rustc-hash"10867name = "rustc-hash"
10850source = "registry+https://github.com/rust-lang/crates.io-index"10881source = "registry+https://github.com/rust-lang/crates.io-index"
10851checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"10882checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
10852dependencies = [10883dependencies = [
10853 "semver 1.0.20",10884 "semver 1.0.23",
10854]10885]
1085510886
10856[[package]]10887[[package]]
1089210923
10893[[package]]10924[[package]]
10894name = "rustix"10925name = "rustix"
10895version = "0.38.25"10926version = "0.38.34"
10896source = "registry+https://github.com/rust-lang/crates.io-index"10927source = "registry+https://github.com/rust-lang/crates.io-index"
10897checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e"10928checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
10898dependencies = [10929dependencies = [
10899 "bitflags 2.4.1",10930 "bitflags 2.5.0",
10900 "errno",10931 "errno",
10901 "libc",10932 "libc",
10902 "linux-raw-sys 0.4.11",10933 "linux-raw-sys 0.4.14",
10903 "windows-sys 0.48.0",10934 "windows-sys 0.52.0",
10904]10935]
1090510936
10906[[package]]10937[[package]]
10907name = "rustls"10938name = "rustls"
10908version = "0.19.1"10939version = "0.20.9"
10909source = "registry+https://github.com/rust-lang/crates.io-index"10940source = "registry+https://github.com/rust-lang/crates.io-index"
10910checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"10941checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99"
10911dependencies = [10942dependencies = [
10912 "base64 0.13.1",
10913 "log",10943 "log",
10914 "ring 0.16.20",10944 "ring 0.16.20",
10915 "sct 0.6.1",10945 "sct",
10916 "webpki 0.21.4",10946 "webpki",
10917]10947]
1091810948
10919[[package]]10949[[package]]
10920name = "rustls"10950name = "rustls"
10921version = "0.20.9"10951version = "0.21.12"
10922source = "registry+https://github.com/rust-lang/crates.io-index"10952source = "registry+https://github.com/rust-lang/crates.io-index"
10923checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99"10953checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
10924dependencies = [10954dependencies = [
10925 "log",10955 "log",
10926 "ring 0.16.20",10956 "ring 0.17.8",
10927 "sct 0.7.1",10957 "rustls-webpki 0.101.7",
10928 "webpki 0.22.4",10958 "sct",
10929]10959]
1093010960
10931[[package]]10961[[package]]
10932name = "rustls"10962name = "rustls"
10933version = "0.21.9"10963version = "0.22.4"
10934source = "registry+https://github.com/rust-lang/crates.io-index"10964source = "registry+https://github.com/rust-lang/crates.io-index"
10935checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9"10965checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
10936dependencies = [10966dependencies = [
10937 "log",10967 "log",
10938 "ring 0.17.5",10968 "ring 0.17.8",
10939 "rustls-webpki",10969 "rustls-pki-types",
10940 "sct 0.7.1",10970 "rustls-webpki 0.102.4",
10971 "subtle 2.5.0",
10972 "zeroize",
10941]10973]
1094210974
10943[[package]]10975[[package]]
10947checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"10979checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
10948dependencies = [10980dependencies = [
10949 "openssl-probe",10981 "openssl-probe",
10950 "rustls-pemfile",10982 "rustls-pemfile 1.0.4",
10951 "schannel",10983 "schannel",
10952 "security-framework",10984 "security-framework",
10953]10985]
1095410986
10955[[package]]10987[[package]]
10988name = "rustls-native-certs"
10989version = "0.7.0"
10990source = "registry+https://github.com/rust-lang/crates.io-index"
10991checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792"
10992dependencies = [
10993 "openssl-probe",
10994 "rustls-pemfile 2.1.2",
10995 "rustls-pki-types",
10996 "schannel",
10997 "security-framework",
10998]
10999
11000[[package]]
10956name = "rustls-pemfile"11001name = "rustls-pemfile"
10957version = "1.0.4"11002version = "1.0.4"
10958source = "registry+https://github.com/rust-lang/crates.io-index"11003source = "registry+https://github.com/rust-lang/crates.io-index"
10959checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"11004checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
10960dependencies = [11005dependencies = [
10961 "base64 0.21.5",11006 "base64 0.21.7",
10962]11007]
1096311008
10964[[package]]11009[[package]]
11010name = "rustls-pemfile"
11011version = "2.1.2"
11012source = "registry+https://github.com/rust-lang/crates.io-index"
11013checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
11014dependencies = [
11015 "base64 0.22.1",
11016 "rustls-pki-types",
11017]
11018
11019[[package]]
11020name = "rustls-pki-types"
11021version = "1.7.0"
11022source = "registry+https://github.com/rust-lang/crates.io-index"
11023checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
11024
11025[[package]]
10965name = "rustls-webpki"11026name = "rustls-webpki"
10966version = "0.101.7"11027version = "0.101.7"
10967source = "registry+https://github.com/rust-lang/crates.io-index"11028source = "registry+https://github.com/rust-lang/crates.io-index"
10968checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"11029checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
10969dependencies = [11030dependencies = [
10970 "ring 0.17.5",11031 "ring 0.17.8",
10971 "untrusted 0.9.0",11032 "untrusted 0.9.0",
10972]11033]
1097311034
10974[[package]]11035[[package]]
11036name = "rustls-webpki"
11037version = "0.102.4"
11038source = "registry+https://github.com/rust-lang/crates.io-index"
11039checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
11040dependencies = [
11041 "ring 0.17.8",
11042 "rustls-pki-types",
11043 "untrusted 0.9.0",
11044]
11045
11046[[package]]
10975name = "rustversion"11047name = "rustversion"
10976version = "1.0.14"11048version = "1.0.17"
10977source = "registry+https://github.com/rust-lang/crates.io-index"11049source = "registry+https://github.com/rust-lang/crates.io-index"
10978checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"11050checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
1097911051
10980[[package]]11052[[package]]
10981name = "ruzstd"11053name = "ruzstd"
1100111073
11002[[package]]11074[[package]]
11003name = "ryu"11075name = "ryu"
11004version = "1.0.15"11076version = "1.0.18"
11005source = "registry+https://github.com/rust-lang/crates.io-index"11077source = "registry+https://github.com/rust-lang/crates.io-index"
11006checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"11078checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1100711079
11008[[package]]11080[[package]]
11009name = "safe_arch"11081name = "safe_arch"
1102511097
11026[[package]]11098[[package]]
11027name = "sc-allocator"11099name = "sc-allocator"
11028version = "20.0.0"11100version = "26.0.0"
11029source = "registry+https://github.com/rust-lang/crates.io-index"11101source = "registry+https://github.com/rust-lang/crates.io-index"
11030checksum = "66b4c5976a9cff7fcf24c946276a62ea7837862b6f3bf9f8011f08faf4f08474"11102checksum = "4715fddb2bd1862aa21f6312528ab339b7d03ef5ec654e3aa200a3119392392f"
11031dependencies = [11103dependencies = [
11032 "log",11104 "log",
11033 "sp-core",11105 "sp-core",
1103711109
11038[[package]]11110[[package]]
11039name = "sc-authority-discovery"11111name = "sc-authority-discovery"
11040version = "0.31.0"11112version = "0.37.0"
11041source = "registry+https://github.com/rust-lang/crates.io-index"11113source = "registry+https://github.com/rust-lang/crates.io-index"
11042checksum = "fb7e0e8a4ea5304b65d49c0085a458ed2e43394f95457689875d3e0c6e118dee"11114checksum = "f987a536468e06b66fe3cac296b27dc532f301199e0278bc42ac32b8eb3a4a9d"
11043dependencies = [11115dependencies = [
11044 "async-trait",11116 "async-trait",
11045 "futures",11117 "futures",
11046 "futures-timer",11118 "futures-timer",
11047 "ip_network",11119 "ip_network",
11048 "libp2p",11120 "libp2p",
11049 "log",11121 "log",
11050 "multihash",11122 "multihash 0.18.1",
11123 "multihash-codetable",
11051 "parity-scale-codec",11124 "parity-scale-codec",
11052 "prost",11125 "prost 0.12.6",
11053 "prost-build",11126 "prost-build",
11054 "rand 0.8.5",11127 "rand",
11055 "sc-client-api",11128 "sc-client-api",
11056 "sc-network",11129 "sc-network",
11057 "sp-api",11130 "sp-api",
1106611139
11067[[package]]11140[[package]]
11068name = "sc-basic-authorship"11141name = "sc-basic-authorship"
11069version = "0.31.0"11142version = "0.37.0"
11070source = "registry+https://github.com/rust-lang/crates.io-index"11143source = "registry+https://github.com/rust-lang/crates.io-index"
11071checksum = "b0aa6c85e3e0b5af9cab7078166d8c4575b7b9edac0ade6be1aadee828420104"11144checksum = "295be922b93bd4bc77edadffe66ac85a09436284afe7f12c1efd4d01ec530d07"
11072dependencies = [11145dependencies = [
11073 "futures",11146 "futures",
11074 "futures-timer",11147 "futures-timer",
11075 "log",11148 "log",
11076 "parity-scale-codec",11149 "parity-scale-codec",
11077 "sc-block-builder",11150 "sc-block-builder",
11078 "sc-client-api",
11079 "sc-proposer-metrics",11151 "sc-proposer-metrics",
11080 "sc-telemetry",11152 "sc-telemetry",
11081 "sc-transaction-pool-api",11153 "sc-transaction-pool-api",
1109011162
11091[[package]]11163[[package]]
11092name = "sc-block-builder"11164name = "sc-block-builder"
11093version = "0.30.0"11165version = "0.36.0"
11094source = "registry+https://github.com/rust-lang/crates.io-index"11166source = "registry+https://github.com/rust-lang/crates.io-index"
11095checksum = "9d3999b9b758c09a6c1155e481b683ee87712f071cc5a0679f9ee4906a14a404"11167checksum = "033b5ee0fa6d770c9db8cd59f6d1f88e792c088238278fcb836b5c851936a62d"
11096dependencies = [11168dependencies = [
11097 "parity-scale-codec",11169 "parity-scale-codec",
11098 "sc-client-api",
11099 "sp-api",11170 "sp-api",
11100 "sp-block-builder",11171 "sp-block-builder",
11101 "sp-blockchain",11172 "sp-blockchain",
11102 "sp-core",11173 "sp-core",
11103 "sp-inherents",11174 "sp-inherents",
11104 "sp-runtime",11175 "sp-runtime",
11176 "sp-trie",
11105]11177]
1110611178
11107[[package]]11179[[package]]
11108name = "sc-chain-spec"11180name = "sc-chain-spec"
11109version = "24.0.0"11181version = "30.0.1"
11110source = "registry+https://github.com/rust-lang/crates.io-index"11182source = "registry+https://github.com/rust-lang/crates.io-index"
11111checksum = "ec7e711ea9870d3fb8e2a3ea5b601a9e20c63d0d2f457f40146407721e246a77"11183checksum = "5dfb28048e5b2d168870e2205d3e41db1f387a781831a8b8b82c9f10536c2742"
11112dependencies = [11184dependencies = [
11113 "memmap2",11185 "array-bytes 6.2.3",
11186 "docify",
11187 "log",
11188 "memmap2 0.9.4",
11189 "parity-scale-codec",
11114 "sc-chain-spec-derive",11190 "sc-chain-spec-derive",
11115 "sc-client-api",11191 "sc-client-api",
11116 "sc-executor",11192 "sc-executor",
11120 "serde_json",11196 "serde_json",
11121 "sp-blockchain",11197 "sp-blockchain",
11122 "sp-core",11198 "sp-core",
11199 "sp-crypto-hashing",
11200 "sp-genesis-builder",
11201 "sp-io",
11123 "sp-runtime",11202 "sp-runtime",
11124 "sp-state-machine",11203 "sp-state-machine",
11125]11204]
1112611205
11127[[package]]11206[[package]]
11128name = "sc-chain-spec-derive"11207name = "sc-chain-spec-derive"
11129version = "10.0.0"11208version = "11.0.0"
11130source = "registry+https://github.com/rust-lang/crates.io-index"11209source = "registry+https://github.com/rust-lang/crates.io-index"
11131checksum = "1f25158f791eb48715da9322375598b541cadd1f193674e8a4d77c79ffa3d95d"11210checksum = "f2e80fbdaea194762d4b4b0eec389037c25ad102676203b42d684774ae3019b8"
11132dependencies = [11211dependencies = [
11133 "proc-macro-crate 1.3.1",11212 "proc-macro-crate 3.1.0",
11134 "proc-macro2",11213 "proc-macro2",
11135 "quote",11214 "quote",
11136 "syn 2.0.39",11215 "syn 2.0.65",
11137]11216]
1113811217
11139[[package]]11218[[package]]
11140name = "sc-cli"11219name = "sc-cli"
11141version = "0.33.0"11220version = "0.39.0"
11142source = "registry+https://github.com/rust-lang/crates.io-index"11221source = "registry+https://github.com/rust-lang/crates.io-index"
11143checksum = "22c61058223f80c1f961b03f7737529609a3283eef91129e971a1966101c18ea"11222checksum = "20c2eae4d9396b19403f89f058a6a684066b58e051b1310f246eb9b41a7b54fe"
11144dependencies = [11223dependencies = [
11145 "array-bytes 6.2.0",11224 "array-bytes 6.2.3",
11146 "chrono",11225 "chrono",
11147 "clap",11226 "clap",
11148 "fdlimit",11227 "fdlimit",
11149 "futures",11228 "futures",
11229 "itertools 0.10.5",
11150 "libp2p-identity",11230 "libp2p-identity",
11151 "log",11231 "log",
11152 "names",11232 "names",
11233 "parity-bip39",
11153 "parity-scale-codec",11234 "parity-scale-codec",
11154 "rand 0.8.5",11235 "rand",
11155 "regex",11236 "regex",
11156 "rpassword",11237 "rpassword",
11157 "sc-client-api",11238 "sc-client-api",
11173 "sp-runtime",11254 "sp-runtime",
11174 "sp-version",11255 "sp-version",
11175 "thiserror",11256 "thiserror",
11176 "tiny-bip39",
11177 "tokio",11257 "tokio",
11178]11258]
1117911259
11180[[package]]11260[[package]]
11181name = "sc-client-api"11261name = "sc-client-api"
11182version = "25.0.0"11262version = "31.0.0"
11183source = "registry+https://github.com/rust-lang/crates.io-index"11263source = "registry+https://github.com/rust-lang/crates.io-index"
11184checksum = "c7d32101f415f4d7ddbe8b5de1c1387a78d6dce070e26407ec605fe9f3fc9e23"11264checksum = "08db275ca98f1fe44db2e2058893b182b85ef11cee7cf271edffd449a1179fc4"
11185dependencies = [11265dependencies = [
11186 "fnv",11266 "fnv",
11187 "futures",11267 "futures",
11188 "log",11268 "log",
11189 "parity-scale-codec",11269 "parity-scale-codec",
11190 "parking_lot 0.12.1",11270 "parking_lot 0.12.2",
11191 "sc-executor",11271 "sc-executor",
11192 "sc-transaction-pool-api",11272 "sc-transaction-pool-api",
11193 "sc-utils",11273 "sc-utils",
1120711287
11208[[package]]11288[[package]]
11209name = "sc-client-db"11289name = "sc-client-db"
11210version = "0.32.0"11290version = "0.38.0"
11211source = "registry+https://github.com/rust-lang/crates.io-index"11291source = "registry+https://github.com/rust-lang/crates.io-index"
11212checksum = "d4ced79f609a44782874d856cf39d256838957195ef34f4fb8ced90bf4b725d0"11292checksum = "6bd93f124c30ec885696128a639e190293bee2a6430cc04248d656093b5d4f42"
11213dependencies = [11293dependencies = [
11214 "hash-db 0.16.0",11294 "hash-db",
11215 "kvdb",11295 "kvdb",
11216 "kvdb-memorydb",11296 "kvdb-memorydb",
11217 "kvdb-rocksdb",11297 "kvdb-rocksdb",
11218 "linked-hash-map",11298 "linked-hash-map",
11219 "log",11299 "log",
11220 "parity-db",11300 "parity-db",
11221 "parity-scale-codec",11301 "parity-scale-codec",
11222 "parking_lot 0.12.1",11302 "parking_lot 0.12.2",
11223 "sc-client-api",11303 "sc-client-api",
11224 "sc-state-db",11304 "sc-state-db",
11225 "schnellru",11305 "schnellru",
1123411314
11235[[package]]11315[[package]]
11236name = "sc-consensus"11316name = "sc-consensus"
11237version = "0.30.0"11317version = "0.36.0"
11238source = "registry+https://github.com/rust-lang/crates.io-index"11318source = "registry+https://github.com/rust-lang/crates.io-index"
11239checksum = "86e4100cc8fb3876708e1ec5a7c63af3baa75febd5051beb9ddd1e4835fdfc27"11319checksum = "4da51746e9689ecee65d6c1ac32e89a7b0452ee1ce377485e94c285e9690dcfd"
11240dependencies = [11320dependencies = [
11241 "async-trait",11321 "async-trait",
11242 "futures",11322 "futures",
11243 "futures-timer",11323 "futures-timer",
11244 "libp2p-identity",11324 "libp2p-identity",
11245 "log",11325 "log",
11246 "mockall",11326 "mockall",
11247 "parking_lot 0.12.1",11327 "parking_lot 0.12.2",
11248 "sc-client-api",11328 "sc-client-api",
11249 "sc-utils",11329 "sc-utils",
11250 "serde",11330 "serde",
1126011340
11261[[package]]11341[[package]]
11262name = "sc-consensus-aura"11342name = "sc-consensus-aura"
11263version = "0.31.0"11343version = "0.37.0"
11264source = "registry+https://github.com/rust-lang/crates.io-index"11344source = "registry+https://github.com/rust-lang/crates.io-index"
11265checksum = "5e3e282836a7deeeb71d965a0942828f81ae2b03fd67515b733d5f33dd5da855"11345checksum = "988701c58dcd9521412cfcbb54457b17546bb4363f021ee8131af409a027b879"
11266dependencies = [11346dependencies = [
11267 "async-trait",11347 "async-trait",
11268 "futures",11348 "futures",
1129011370
11291[[package]]11371[[package]]
11292name = "sc-consensus-babe"11372name = "sc-consensus-babe"
11293version = "0.31.0"11373version = "0.37.0"
11294source = "registry+https://github.com/rust-lang/crates.io-index"11374source = "registry+https://github.com/rust-lang/crates.io-index"
11295checksum = "9a48ef5eaf7bffc647dfdfd42c7c02a929d89410b065beeb80753fd94f5fe70d"11375checksum = "a65da2a2d198d0c06be3614eabc254b40ebb27516dd17bee56d24cbe08d0c19e"
11296dependencies = [11376dependencies = [
11297 "async-trait",11377 "async-trait",
11298 "fork-tree",11378 "fork-tree",
11302 "num-rational",11382 "num-rational",
11303 "num-traits",11383 "num-traits",
11304 "parity-scale-codec",11384 "parity-scale-codec",
11305 "parking_lot 0.12.1",11385 "parking_lot 0.12.2",
11306 "sc-client-api",11386 "sc-client-api",
11307 "sc-consensus",11387 "sc-consensus",
11308 "sc-consensus-epochs",11388 "sc-consensus-epochs",
11317 "sp-consensus-babe",11397 "sp-consensus-babe",
11318 "sp-consensus-slots",11398 "sp-consensus-slots",
11319 "sp-core",11399 "sp-core",
11400 "sp-crypto-hashing",
11320 "sp-inherents",11401 "sp-inherents",
11321 "sp-keystore",11402 "sp-keystore",
11322 "sp-runtime",11403 "sp-runtime",
1132611407
11327[[package]]11408[[package]]
11328name = "sc-consensus-babe-rpc"11409name = "sc-consensus-babe-rpc"
11329version = "0.31.0"11410version = "0.37.0"
11330source = "registry+https://github.com/rust-lang/crates.io-index"11411source = "registry+https://github.com/rust-lang/crates.io-index"
11331checksum = "4a78a543d8d2e8d9a6a8b60f16ac12e6fbeffbc2322ef8fa139f733ce53ccaa8"11412checksum = "ec114d8e12b82b298abdfbca76e7aac3af42865510dfb0f92fd3992e7edbb383"
11332dependencies = [11413dependencies = [
11333 "futures",11414 "futures",
11334 "jsonrpsee",11415 "jsonrpsee",
1134911430
11350[[package]]11431[[package]]
11351name = "sc-consensus-beefy"11432name = "sc-consensus-beefy"
11352version = "10.0.0"11433version = "16.0.0"
11353source = "registry+https://github.com/rust-lang/crates.io-index"11434source = "registry+https://github.com/rust-lang/crates.io-index"
11354checksum = "a3709a96723feaeb7a7ca0d3f7995d084029f8effeeb09d45975a8aa3ba1a63b"11435checksum = "5a49993da0847cf1ef84184e24e8d95f71efac2e940556678bf9e45a8fd0a47f"
11355dependencies = [11436dependencies = [
11356 "array-bytes 6.2.0",11437 "array-bytes 6.2.3",
11357 "async-channel 1.9.0",11438 "async-channel 1.9.0",
11358 "async-trait",11439 "async-trait",
11359 "fnv",11440 "fnv",
11360 "futures",11441 "futures",
11361 "log",11442 "log",
11362 "parity-scale-codec",11443 "parity-scale-codec",
11363 "parking_lot 0.12.1",11444 "parking_lot 0.12.2",
11364 "sc-client-api",11445 "sc-client-api",
11365 "sc-consensus",11446 "sc-consensus",
11366 "sc-network",11447 "sc-network",
11374 "sp-consensus",11455 "sp-consensus",
11375 "sp-consensus-beefy",11456 "sp-consensus-beefy",
11376 "sp-core",11457 "sp-core",
11458 "sp-crypto-hashing",
11377 "sp-keystore",11459 "sp-keystore",
11378 "sp-mmr-primitives",11460 "sp-mmr-primitives",
11379 "sp-runtime",11461 "sp-runtime",
11380 "substrate-prometheus-endpoint",11462 "substrate-prometheus-endpoint",
11381 "thiserror",11463 "thiserror",
11464 "tokio",
11382 "wasm-timer",11465 "wasm-timer",
11383]11466]
1138411467
11385[[package]]11468[[package]]
11386name = "sc-consensus-beefy-rpc"11469name = "sc-consensus-beefy-rpc"
11387version = "10.0.0"11470version = "16.0.0"
11388source = "registry+https://github.com/rust-lang/crates.io-index"11471source = "registry+https://github.com/rust-lang/crates.io-index"
11389checksum = "c1699fe1791dd985a5dd6075c84136027eb3e2ccff46d3e5273fdbd5b246f763"11472checksum = "179b561aa302c0a5a572c5484a50f85e4ccd55025fc14daddabf5fe16e8150e1"
11390dependencies = [11473dependencies = [
11391 "futures",11474 "futures",
11392 "jsonrpsee",11475 "jsonrpsee",
11393 "log",11476 "log",
11394 "parity-scale-codec",11477 "parity-scale-codec",
11395 "parking_lot 0.12.1",11478 "parking_lot 0.12.2",
11396 "sc-consensus-beefy",11479 "sc-consensus-beefy",
11397 "sc-rpc",11480 "sc-rpc",
11398 "serde",11481 "serde",
1140411487
11405[[package]]11488[[package]]
11406name = "sc-consensus-epochs"11489name = "sc-consensus-epochs"
11407version = "0.30.0"11490version = "0.36.0"
11408source = "registry+https://github.com/rust-lang/crates.io-index"11491source = "registry+https://github.com/rust-lang/crates.io-index"
11409checksum = "5eafc0534bb118f614fc50fe066e423dbecfedf816cd9c43e0b492e30c1782c8"11492checksum = "e892ae8bf5faa9042b6ec46396db1b4d9ded180a5f82afe3236fdebe0195f850"
11410dependencies = [11493dependencies = [
11411 "fork-tree",11494 "fork-tree",
11412 "parity-scale-codec",11495 "parity-scale-codec",
1141811501
11419[[package]]11502[[package]]
11420name = "sc-consensus-grandpa"11503name = "sc-consensus-grandpa"
11421version = "0.16.0"11504version = "0.22.0"
11422source = "registry+https://github.com/rust-lang/crates.io-index"11505source = "registry+https://github.com/rust-lang/crates.io-index"
11423checksum = "30cbc5db21ea2c4ba65b23315e73e69e8155630fb47c84b93d40b0e759c9d86d"11506checksum = "e19945689693bbea950220bf7af1c79a2f70f5f37b97f7e6d136dcaf2b34f4a5"
11424dependencies = [11507dependencies = [
11425 "ahash 0.8.6",11508 "ahash 0.8.11",
11426 "array-bytes 6.2.0",11509 "array-bytes 6.2.3",
11427 "async-trait",11510 "async-trait",
11428 "dyn-clone",11511 "dyn-clone",
11429 "finality-grandpa",11512 "finality-grandpa",
11432 "futures-timer",11515 "futures-timer",
11433 "log",11516 "log",
11434 "parity-scale-codec",11517 "parity-scale-codec",
11435 "parking_lot 0.12.1",11518 "parking_lot 0.12.2",
11436 "rand 0.8.5",11519 "rand",
11437 "sc-block-builder",11520 "sc-block-builder",
11438 "sc-chain-spec",11521 "sc-chain-spec",
11439 "sc-client-api",11522 "sc-client-api",
11440 "sc-consensus",11523 "sc-consensus",
11441 "sc-network",11524 "sc-network",
11442 "sc-network-common",11525 "sc-network-common",
11443 "sc-network-gossip",11526 "sc-network-gossip",
11527 "sc-network-sync",
11444 "sc-telemetry",11528 "sc-telemetry",
11445 "sc-transaction-pool-api",11529 "sc-transaction-pool-api",
11446 "sc-utils",11530 "sc-utils",
11452 "sp-consensus",11536 "sp-consensus",
11453 "sp-consensus-grandpa",11537 "sp-consensus-grandpa",
11454 "sp-core",11538 "sp-core",
11539 "sp-crypto-hashing",
11455 "sp-keystore",11540 "sp-keystore",
11456 "sp-runtime",11541 "sp-runtime",
11457 "substrate-prometheus-endpoint",11542 "substrate-prometheus-endpoint",
1146011545
11461[[package]]11546[[package]]
11462name = "sc-consensus-grandpa-rpc"11547name = "sc-consensus-grandpa-rpc"
11463version = "0.16.0"11548version = "0.22.0"
11464source = "registry+https://github.com/rust-lang/crates.io-index"11549source = "registry+https://github.com/rust-lang/crates.io-index"
11465checksum = "a3c545dac29d5dd002170e063ca0725be95ef653be135d251f91dbe053f63173"11550checksum = "68cd632a2a33d82e67cfd57dda6d966a6e25df08a4698c8d6ea7010515c5aebc"
11466dependencies = [11551dependencies = [
11467 "finality-grandpa",11552 "finality-grandpa",
11468 "futures",11553 "futures",
1148111566
11482[[package]]11567[[package]]
11483name = "sc-consensus-manual-seal"11568name = "sc-consensus-manual-seal"
11484version = "0.32.0"11569version = "0.38.0"
11485source = "registry+https://github.com/rust-lang/crates.io-index"11570source = "registry+https://github.com/rust-lang/crates.io-index"
11486checksum = "cc7577e49019ece17432c51ddbd4f6b02829b1f784a72b7064855ad70dc08b3f"11571checksum = "c0741690ea4a51823f2828a545d8df184d5e0b526ca306c467be557dfac1d074"
11487dependencies = [11572dependencies = [
11488 "assert_matches",11573 "assert_matches",
11489 "async-trait",11574 "async-trait",
1151711602
11518[[package]]11603[[package]]
11519name = "sc-consensus-slots"11604name = "sc-consensus-slots"
11520version = "0.30.0"11605version = "0.36.0"
11521source = "registry+https://github.com/rust-lang/crates.io-index"11606source = "registry+https://github.com/rust-lang/crates.io-index"
11522checksum = "2059681962e33394682627e7bd7245b5094236594f5c97c4c96988d901bda534"11607checksum = "80b431251c43b5af64b0f2758a387061f53fa045bdbf97d7353fe06aa9ddfb7b"
11523dependencies = [11608dependencies = [
11524 "async-trait",11609 "async-trait",
11525 "futures",11610 "futures",
1154111626
11542[[package]]11627[[package]]
11543name = "sc-executor"11628name = "sc-executor"
11544version = "0.29.0"11629version = "0.35.0"
11545source = "registry+https://github.com/rust-lang/crates.io-index"11630source = "registry+https://github.com/rust-lang/crates.io-index"
11546checksum = "225f2ad733bc7234a6638d5203624194824b2f78ab631bc911223f536a66b9c8"11631checksum = "7b8f8ddc63df8219768b729f9098ecd4362d2756b40784071cd44c3041f1d51d"
11547dependencies = [11632dependencies = [
11548 "parity-scale-codec",11633 "parity-scale-codec",
11549 "parking_lot 0.12.1",11634 "parking_lot 0.12.2",
11550 "sc-executor-common",11635 "sc-executor-common",
11636 "sc-executor-polkavm",
11551 "sc-executor-wasmtime",11637 "sc-executor-wasmtime",
11552 "schnellru",11638 "schnellru",
11553 "sp-api",11639 "sp-api",
1156411650
11565[[package]]11651[[package]]
11566name = "sc-executor-common"11652name = "sc-executor-common"
11567version = "0.26.0"11653version = "0.32.0"
11568source = "registry+https://github.com/rust-lang/crates.io-index"11654source = "registry+https://github.com/rust-lang/crates.io-index"
11569checksum = "169c1cfe81ba0e0d44ab4ada1600e30b6a9de588c792db73e32a854a6e3e1a87"11655checksum = "00308c10173ec6446ccc2b96cd3a3037e64c94a424f94daa8c96f288794f4d34"
11570dependencies = [11656dependencies = [
11657 "polkavm",
11571 "sc-allocator",11658 "sc-allocator",
11572 "sp-maybe-compressed-blob",11659 "sp-maybe-compressed-blob",
11573 "sp-wasm-interface",11660 "sp-wasm-interface",
11576]11663]
1157711664
11578[[package]]11665[[package]]
11666name = "sc-executor-polkavm"
11667version = "0.29.0"
11668source = "registry+https://github.com/rust-lang/crates.io-index"
11669checksum = "63b9c814d3a94df7a323d728a6961a3b9ec8c5c5979eb858ec098ddf2838cfc0"
11670dependencies = [
11671 "log",
11672 "polkavm",
11673 "sc-executor-common",
11674 "sp-wasm-interface",
11675]
11676
11677[[package]]
11579name = "sc-executor-wasmtime"11678name = "sc-executor-wasmtime"
11580version = "0.26.0"11679version = "0.32.0"
11581source = "registry+https://github.com/rust-lang/crates.io-index"11680source = "registry+https://github.com/rust-lang/crates.io-index"
11582checksum = "f9167d733e928c528273be63b905ec750cfda85d740453071463da69f7d633bc"11681checksum = "fa37286464bd16146c612e3193a56df728815d23f9bf0faac7df898c0944c87f"
11583dependencies = [11682dependencies = [
11584 "anyhow",11683 "anyhow",
11585 "cfg-if",11684 "cfg-if",
11586 "libc",11685 "libc",
11587 "log",11686 "log",
11588 "parking_lot 0.12.1",11687 "parking_lot 0.12.2",
11589 "rustix 0.36.17",11688 "rustix 0.36.17",
11590 "sc-allocator",11689 "sc-allocator",
11591 "sc-executor-common",11690 "sc-executor-common",
1159611695
11597[[package]]11696[[package]]
11598name = "sc-informant"11697name = "sc-informant"
11599version = "0.30.0"11698version = "0.36.0"
11600source = "registry+https://github.com/rust-lang/crates.io-index"11699source = "registry+https://github.com/rust-lang/crates.io-index"
11601checksum = "7189a0b95fe5d79895a107c6c057bc9351cd9c867552200815199cde25bcdb9d"11700checksum = "2e9005c37100c6ea2b06668f72ba5bc927b5a2445ed26b008ddf1875998dea41"
11602dependencies = [11701dependencies = [
11603 "ansi_term",11702 "ansi_term",
11604 "futures",11703 "futures",
11607 "sc-client-api",11706 "sc-client-api",
11608 "sc-network",11707 "sc-network",
11609 "sc-network-common",11708 "sc-network-common",
11709 "sc-network-sync",
11610 "sp-blockchain",11710 "sp-blockchain",
11611 "sp-runtime",11711 "sp-runtime",
11612]11712]
1161311713
11614[[package]]11714[[package]]
11615name = "sc-keystore"11715name = "sc-keystore"
11616version = "22.0.0"11716version = "28.0.0"
11617source = "registry+https://github.com/rust-lang/crates.io-index"11717source = "registry+https://github.com/rust-lang/crates.io-index"
11618checksum = "abecdf9778fccc254c0b5e227ea8b90fd59247044a30ad293a068b180427d244"11718checksum = "3ef7283da5d643ef89ed094e1b23451ec70386a9474d337cdaa0ef81870bb2d4"
11619dependencies = [11719dependencies = [
11620 "array-bytes 6.2.0",11720 "array-bytes 6.2.3",
11621 "parking_lot 0.12.1",11721 "parking_lot 0.12.2",
11622 "serde_json",11722 "serde_json",
11623 "sp-application-crypto",11723 "sp-application-crypto",
11624 "sp-core",11724 "sp-core",
1162811728
11629[[package]]11729[[package]]
11630name = "sc-mixnet"11730name = "sc-mixnet"
11631version = "0.1.0"11731version = "0.7.0"
11632source = "registry+https://github.com/rust-lang/crates.io-index"11732source = "registry+https://github.com/rust-lang/crates.io-index"
11633checksum = "d53ea71ec60601c18d6adcaf7a62698fc2e886c16dc8fdf8d61b3b76244dea38"11733checksum = "248d9be75de68e34f6490065c398b8177ff967902d93e6b88527a0e8c00903ad"
11634dependencies = [11734dependencies = [
11635 "array-bytes 4.2.0",11735 "array-bytes 4.2.0",
11636 "arrayvec 0.7.4",11736 "arrayvec 0.7.4",
11637 "blake2 0.10.6",11737 "blake2 0.10.6",
11738 "bytes",
11638 "futures",11739 "futures",
11639 "futures-timer",11740 "futures-timer",
11640 "libp2p-identity",11741 "libp2p-identity",
11641 "log",11742 "log",
11642 "mixnet",11743 "mixnet",
11643 "multiaddr",11744 "multiaddr",
11644 "parity-scale-codec",11745 "parity-scale-codec",
11645 "parking_lot 0.12.1",11746 "parking_lot 0.12.2",
11646 "sc-client-api",11747 "sc-client-api",
11647 "sc-network",11748 "sc-network",
11648 "sc-transaction-pool-api",11749 "sc-transaction-pool-api",
1165711758
11658[[package]]11759[[package]]
11659name = "sc-network"11760name = "sc-network"
11660version = "0.31.0"11761version = "0.37.0"
11661source = "registry+https://github.com/rust-lang/crates.io-index"11762source = "registry+https://github.com/rust-lang/crates.io-index"
11662checksum = "01f519592a971199c486d412dbf38ba54096857080bf4b9d29c9ffabcfee3745"11763checksum = "4067423488686ff78561ed0d32ac7e2617edd31219088b1322e85e945e62de29"
11663dependencies = [11764dependencies = [
11664 "array-bytes 6.2.0",11765 "array-bytes 6.2.3",
11665 "async-channel 1.9.0",11766 "async-channel 1.9.0",
11666 "async-trait",11767 "async-trait",
11667 "asynchronous-codec",11768 "asynchronous-codec",
11676 "log",11777 "log",
11677 "mockall",11778 "mockall",
11678 "parity-scale-codec",11779 "parity-scale-codec",
11679 "parking_lot 0.12.1",11780 "parking_lot 0.12.2",
11680 "partial_sort",11781 "partial_sort",
11681 "pin-project",11782 "pin-project",
11682 "rand 0.8.5",11783 "rand",
11683 "sc-client-api",11784 "sc-client-api",
11684 "sc-network-common",11785 "sc-network-common",
11685 "sc-utils",11786 "sc-utils",
11692 "sp-runtime",11793 "sp-runtime",
11693 "substrate-prometheus-endpoint",11794 "substrate-prometheus-endpoint",
11694 "thiserror",11795 "thiserror",
11796 "tokio",
11797 "tokio-stream",
11695 "unsigned-varint",11798 "unsigned-varint",
11696 "wasm-timer",11799 "wasm-timer",
11697 "zeroize",11800 "zeroize",
11698]11801]
1169911802
11700[[package]]11803[[package]]
11701name = "sc-network-bitswap"11804name = "sc-network-bitswap"
11702version = "0.30.0"11805version = "0.36.0"
11703source = "registry+https://github.com/rust-lang/crates.io-index"11806source = "registry+https://github.com/rust-lang/crates.io-index"
11704checksum = "8fe63a55e03d8bc796ff1e94e7fb62a62acfd7a80a47865a97b55c13371c3e05"11807checksum = "8dacf210f4e36e53dc3d3ff1cfd72e4378eb973568c261e7c62bc8daaec9f945"
11705dependencies = [11808dependencies = [
11706 "async-channel 1.9.0",11809 "async-channel 1.9.0",
11707 "cid",11810 "cid",
11708 "futures",11811 "futures",
11709 "libp2p-identity",11812 "libp2p-identity",
11710 "log",11813 "log",
11711 "prost",11814 "prost 0.12.6",
11712 "prost-build",11815 "prost-build",
11713 "sc-client-api",11816 "sc-client-api",
11714 "sc-network",11817 "sc-network",
1172011823
11721[[package]]11824[[package]]
11722name = "sc-network-common"11825name = "sc-network-common"
11723version = "0.30.0"11826version = "0.36.0"
11724source = "registry+https://github.com/rust-lang/crates.io-index"11827source = "registry+https://github.com/rust-lang/crates.io-index"
11725checksum = "8d236686d15275e4aa49ca929a06fb6fac28aa70e35ee185b981036c149f9e9d"11828checksum = "551dba7ce65d136788c3154044fb425e2cb6e883d20c3cd25c0720a5b5251ed4"
11726dependencies = [11829dependencies = [
11727 "async-trait",11830 "async-trait",
11728 "bitflags 1.3.2",11831 "bitflags 1.3.2",
1173811841
11739[[package]]11842[[package]]
11740name = "sc-network-gossip"11843name = "sc-network-gossip"
11741version = "0.31.0"11844version = "0.37.0"
11742source = "registry+https://github.com/rust-lang/crates.io-index"11845source = "registry+https://github.com/rust-lang/crates.io-index"
11743checksum = "b884a9f7cd348c4c1899c0bbf95237e39dffba4baec48d4b98c1046f6bb04fa5"11846checksum = "06e36f8665cba733bd0690e864ef59cb87627120e57607b768e6e7cf30cecd20"
11744dependencies = [11847dependencies = [
11745 "ahash 0.8.6",11848 "ahash 0.8.11",
11746 "futures",11849 "futures",
11747 "futures-timer",11850 "futures-timer",
11748 "libp2p",11851 "libp2p",
11749 "log",11852 "log",
11750 "sc-network",11853 "sc-network",
11751 "sc-network-common",11854 "sc-network-common",
11855 "sc-network-sync",
11752 "schnellru",11856 "schnellru",
11753 "sp-runtime",11857 "sp-runtime",
11754 "substrate-prometheus-endpoint",11858 "substrate-prometheus-endpoint",
1175711861
11758[[package]]11862[[package]]
11759name = "sc-network-light"11863name = "sc-network-light"
11760version = "0.30.0"11864version = "0.36.0"
11761source = "registry+https://github.com/rust-lang/crates.io-index"11865source = "registry+https://github.com/rust-lang/crates.io-index"
11762checksum = "aac888fd720ef8bb2ff7d2b7f7b2e54d17bb85a417cf1e1b6f0f64f7e644936d"11866checksum = "d4c4a77832e7d86e2b8f579339a47ebc16eec560bb4d62c42f0daad10700a512"
11763dependencies = [11867dependencies = [
11764 "array-bytes 6.2.0",11868 "array-bytes 6.2.3",
11765 "async-channel 1.9.0",11869 "async-channel 1.9.0",
11766 "futures",11870 "futures",
11767 "libp2p-identity",11871 "libp2p-identity",
11768 "log",11872 "log",
11769 "parity-scale-codec",11873 "parity-scale-codec",
11770 "prost",11874 "prost 0.12.6",
11771 "prost-build",11875 "prost-build",
11772 "sc-client-api",11876 "sc-client-api",
11773 "sc-network",11877 "sc-network",
1177911883
11780[[package]]11884[[package]]
11781name = "sc-network-sync"11885name = "sc-network-sync"
11782version = "0.30.0"11886version = "0.36.0"
11783source = "registry+https://github.com/rust-lang/crates.io-index"11887source = "registry+https://github.com/rust-lang/crates.io-index"
11784checksum = "10c697aa8f52cf194b9f00113a7d0d3ce5d1456bedd6169a9caae10737f02907"11888checksum = "b7dfdaf49edeaa23ae0da1a9bf6ea3e308c11822cb3a853996f1203b06249411"
11785dependencies = [11889dependencies = [
11786 "array-bytes 6.2.0",11890 "array-bytes 6.2.3",
11787 "async-channel 1.9.0",11891 "async-channel 1.9.0",
11788 "async-trait",11892 "async-trait",
11789 "fork-tree",11893 "fork-tree",
11793 "log",11897 "log",
11794 "mockall",11898 "mockall",
11795 "parity-scale-codec",11899 "parity-scale-codec",
11796 "prost",11900 "prost 0.12.6",
11797 "prost-build",11901 "prost-build",
11798 "sc-client-api",11902 "sc-client-api",
11799 "sc-consensus",11903 "sc-consensus",
11810 "sp-runtime",11914 "sp-runtime",
11811 "substrate-prometheus-endpoint",11915 "substrate-prometheus-endpoint",
11812 "thiserror",11916 "thiserror",
11917 "tokio",
11813 "tokio-stream",11918 "tokio-stream",
11814]11919]
1181511920
11816[[package]]11921[[package]]
11817name = "sc-network-transactions"11922name = "sc-network-transactions"
11818version = "0.30.0"11923version = "0.36.0"
11819source = "registry+https://github.com/rust-lang/crates.io-index"11924source = "registry+https://github.com/rust-lang/crates.io-index"
11820checksum = "bb7c9bfc7b58ce229d1512158b8f13dc849ec24857d1c29a41a867fb8afb5c09"11925checksum = "1b3824e7a1aa29ed3d2294810c8e018a6df3798eec236f3043a62945daf7d9b1"
11821dependencies = [11926dependencies = [
11822 "array-bytes 6.2.0",11927 "array-bytes 6.2.3",
11823 "futures",11928 "futures",
11824 "libp2p",11929 "libp2p",
11825 "log",11930 "log",
11826 "parity-scale-codec",11931 "parity-scale-codec",
11827 "sc-network",11932 "sc-network",
11828 "sc-network-common",11933 "sc-network-common",
11934 "sc-network-sync",
11829 "sc-utils",11935 "sc-utils",
11830 "sp-consensus",11936 "sp-consensus",
11831 "sp-runtime",11937 "sp-runtime",
1183411940
11835[[package]]11941[[package]]
11836name = "sc-offchain"11942name = "sc-offchain"
11837version = "26.0.0"11943version = "32.0.0"
11838source = "registry+https://github.com/rust-lang/crates.io-index"11944source = "registry+https://github.com/rust-lang/crates.io-index"
11839checksum = "47950facab8dedf71c39667ccce8834252944e8f091f3a3bcdfc0b4503573da4"11945checksum = "d9d03fd90a535f30badaee9763a2124b9c68dae406e29497f406bfd45cbc7eac"
11840dependencies = [11946dependencies = [
11841 "array-bytes 6.2.0",11947 "array-bytes 6.2.3",
11842 "bytes",11948 "bytes",
11843 "fnv",11949 "fnv",
11844 "futures",11950 "futures",
11850 "num_cpus",11956 "num_cpus",
11851 "once_cell",11957 "once_cell",
11852 "parity-scale-codec",11958 "parity-scale-codec",
11853 "parking_lot 0.12.1",11959 "parking_lot 0.12.2",
11854 "rand 0.8.5",11960 "rand",
11855 "sc-client-api",11961 "sc-client-api",
11856 "sc-network",11962 "sc-network",
11857 "sc-network-common",11963 "sc-network-common",
1186911975
11870[[package]]11976[[package]]
11871name = "sc-proposer-metrics"11977name = "sc-proposer-metrics"
11872version = "0.16.0"11978version = "0.18.0"
11873source = "registry+https://github.com/rust-lang/crates.io-index"11979source = "registry+https://github.com/rust-lang/crates.io-index"
11874checksum = "221845dce4e7adb57eca5f73318699b377cff29aef92a586e71aa5cef62f879b"11980checksum = "f680a0bed67dab19898624246376ba85d5f70a89859ba030830aacd079c28d3c"
11875dependencies = [11981dependencies = [
11876 "log",11982 "log",
11877 "substrate-prometheus-endpoint",11983 "substrate-prometheus-endpoint",
11878]11984]
1187911985
11880[[package]]11986[[package]]
11881name = "sc-rpc"11987name = "sc-rpc"
11882version = "26.0.0"11988version = "32.0.0"
11883source = "registry+https://github.com/rust-lang/crates.io-index"11989source = "registry+https://github.com/rust-lang/crates.io-index"
11884checksum = "eb277280b6b3519e4a2e693b75d4ca516ebb4a928162e6a1791b217b2be60c9f"11990checksum = "6d796d75b22785b09c58478f1418b75c9787d598a0d2ab8edbd0072731ec4aaa"
11885dependencies = [11991dependencies = [
11886 "futures",11992 "futures",
11887 "jsonrpsee",11993 "jsonrpsee",
11888 "log",11994 "log",
11889 "parity-scale-codec",11995 "parity-scale-codec",
11890 "parking_lot 0.12.1",11996 "parking_lot 0.12.2",
11891 "sc-block-builder",11997 "sc-block-builder",
11892 "sc-chain-spec",11998 "sc-chain-spec",
11893 "sc-client-api",11999 "sc-client-api",
1191212018
11913[[package]]12019[[package]]
11914name = "sc-rpc-api"12020name = "sc-rpc-api"
11915version = "0.30.0"12021version = "0.36.0"
11916source = "registry+https://github.com/rust-lang/crates.io-index"12022source = "registry+https://github.com/rust-lang/crates.io-index"
11917checksum = "def499ac717db8442fe18543e52330d5f105027b666df73c0b38e81e9105078b"12023checksum = "3705feca378ef3f3f84fb337480405a611a15c8637b2449ed514ca63765e421b"
11918dependencies = [12024dependencies = [
11919 "jsonrpsee",12025 "jsonrpsee",
11920 "parity-scale-codec",12026 "parity-scale-codec",
1193312039
11934[[package]]12040[[package]]
11935name = "sc-rpc-server"12041name = "sc-rpc-server"
11936version = "10.0.0"12042version = "14.0.0"
11937source = "registry+https://github.com/rust-lang/crates.io-index"12043source = "registry+https://github.com/rust-lang/crates.io-index"
11938checksum = "9e8083e1b026dcf397f8c1122b3fba6cc744c6962996df6a30e0fb75223f7637"12044checksum = "65f705946ae375fc47ee9a2e2df0b7e339a1fb8c8eb5c9eb6f206619d27946a7"
11939dependencies = [12045dependencies = [
12046 "futures",
12047 "governor",
11940 "http",12048 "http",
12049 "hyper",
11941 "jsonrpsee",12050 "jsonrpsee",
11942 "log",12051 "log",
11943 "serde_json",12052 "serde_json",
1194912058
11950[[package]]12059[[package]]
11951name = "sc-rpc-spec-v2"12060name = "sc-rpc-spec-v2"
11952version = "0.31.0"12061version = "0.37.0"
11953source = "registry+https://github.com/rust-lang/crates.io-index"12062source = "registry+https://github.com/rust-lang/crates.io-index"
11954checksum = "198ea9287111b4060ce1d70dce99804b99d1a92b5fb23a79d94bf0cb460ca3ce"12063checksum = "66dcea3fe5f0bcbaf08d6a42e877ae8f50b9cdbc87f65f7c79fbe5003e3969dc"
11955dependencies = [12064dependencies = [
11956 "array-bytes 6.2.0",12065 "array-bytes 6.2.3",
11957 "futures",12066 "futures",
11958 "futures-util",12067 "futures-util",
11959 "hex",12068 "hex",
11960 "jsonrpsee",12069 "jsonrpsee",
11961 "log",12070 "log",
11962 "parity-scale-codec",12071 "parity-scale-codec",
11963 "parking_lot 0.12.1",12072 "parking_lot 0.12.2",
12073 "rand",
11964 "sc-chain-spec",12074 "sc-chain-spec",
11965 "sc-client-api",12075 "sc-client-api",
12076 "sc-rpc",
11966 "sc-transaction-pool-api",12077 "sc-transaction-pool-api",
11967 "sc-utils",12078 "sc-utils",
11968 "serde",12079 "serde",
11969 "sp-api",12080 "sp-api",
11970 "sp-blockchain",12081 "sp-blockchain",
11971 "sp-core",12082 "sp-core",
12083 "sp-rpc",
11972 "sp-runtime",12084 "sp-runtime",
11973 "sp-version",12085 "sp-version",
11974 "thiserror",12086 "thiserror",
1197812090
11979[[package]]12091[[package]]
11980name = "sc-service"12092name = "sc-service"
11981version = "0.32.0"12093version = "0.38.0"
11982source = "registry+https://github.com/rust-lang/crates.io-index"12094source = "registry+https://github.com/rust-lang/crates.io-index"
11983checksum = "3623ae5bd7b089da9796a3f1edd974c94f34dd4b4b527146662ef409ae9cd38c"12095checksum = "42678fb737ea101658a8288cd3fcc0bff59ef40cd1a1c4f4d4042c3fa17bae41"
11984dependencies = [12096dependencies = [
11985 "async-trait",12097 "async-trait",
11986 "directories",12098 "directories",
11990 "jsonrpsee",12102 "jsonrpsee",
11991 "log",12103 "log",
11992 "parity-scale-codec",12104 "parity-scale-codec",
11993 "parking_lot 0.12.1",12105 "parking_lot 0.12.2",
11994 "pin-project",12106 "pin-project",
11995 "rand 0.8.5",12107 "rand",
11996 "sc-block-builder",
11997 "sc-chain-spec",12108 "sc-chain-spec",
11998 "sc-client-api",12109 "sc-client-api",
11999 "sc-client-db",12110 "sc-client-db",
12016 "sc-transaction-pool",12127 "sc-transaction-pool",
12017 "sc-transaction-pool-api",12128 "sc-transaction-pool-api",
12018 "sc-utils",12129 "sc-utils",
12130 "schnellru",
12019 "serde",12131 "serde",
12020 "serde_json",12132 "serde_json",
12021 "sp-api",12133 "sp-api",
1204312155
12044[[package]]12156[[package]]
12045name = "sc-state-db"12157name = "sc-state-db"
12046version = "0.27.0"12158version = "0.33.0"
12047source = "registry+https://github.com/rust-lang/crates.io-index"12159source = "registry+https://github.com/rust-lang/crates.io-index"
12048checksum = "3635fe572adfe796886e18910c8b94f7ce67f9ae3e2c161176e122ddf0baa7e4"12160checksum = "9863fb81595a25b908d7143c1a3e162d237e67890088363df4a121fe37c49d08"
12049dependencies = [12161dependencies = [
12050 "log",12162 "log",
12051 "parity-scale-codec",12163 "parity-scale-codec",
12052 "parking_lot 0.12.1",12164 "parking_lot 0.12.2",
12053 "sp-core",12165 "sp-core",
12054]12166]
1205512167
12056[[package]]12168[[package]]
12057name = "sc-storage-monitor"12169name = "sc-storage-monitor"
12058version = "0.13.0"12170version = "0.19.0"
12059source = "registry+https://github.com/rust-lang/crates.io-index"12171source = "registry+https://github.com/rust-lang/crates.io-index"
12060checksum = "0f9acfc934aa5b0185e861ce81245685086c7231fcb2b582da4afc4d0bd62a98"12172checksum = "d54aa61816b82fbe136f3c39b40ecb27bc7302c0c9039cc426b2c6f492666ac5"
12061dependencies = [12173dependencies = [
12062 "clap",12174 "clap",
12063 "fs4",12175 "fs4",
12064 "log",12176 "log",
12065 "sc-client-db",
12066 "sp-core",12177 "sp-core",
12067 "thiserror",12178 "thiserror",
12068 "tokio",12179 "tokio",
12069]12180]
1207012181
12071[[package]]12182[[package]]
12072name = "sc-sync-state-rpc"12183name = "sc-sync-state-rpc"
12073version = "0.31.0"12184version = "0.37.0"
12074source = "registry+https://github.com/rust-lang/crates.io-index"12185source = "registry+https://github.com/rust-lang/crates.io-index"
12075checksum = "fe1efc0811813b73b9bb6eccc630ccd43d13b4306255a41ef55b9304d32e64c2"12186checksum = "8fa4c5d5add3ee03e2b0aa02c827b8e3bc307be7c403eb534f95d5c81d372f78"
12076dependencies = [12187dependencies = [
12077 "jsonrpsee",12188 "jsonrpsee",
12078 "parity-scale-codec",12189 "parity-scale-codec",
1209012201
12091[[package]]12202[[package]]
12092name = "sc-sysinfo"12203name = "sc-sysinfo"
12093version = "24.0.0"12204version = "30.0.0"
12094source = "registry+https://github.com/rust-lang/crates.io-index"12205source = "registry+https://github.com/rust-lang/crates.io-index"
12095checksum = "60967710b85e650652832df73915b64c315f7b437e53c4635bd26106d6d05c21"12206checksum = "f098da1a83dc5b4e69ef66f7dfc5c0a82bc63defe8dcb0aaa1819e9b2bd6d744"
12096dependencies = [12207dependencies = [
12208 "derive_more",
12097 "futures",12209 "futures",
12098 "libc",12210 "libc",
12099 "log",12211 "log",
12100 "rand 0.8.5",12212 "rand",
12101 "rand_pcg",12213 "rand_pcg",
12102 "regex",12214 "regex",
12103 "sc-telemetry",12215 "sc-telemetry",
12104 "serde",12216 "serde",
12105 "serde_json",12217 "serde_json",
12106 "sp-core",12218 "sp-core",
12219 "sp-crypto-hashing",
12107 "sp-io",12220 "sp-io",
12108 "sp-std",12221 "sp-std",
12109]12222]
1211012223
12111[[package]]12224[[package]]
12112name = "sc-telemetry"12225name = "sc-telemetry"
12113version = "12.0.0"12226version = "17.0.0"
12114source = "registry+https://github.com/rust-lang/crates.io-index"12227source = "registry+https://github.com/rust-lang/crates.io-index"
12115checksum = "28e214e4d46cac02321bc3dc6fd72f019ac10819d1ac8f24f6935a4ae74ef273"12228checksum = "6c6807ebd9f43ab628931842d3aaa9404ddfd07013e9c7027ca603f496939577"
12116dependencies = [12229dependencies = [
12117 "chrono",12230 "chrono",
12118 "futures",12231 "futures",
12119 "libp2p",12232 "libp2p",
12120 "log",12233 "log",
12121 "parking_lot 0.12.1",12234 "parking_lot 0.12.2",
12122 "pin-project",12235 "pin-project",
12123 "rand 0.8.5",12236 "rand",
12124 "sc-utils",12237 "sc-utils",
12125 "serde",12238 "serde",
12126 "serde_json",12239 "serde_json",
1213012243
12131[[package]]12244[[package]]
12132name = "sc-tracing"12245name = "sc-tracing"
12133version = "25.0.0"12246version = "31.0.0"
12134source = "registry+https://github.com/rust-lang/crates.io-index"12247source = "registry+https://github.com/rust-lang/crates.io-index"
12135checksum = "83bcd745ea216ba0c0a344cff2c41b12e27846d5fca4b28f56ff77e1d3ff3634"12248checksum = "83e8f5e8eb36f887dba06e1392717e27e4edf12d23d5220dba8ee851de8b174e"
12136dependencies = [12249dependencies = [
12137 "ansi_term",12250 "ansi_term",
12138 "atty",
12139 "chrono",12251 "chrono",
12252 "is-terminal",
12140 "lazy_static",12253 "lazy_static",
12141 "libc",12254 "libc",
12142 "log",12255 "log",
12143 "parking_lot 0.12.1",12256 "parity-scale-codec",
12257 "parking_lot 0.12.2",
12144 "regex",12258 "regex",
12145 "rustc-hash",12259 "rustc-hash",
12146 "sc-client-api",12260 "sc-client-api",
1216012274
12161[[package]]12275[[package]]
12162name = "sc-tracing-proc-macro"12276name = "sc-tracing-proc-macro"
12163version = "10.0.0"12277version = "11.0.0"
12164source = "registry+https://github.com/rust-lang/crates.io-index"12278source = "registry+https://github.com/rust-lang/crates.io-index"
12165checksum = "9c4ae9e4f957d7274ac6b59d667b66262caf6482dbb1b63f1c370528626b1272"12279checksum = "151cdf86d79abf22cf2a240a7ca95041c908dbd96c2ae9a818073042aa210964"
12166dependencies = [12280dependencies = [
12167 "proc-macro-crate 1.3.1",12281 "proc-macro-crate 3.1.0",
12168 "proc-macro2",12282 "proc-macro2",
12169 "quote",12283 "quote",
12170 "syn 2.0.39",12284 "syn 2.0.65",
12171]12285]
1217212286
12173[[package]]12287[[package]]
12174name = "sc-transaction-pool"12288name = "sc-transaction-pool"
12175version = "25.0.0"12289version = "31.0.0"
12176source = "registry+https://github.com/rust-lang/crates.io-index"12290source = "registry+https://github.com/rust-lang/crates.io-index"
12177checksum = "6f6db45a057a619670e07deefb4e69aab83386f076363db424907da2b2e82590"12291checksum = "d56300f466670067cca98a931b0b6cbc8b018c0d296eb915c1473bac45b7cd73"
12178dependencies = [12292dependencies = [
12179 "async-trait",12293 "async-trait",
12180 "futures",12294 "futures",
12181 "futures-timer",12295 "futures-timer",
12182 "linked-hash-map",12296 "linked-hash-map",
12183 "log",12297 "log",
12184 "parity-scale-codec",12298 "parity-scale-codec",
12185 "parking_lot 0.12.1",12299 "parking_lot 0.12.2",
12186 "sc-client-api",12300 "sc-client-api",
12187 "sc-transaction-pool-api",12301 "sc-transaction-pool-api",
12188 "sc-utils",12302 "sc-utils",
12189 "serde",12303 "serde",
12190 "sp-api",12304 "sp-api",
12191 "sp-blockchain",12305 "sp-blockchain",
12192 "sp-core",12306 "sp-core",
12307 "sp-crypto-hashing",
12193 "sp-runtime",12308 "sp-runtime",
12194 "sp-tracing",12309 "sp-tracing",
12195 "sp-transaction-pool",12310 "sp-transaction-pool",
1219912314
12200[[package]]12315[[package]]
12201name = "sc-transaction-pool-api"12316name = "sc-transaction-pool-api"
12202version = "25.0.0"12317version = "31.0.0"
12203source = "registry+https://github.com/rust-lang/crates.io-index"12318source = "registry+https://github.com/rust-lang/crates.io-index"
12204checksum = "1491607f296bb8cce09a5eb3a03320c60ad52bb8120127b26f69c32bcaccd8f2"12319checksum = "3609025d39a1b75f1ee4f490dc52e000de144948a73cacd788f5995df5ebe8bf"
12205dependencies = [12320dependencies = [
12206 "async-trait",12321 "async-trait",
12207 "futures",12322 "futures",
1221612331
12217[[package]]12332[[package]]
12218name = "sc-utils"12333name = "sc-utils"
12219version = "11.0.0"12334version = "16.0.0"
12220source = "registry+https://github.com/rust-lang/crates.io-index"12335source = "registry+https://github.com/rust-lang/crates.io-index"
12221checksum = "81a4769c82dde62b9243dcc166be52e0c5d2d61cf2599923271118d9c8b997b1"12336checksum = "1863d482be044f4768ef5de6119dc70b5e31e6e9f71ad225c177474d6540e424"
12222dependencies = [12337dependencies = [
12223 "async-channel 1.9.0",12338 "async-channel 1.9.0",
12224 "futures",12339 "futures",
12225 "futures-timer",12340 "futures-timer",
12226 "lazy_static",12341 "lazy_static",
12227 "log",12342 "log",
12228 "parking_lot 0.12.1",12343 "parking_lot 0.12.2",
12229 "prometheus",12344 "prometheus",
12230 "sp-arithmetic",12345 "sp-arithmetic",
12231]12346]
1223212347
12233[[package]]12348[[package]]
12234name = "scale-info"12349name = "scale-info"
12235version = "2.10.0"12350version = "2.11.3"
12236source = "registry+https://github.com/rust-lang/crates.io-index"12351source = "registry+https://github.com/rust-lang/crates.io-index"
12237checksum = "7f7d66a1128282b7ef025a8ead62a4a9fcf017382ec53b8ffbf4d7bf77bd3c60"12352checksum = "eca070c12893629e2cc820a9761bedf6ce1dcddc9852984d1dc734b8bd9bd024"
12238dependencies = [12353dependencies = [
12239 "bitvec",12354 "bitvec",
12240 "cfg-if",12355 "cfg-if",
1224612361
12247[[package]]12362[[package]]
12248name = "scale-info-derive"12363name = "scale-info-derive"
12249version = "2.10.0"12364version = "2.11.3"
12250source = "registry+https://github.com/rust-lang/crates.io-index"12365source = "registry+https://github.com/rust-lang/crates.io-index"
12251checksum = "abf2c68b89cafb3b8d918dd07b42be0da66ff202cf1155c5739a4e0c1ea0dc19"12366checksum = "2d35494501194174bda522a32605929eefc9ecf7e0a326c26db1fdd85881eb62"
12252dependencies = [12367dependencies = [
12253 "proc-macro-crate 1.3.1",12368 "proc-macro-crate 3.1.0",
12254 "proc-macro2",12369 "proc-macro2",
12255 "quote",12370 "quote",
12256 "syn 1.0.109",12371 "syn 1.0.109",
12257]12372]
1225812373
12259[[package]]12374[[package]]
12260name = "schannel"12375name = "schannel"
12261version = "0.1.22"12376version = "0.1.23"
12262source = "registry+https://github.com/rust-lang/crates.io-index"12377source = "registry+https://github.com/rust-lang/crates.io-index"
12263checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"12378checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
12264dependencies = [12379dependencies = [
12265 "windows-sys 0.48.0",12380 "windows-sys 0.52.0",
12266]12381]
1226712382
12268[[package]]12383[[package]]
12269name = "schnellru"12384name = "schnellru"
12270version = "0.2.1"12385version = "0.2.3"
12271source = "registry+https://github.com/rust-lang/crates.io-index"12386source = "registry+https://github.com/rust-lang/crates.io-index"
12272checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d"12387checksum = "c9a8ef13a93c54d20580de1e5c413e624e53121d42fc7e2c11d10ef7f8b02367"
12273dependencies = [12388dependencies = [
12274 "ahash 0.8.6",12389 "ahash 0.8.11",
12275 "cfg-if",12390 "cfg-if",
12276 "hashbrown 0.13.2",12391 "hashbrown 0.13.2",
12277]12392]
1227812393
12279[[package]]12394[[package]]
12280name = "schnorrkel"12395name = "schnorrkel"
12281version = "0.9.1"12396version = "0.10.2"
12282source = "registry+https://github.com/rust-lang/crates.io-index"12397source = "registry+https://github.com/rust-lang/crates.io-index"
12283checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"12398checksum = "844b7645371e6ecdf61ff246ba1958c29e802881a749ae3fb1993675d210d28d"
12284dependencies = [12399dependencies = [
12285 "arrayref",12400 "arrayref",
12286 "arrayvec 0.5.2",12401 "arrayvec 0.7.4",
12287 "curve25519-dalek 2.1.3",12402 "curve25519-dalek-ng",
12288 "getrandom 0.1.16",12403 "merlin",
12289 "merlin 2.0.1",
12290 "rand 0.7.3",12404 "rand_core 0.6.4",
12291 "rand_core 0.5.1",
12292 "sha2 0.8.2",12405 "sha2 0.9.9",
12293 "subtle 2.4.1",12406 "subtle-ng",
12294 "zeroize",12407 "zeroize",
12295]12408]
1229612409
12297[[package]]12410[[package]]
12298name = "schnorrkel"12411name = "schnorrkel"
12299version = "0.10.2"12412version = "0.11.4"
12300source = "registry+https://github.com/rust-lang/crates.io-index"12413source = "registry+https://github.com/rust-lang/crates.io-index"
12301checksum = "844b7645371e6ecdf61ff246ba1958c29e802881a749ae3fb1993675d210d28d"12414checksum = "8de18f6d8ba0aad7045f5feae07ec29899c1112584a38509a84ad7b04451eaa0"
12302dependencies = [12415dependencies = [
12416 "aead",
12303 "arrayref",12417 "arrayref",
12304 "arrayvec 0.7.4",12418 "arrayvec 0.7.4",
12305 "curve25519-dalek-ng",12419 "curve25519-dalek 4.1.2",
12306 "merlin 3.0.0",12420 "getrandom_or_panic",
12421 "merlin",
12307 "rand_core 0.6.4",12422 "rand_core 0.6.4",
12308 "sha2 0.9.9",12423 "serde_bytes",
12424 "sha2 0.10.8",
12309 "subtle-ng",12425 "subtle 2.5.0",
12310 "zeroize",12426 "zeroize",
12311]12427]
1231212428
1232412440
12325[[package]]12441[[package]]
12326name = "sct"12442name = "sct"
12327version = "0.6.1"
12328source = "registry+https://github.com/rust-lang/crates.io-index"
12329checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
12330dependencies = [
12331 "ring 0.16.20",
12332 "untrusted 0.7.1",
12333]
12334
12335[[package]]
12336name = "sct"
12337version = "0.7.1"12443version = "0.7.1"
12338source = "registry+https://github.com/rust-lang/crates.io-index"12444source = "registry+https://github.com/rust-lang/crates.io-index"
12339checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"12445checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
12340dependencies = [12446dependencies = [
12341 "ring 0.17.5",12447 "ring 0.17.8",
12342 "untrusted 0.9.0",12448 "untrusted 0.9.0",
12343]12449]
1234412450
12345[[package]]12451[[package]]
12346name = "sdp"
12347version = "0.5.3"
12348source = "registry+https://github.com/rust-lang/crates.io-index"
12349checksum = "4d22a5ef407871893fd72b4562ee15e4742269b173959db4b8df6f538c414e13"
12350dependencies = [
12351 "rand 0.8.5",
12352 "substring",
12353 "thiserror",
12354 "url",
12355]
12356
12357[[package]]
12358name = "sec1"12452name = "sec1"
12359version = "0.3.0"12453version = "0.7.3"
12360source = "registry+https://github.com/rust-lang/crates.io-index"12454source = "registry+https://github.com/rust-lang/crates.io-index"
12361checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"12455checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
12362dependencies = [12456dependencies = [
12363 "base16ct 0.1.1",12457 "base16ct",
12364 "der 0.6.1",12458 "der",
12365 "generic-array 0.14.7",12459 "generic-array 0.14.7",
12366 "pkcs8 0.9.0",12460 "pkcs8",
12461 "serdect",
12367 "subtle 2.4.1",12462 "subtle 2.5.0",
12368 "zeroize",12463 "zeroize",
12369]12464]
1237012465
12371[[package]]12466[[package]]
12372name = "sec1"12467name = "seccompiler"
12373version = "0.7.3"12468version = "0.4.0"
12374source = "registry+https://github.com/rust-lang/crates.io-index"12469source = "registry+https://github.com/rust-lang/crates.io-index"
12375checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"12470checksum = "345a3e4dddf721a478089d4697b83c6c0a8f5bf16086f6c13397e4534eb6e2e5"
12376dependencies = [12471dependencies = [
12377 "base16ct 0.2.0",12472 "libc",
12378 "der 0.7.8",
12379 "generic-array 0.14.7",
12380 "pkcs8 0.10.2",
12381 "subtle 2.4.1",
12382 "zeroize",
12383]12473]
1238412474
12385[[package]]12475[[package]]
12386name = "secp256k1"12476name = "secp256k1"
12387version = "0.24.3"12477version = "0.28.2"
12388source = "registry+https://github.com/rust-lang/crates.io-index"12478source = "registry+https://github.com/rust-lang/crates.io-index"
12389checksum = "6b1629c9c557ef9b293568b338dddfc8208c98a18c59d722a9d53f859d9c9b62"12479checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10"
12390dependencies = [12480dependencies = [
12391 "secp256k1-sys",12481 "secp256k1-sys",
12392]12482]
1239312483
12394[[package]]12484[[package]]
12395name = "secp256k1-sys"12485name = "secp256k1-sys"
12396version = "0.6.1"12486version = "0.9.2"
12397source = "registry+https://github.com/rust-lang/crates.io-index"12487source = "registry+https://github.com/rust-lang/crates.io-index"
12398checksum = "83080e2c2fc1006e625be82e5d1eb6a43b7fd9578b617fcc55814daf286bba4b"12488checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb"
12399dependencies = [12489dependencies = [
12400 "cc",12490 "cc",
12401]12491]
1241112501
12412[[package]]12502[[package]]
12413name = "security-framework"12503name = "security-framework"
12414version = "2.9.2"12504version = "2.11.0"
12415source = "registry+https://github.com/rust-lang/crates.io-index"12505source = "registry+https://github.com/rust-lang/crates.io-index"
12416checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"12506checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
12417dependencies = [12507dependencies = [
12418 "bitflags 1.3.2",12508 "bitflags 2.5.0",
12419 "core-foundation",12509 "core-foundation",
12420 "core-foundation-sys",12510 "core-foundation-sys",
12421 "libc",12511 "libc",
1242412514
12425[[package]]12515[[package]]
12426name = "security-framework-sys"12516name = "security-framework-sys"
12427version = "2.9.1"12517version = "2.11.0"
12428source = "registry+https://github.com/rust-lang/crates.io-index"12518source = "registry+https://github.com/rust-lang/crates.io-index"
12429checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"12519checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
12430dependencies = [12520dependencies = [
12431 "core-foundation-sys",12521 "core-foundation-sys",
12432 "libc",12522 "libc",
1244312533
12444[[package]]12534[[package]]
12445name = "semver"12535name = "semver"
12446version = "1.0.20"12536version = "1.0.23"
12447source = "registry+https://github.com/rust-lang/crates.io-index"12537source = "registry+https://github.com/rust-lang/crates.io-index"
12448checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"12538checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
12449dependencies = [12539dependencies = [
12450 "serde",12540 "serde",
12451]12541]
1245812548
12459[[package]]12549[[package]]
12460name = "serde"12550name = "serde"
12461version = "1.0.193"12551version = "1.0.202"
12462source = "registry+https://github.com/rust-lang/crates.io-index"12552source = "registry+https://github.com/rust-lang/crates.io-index"
12463checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"12553checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395"
12464dependencies = [12554dependencies = [
12465 "serde_derive",12555 "serde_derive",
12466]12556]
1246712557
12468[[package]]12558[[package]]
12559name = "serde_bytes"
12560version = "0.11.14"
12561source = "registry+https://github.com/rust-lang/crates.io-index"
12562checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734"
12563dependencies = [
12564 "serde",
12565]
12566
12567[[package]]
12469name = "serde_derive"12568name = "serde_derive"
12470version = "1.0.193"12569version = "1.0.202"
12471source = "registry+https://github.com/rust-lang/crates.io-index"12570source = "registry+https://github.com/rust-lang/crates.io-index"
12472checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"12571checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838"
12473dependencies = [12572dependencies = [
12474 "proc-macro2",12573 "proc-macro2",
12475 "quote",12574 "quote",
12476 "syn 2.0.39",12575 "syn 2.0.65",
12477]12576]
1247812577
12479[[package]]12578[[package]]
12480name = "serde_json"12579name = "serde_json"
12481version = "1.0.108"12580version = "1.0.117"
12482source = "registry+https://github.com/rust-lang/crates.io-index"12581source = "registry+https://github.com/rust-lang/crates.io-index"
12483checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"12582checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
12484dependencies = [12583dependencies = [
12485 "itoa",12584 "itoa",
12486 "ryu",12585 "ryu",
1248912588
12490[[package]]12589[[package]]
12491name = "serde_spanned"12590name = "serde_spanned"
12492version = "0.6.4"12591version = "0.6.6"
12493source = "registry+https://github.com/rust-lang/crates.io-index"12592source = "registry+https://github.com/rust-lang/crates.io-index"
12494checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80"12593checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0"
12495dependencies = [12594dependencies = [
12496 "serde",12595 "serde",
12497]12596]
1249812597
12499[[package]]12598[[package]]
12599name = "serdect"
12600version = "0.2.0"
12601source = "registry+https://github.com/rust-lang/crates.io-index"
12602checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177"
12603dependencies = [
12604 "base16ct",
12605 "serde",
12606]
12607
12608[[package]]
12500name = "sha-1"12609name = "sha-1"
12501version = "0.9.8"12610version = "0.9.8"
12502source = "registry+https://github.com/rust-lang/crates.io-index"12611source = "registry+https://github.com/rust-lang/crates.io-index"
12506 "cfg-if",12615 "cfg-if",
12507 "cpufeatures",12616 "cpufeatures",
12508 "digest 0.9.0",12617 "digest 0.9.0",
12509 "opaque-debug 0.3.0",12618 "opaque-debug 0.3.1",
12510]12619]
1251112620
12512[[package]]12621[[package]]
1252212631
12523[[package]]12632[[package]]
12524name = "sha2"12633name = "sha2"
12525version = "0.8.2"
12526source = "registry+https://github.com/rust-lang/crates.io-index"
12527checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
12528dependencies = [
12529 "block-buffer 0.7.3",
12530 "digest 0.8.1",
12531 "fake-simd",
12532 "opaque-debug 0.2.3",
12533]
12534
12535[[package]]
12536name = "sha2"
12537version = "0.9.9"12634version = "0.9.9"
12538source = "registry+https://github.com/rust-lang/crates.io-index"12635source = "registry+https://github.com/rust-lang/crates.io-index"
12539checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"12636checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
12542 "cfg-if",12639 "cfg-if",
12543 "cpufeatures",12640 "cpufeatures",
12544 "digest 0.9.0",12641 "digest 0.9.0",
12545 "opaque-debug 0.3.0",12642 "opaque-debug 0.3.1",
12546]12643]
1254712644
12548[[package]]12645[[package]]
1259612693
12597[[package]]12694[[package]]
12598name = "shlex"12695name = "shlex"
12599version = "1.2.0"12696version = "1.3.0"
12600source = "registry+https://github.com/rust-lang/crates.io-index"12697source = "registry+https://github.com/rust-lang/crates.io-index"
12601checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"12698checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1260212699
12603[[package]]12700[[package]]
12604name = "signal-hook-registry"12701name = "signal-hook-registry"
12605version = "1.4.1"12702version = "1.4.2"
12606source = "registry+https://github.com/rust-lang/crates.io-index"12703source = "registry+https://github.com/rust-lang/crates.io-index"
12607checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"12704checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
12608dependencies = [12705dependencies = [
12609 "libc",12706 "libc",
12610]12707]
1261112708
12612[[package]]12709[[package]]
12613name = "signature"12710name = "signature"
12614version = "1.6.4"
12615source = "registry+https://github.com/rust-lang/crates.io-index"
12616checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
12617dependencies = [
12618 "digest 0.10.7",
12619 "rand_core 0.6.4",
12620]
12621
12622[[package]]
12623name = "signature"
12624version = "2.2.0"12711version = "2.2.0"
12625source = "registry+https://github.com/rust-lang/crates.io-index"12712source = "registry+https://github.com/rust-lang/crates.io-index"
12626checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"12713checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
12643]12730]
1264412731
12645[[package]]12732[[package]]
12733name = "simple-mermaid"
12734version = "0.1.1"
12735source = "registry+https://github.com/rust-lang/crates.io-index"
12736checksum = "620a1d43d70e142b1d46a929af51d44f383db9c7a2ec122de2cd992ccfcf3c18"
12737
12738[[package]]
12646name = "siphasher"12739name = "siphasher"
12647version = "0.3.11"12740version = "0.3.11"
12648source = "registry+https://github.com/rust-lang/crates.io-index"12741source = "registry+https://github.com/rust-lang/crates.io-index"
1266512758
12666[[package]]12759[[package]]
12667name = "slot-range-helper"12760name = "slot-range-helper"
12668version = "4.0.0"12761version = "10.0.0"
12669source = "registry+https://github.com/rust-lang/crates.io-index"12762source = "registry+https://github.com/rust-lang/crates.io-index"
12670checksum = "1e902c6b7e8f86718aee7989d6c8ea851d9772cb54a3389f2d729d8df41167ec"12763checksum = "ada4c82b85daa6134837918889b341716e4918c608b3cc5345ae67ea85a187c6"
12671dependencies = [12764dependencies = [
12672 "enumn",12765 "enumn",
12673 "parity-scale-codec",12766 "parity-scale-codec",
1267812771
12679[[package]]12772[[package]]
12680name = "slotmap"12773name = "slotmap"
12681version = "1.0.6"12774version = "1.0.7"
12682source = "registry+https://github.com/rust-lang/crates.io-index"12775source = "registry+https://github.com/rust-lang/crates.io-index"
12683checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342"12776checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
12684dependencies = [12777dependencies = [
12685 "version_check",12778 "version_check",
12686]12779]
1268712780
12688[[package]]12781[[package]]
12689name = "smallvec"12782name = "smallvec"
12690version = "1.11.2"12783version = "1.13.2"
12691source = "registry+https://github.com/rust-lang/crates.io-index"12784source = "registry+https://github.com/rust-lang/crates.io-index"
12692checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"12785checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1269312786
12694[[package]]12787[[package]]
12695name = "smol"12788name = "smol"
12717 "arrayvec 0.7.4",12810 "arrayvec 0.7.4",
12718 "async-lock 2.8.0",12811 "async-lock 2.8.0",
12719 "atomic-take",12812 "atomic-take",
12720 "base64 0.21.5",12813 "base64 0.21.7",
12721 "bip39",12814 "bip39",
12722 "blake2-rfc",12815 "blake2-rfc",
12723 "bs58 0.5.0",12816 "bs58 0.5.1",
12724 "chacha20",12817 "chacha20",
12725 "crossbeam-queue",12818 "crossbeam-queue",
12726 "derive_more",12819 "derive_more",
12730 "fnv",12823 "fnv",
12731 "futures-lite 1.13.0",12824 "futures-lite 1.13.0",
12732 "futures-util",12825 "futures-util",
12733 "hashbrown 0.14.2",12826 "hashbrown 0.14.5",
12734 "hex",12827 "hex",
12735 "hmac 0.12.1",12828 "hmac 0.12.1",
12736 "itertools 0.11.0",12829 "itertools 0.11.0",
12737 "libsecp256k1",12830 "libsecp256k1",
12738 "merlin 3.0.0",12831 "merlin",
12739 "no-std-net",12832 "no-std-net",
12740 "nom",12833 "nom",
12741 "num-bigint",12834 "num-bigint",
12742 "num-rational",12835 "num-rational",
12743 "num-traits",12836 "num-traits",
12744 "pbkdf2 0.12.2",12837 "pbkdf2",
12745 "pin-project",12838 "pin-project",
12746 "poly1305",12839 "poly1305",
12747 "rand 0.8.5",12840 "rand",
12748 "rand_chacha 0.3.1",12841 "rand_chacha 0.3.1",
12749 "ruzstd",12842 "ruzstd",
12750 "schnorrkel 0.10.2",12843 "schnorrkel 0.10.2",
12758 "soketto",12851 "soketto",
12759 "twox-hash",12852 "twox-hash",
12760 "wasmi",12853 "wasmi",
12761 "x25519-dalek 2.0.0",12854 "x25519-dalek 2.0.1",
12762 "zeroize",12855 "zeroize",
12763]12856]
1276412857
12770dependencies = [12863dependencies = [
12771 "async-channel 1.9.0",12864 "async-channel 1.9.0",
12772 "async-lock 2.8.0",12865 "async-lock 2.8.0",
12773 "base64 0.21.5",12866 "base64 0.21.7",
12774 "blake2-rfc",12867 "blake2-rfc",
12775 "derive_more",12868 "derive_more",
12776 "either",12869 "either",
12779 "futures-channel",12872 "futures-channel",
12780 "futures-lite 1.13.0",12873 "futures-lite 1.13.0",
12781 "futures-util",12874 "futures-util",
12782 "hashbrown 0.14.2",12875 "hashbrown 0.14.5",
12783 "hex",12876 "hex",
12784 "itertools 0.11.0",12877 "itertools 0.11.0",
12785 "log",12878 "log",
12786 "lru 0.11.1",12879 "lru 0.11.1",
12787 "no-std-net",12880 "no-std-net",
12788 "parking_lot 0.12.1",12881 "parking_lot 0.12.2",
12789 "pin-project",12882 "pin-project",
12790 "rand 0.8.5",12883 "rand",
12791 "rand_chacha 0.3.1",12884 "rand_chacha 0.3.1",
12792 "serde",12885 "serde",
12793 "serde_json",12886 "serde_json",
1280012893
12801[[package]]12894[[package]]
12802name = "snap"12895name = "snap"
12803version = "1.1.0"12896version = "1.1.1"
12804source = "registry+https://github.com/rust-lang/crates.io-index"12897source = "registry+https://github.com/rust-lang/crates.io-index"
12805checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"12898checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
1280612899
12807[[package]]12900[[package]]
12808name = "snow"12901name = "snow"
12809version = "0.9.4"12902version = "0.9.6"
12810source = "registry+https://github.com/rust-lang/crates.io-index"12903source = "registry+https://github.com/rust-lang/crates.io-index"
12811checksum = "58021967fd0a5eeeb23b08df6cc244a4d4a5b4aec1d27c9e02fad1a58b4cd74e"12904checksum = "850948bee068e713b8ab860fe1adc4d109676ab4c3b621fd8147f06b261f2f85"
12812dependencies = [12905dependencies = [
12813 "aes-gcm 0.10.3",12906 "aes-gcm",
12814 "blake2 0.10.6",12907 "blake2 0.10.6",
12815 "chacha20poly1305",12908 "chacha20poly1305",
12816 "curve25519-dalek 4.1.1",12909 "curve25519-dalek 4.1.2",
12817 "rand_core 0.6.4",12910 "rand_core 0.6.4",
12818 "ring 0.17.5",12911 "ring 0.17.8",
12819 "rustc_version",12912 "rustc_version",
12820 "sha2 0.10.8",12913 "sha2 0.10.8",
12821 "subtle 2.4.1",12914 "subtle 2.5.0",
12822]12915]
1282312916
12824[[package]]12917[[package]]
1283312926
12834[[package]]12927[[package]]
12835name = "socket2"12928name = "socket2"
12836version = "0.5.5"12929version = "0.5.7"
12837source = "registry+https://github.com/rust-lang/crates.io-index"12930source = "registry+https://github.com/rust-lang/crates.io-index"
12838checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"12931checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
12839dependencies = [12932dependencies = [
12840 "libc",12933 "libc",
12841 "windows-sys 0.48.0",12934 "windows-sys 0.52.0",
12842]12935]
1284312936
12844[[package]]12937[[package]]
12854 "http",12947 "http",
12855 "httparse",12948 "httparse",
12856 "log",12949 "log",
12857 "rand 0.8.5",12950 "rand",
12858 "sha-1",12951 "sha-1",
12859]12952]
1286012953
12861[[package]]12954[[package]]
12862name = "sp-api"12955name = "sp-api"
12863version = "23.0.0"12956version = "29.0.0"
12864source = "registry+https://github.com/rust-lang/crates.io-index"12957source = "registry+https://github.com/rust-lang/crates.io-index"
12865checksum = "f582f92ce47c86e4ffffe81fdd5120fea7c850dc0800653a7fa203bcc1532335"12958checksum = "cb3fb2cdf7ee9b8d6ec7c2d8740b1a506e393dc18c7c2776764b47136d72dce7"
12866dependencies = [12959dependencies = [
12867 "hash-db 0.16.0",12960 "hash-db",
12868 "log",12961 "log",
12869 "parity-scale-codec",12962 "parity-scale-codec",
12870 "scale-info",12963 "scale-info",
12873 "sp-externalities",12966 "sp-externalities",
12874 "sp-metadata-ir",12967 "sp-metadata-ir",
12875 "sp-runtime",12968 "sp-runtime",
12969 "sp-runtime-interface",
12876 "sp-state-machine",12970 "sp-state-machine",
12877 "sp-std",12971 "sp-std",
12878 "sp-trie",12972 "sp-trie",
1288212976
12883[[package]]12977[[package]]
12884name = "sp-api-proc-macro"12978name = "sp-api-proc-macro"
12885version = "12.0.0"12979version = "17.0.1"
12886source = "registry+https://github.com/rust-lang/crates.io-index"12980source = "registry+https://github.com/rust-lang/crates.io-index"
12887checksum = "a896941b2d27365a6f937ebce11e36d55132dc32104f6a48b4cd765b55efd252"12981checksum = "63a5680d94c55e1c7dc54e9e09b4827314fab44f9300f0be170898dc402318de"
12888dependencies = [12982dependencies = [
12889 "Inflector",12983 "Inflector",
12890 "blake2 0.10.6",12984 "blake2 0.10.6",
12891 "expander 2.0.0",12985 "expander 2.1.0",
12892 "proc-macro-crate 1.3.1",12986 "proc-macro-crate 3.1.0",
12893 "proc-macro2",12987 "proc-macro2",
12894 "quote",12988 "quote",
12895 "syn 2.0.39",12989 "syn 2.0.65",
12896]12990]
1289712991
12898[[package]]12992[[package]]
12899name = "sp-application-crypto"12993name = "sp-application-crypto"
12900version = "27.0.0"12994version = "33.0.0"
12901source = "registry+https://github.com/rust-lang/crates.io-index"12995source = "registry+https://github.com/rust-lang/crates.io-index"
12902checksum = "a93da025616ab59639f8e378df579c5aaa2c8b9999f328a0239156a57c991b53"12996checksum = "13ca6121c22c8bd3d1dce1f05c479101fd0d7b159bef2a3e8c834138d839c75c"
12903dependencies = [12997dependencies = [
12904 "parity-scale-codec",12998 "parity-scale-codec",
12905 "scale-info",12999 "scale-info",
1291113005
12912[[package]]13006[[package]]
12913name = "sp-arithmetic"13007name = "sp-arithmetic"
12914version = "20.0.0"13008version = "25.0.0"
12915source = "registry+https://github.com/rust-lang/crates.io-index"13009source = "registry+https://github.com/rust-lang/crates.io-index"
12916checksum = "f80b5c16afb61dde1037a469d570adcc686440036429e50abe2301ba9d61aad5"13010checksum = "910c07fa263b20bf7271fdd4adcb5d3217dfdac14270592e0780223542e7e114"
12917dependencies = [13011dependencies = [
12918 "integer-sqrt",13012 "integer-sqrt",
12919 "num-traits",13013 "num-traits",
1292613020
12927[[package]]13021[[package]]
12928name = "sp-authority-discovery"13022name = "sp-authority-discovery"
12929version = "23.0.0"13023version = "29.0.0"
12930source = "registry+https://github.com/rust-lang/crates.io-index"13024source = "registry+https://github.com/rust-lang/crates.io-index"
12931checksum = "e204d85bad6f02a5ae8fbba83c365e20459e979fd69db5575ba4b3ea1025ab3c"13025checksum = "5ab47c385784b3f9646a21d5dcb236399083d77420a1269e70c04772336c519f"
12932dependencies = [13026dependencies = [
12933 "parity-scale-codec",13027 "parity-scale-codec",
12934 "scale-info",13028 "scale-info",
1294013034
12941[[package]]13035[[package]]
12942name = "sp-block-builder"13036name = "sp-block-builder"
12943version = "23.0.0"13037version = "29.0.0"
12944source = "registry+https://github.com/rust-lang/crates.io-index"13038source = "registry+https://github.com/rust-lang/crates.io-index"
12945checksum = "6cd16df3d1cdad862d3e764f10f7675876b011e032907423fdfa377ae2ec8575"13039checksum = "97e155e388d7e41c39a27f40f50c2517facdbf20dde4a73f40ec8f1f30ce190e"
12946dependencies = [13040dependencies = [
12947 "sp-api",13041 "sp-api",
12948 "sp-inherents",13042 "sp-inherents",
1295213046
12953[[package]]13047[[package]]
12954name = "sp-blockchain"13048name = "sp-blockchain"
12955version = "25.0.0"13049version = "31.0.0"
12956source = "registry+https://github.com/rust-lang/crates.io-index"13050source = "registry+https://github.com/rust-lang/crates.io-index"
12957checksum = "4932b97cde61874f395bab9b02443e3bd2046943abb280b63f83da9d0b623ea7"13051checksum = "d00084ddd62a3bad1fc4c04cdb1cdbcbb55d813dbd4e42d52e42e8b6599fb210"
12958dependencies = [13052dependencies = [
12959 "futures",13053 "futures",
12960 "log",13054 "log",
12961 "parity-scale-codec",13055 "parity-scale-codec",
12962 "parking_lot 0.12.1",13056 "parking_lot 0.12.2",
12963 "schnellru",13057 "schnellru",
12964 "sp-api",13058 "sp-api",
12965 "sp-consensus",13059 "sp-consensus",
1297113065
12972[[package]]13066[[package]]
12973name = "sp-consensus"13067name = "sp-consensus"
12974version = "0.29.0"13068version = "0.35.0"
12975source = "registry+https://github.com/rust-lang/crates.io-index"13069source = "registry+https://github.com/rust-lang/crates.io-index"
12976checksum = "2c5d7170fb7cfb18024ef7eeb40d272d22b9c3587d85cde2d091e8463b397f06"13070checksum = "ed6f1ae58a74d619bd2c1d7939b4aa805f4226c7454ec3591c8a59fb0cc6477f"
12977dependencies = [13071dependencies = [
12978 "async-trait",13072 "async-trait",
12979 "futures",13073 "futures",
1298713081
12988[[package]]13082[[package]]
12989name = "sp-consensus-aura"13083name = "sp-consensus-aura"
12990version = "0.29.0"13084version = "0.35.0"
12991source = "registry+https://github.com/rust-lang/crates.io-index"13085source = "registry+https://github.com/rust-lang/crates.io-index"
12992checksum = "643a7c486a645f398d219d1fbcc8a416cad5018164a212fefde5c2ef00a182e4"13086checksum = "334d0088b7de70a94d58e7e93acd8d5101b35fadca7e19fa26788203b22e309b"
12993dependencies = [13087dependencies = [
12994 "async-trait",13088 "async-trait",
12995 "parity-scale-codec",13089 "parity-scale-codec",
1300513099
13006[[package]]13100[[package]]
13007name = "sp-consensus-babe"13101name = "sp-consensus-babe"
13008version = "0.29.0"13102version = "0.35.0"
13009source = "registry+https://github.com/rust-lang/crates.io-index"13103source = "registry+https://github.com/rust-lang/crates.io-index"
13010checksum = "268f9b2e36d4e136c09ad87876cdcfd7ff734cb5917f333fefebff248f95a24f"13104checksum = "eb593ec8ec674a583d6fc5386b7f8964a9db78dcaabc0595559145a4053c9f6c"
13011dependencies = [13105dependencies = [
13012 "async-trait",13106 "async-trait",
13013 "parity-scale-codec",13107 "parity-scale-codec",
1302513119
13026[[package]]13120[[package]]
13027name = "sp-consensus-beefy"13121name = "sp-consensus-beefy"
13028version = "10.0.0"13122version = "16.0.0"
13029source = "registry+https://github.com/rust-lang/crates.io-index"13123source = "registry+https://github.com/rust-lang/crates.io-index"
13030checksum = "90e18fe984ea745727e645c43d6a955bc471b3bcd36aa8d260c3bd0deeada0c5"13124checksum = "7e2b03bc552702dd20fd3dad01631b13ca3e62e814ad278fe3012f5e3bb3e100"
13031dependencies = [13125dependencies = [
13032 "lazy_static",13126 "lazy_static",
13033 "parity-scale-codec",13127 "parity-scale-codec",
13036 "sp-api",13130 "sp-api",
13037 "sp-application-crypto",13131 "sp-application-crypto",
13038 "sp-core",13132 "sp-core",
13133 "sp-crypto-hashing",
13039 "sp-io",13134 "sp-io",
13135 "sp-keystore",
13040 "sp-mmr-primitives",13136 "sp-mmr-primitives",
13041 "sp-runtime",13137 "sp-runtime",
13042 "sp-std",13138 "sp-std",
1304513141
13046[[package]]13142[[package]]
13047name = "sp-consensus-grandpa"13143name = "sp-consensus-grandpa"
13048version = "10.0.0"13144version = "16.0.0"
13049source = "registry+https://github.com/rust-lang/crates.io-index"13145source = "registry+https://github.com/rust-lang/crates.io-index"
13050checksum = "28bbee685900110419913f281ce0f29457fbc17418f00d15f0212c8043aba167"13146checksum = "71df706a104a752101b52f12cca7f5b7ffe1ca6ce9b4b1eb8c5d04356f248fa5"
13051dependencies = [13147dependencies = [
13052 "finality-grandpa",13148 "finality-grandpa",
13053 "log",13149 "log",
1306413160
13065[[package]]13161[[package]]
13066name = "sp-consensus-slots"13162name = "sp-consensus-slots"
13067version = "0.29.0"13163version = "0.35.0"
13068source = "registry+https://github.com/rust-lang/crates.io-index"13164source = "registry+https://github.com/rust-lang/crates.io-index"
13069checksum = "895b0c176d4eead833ddee5251d3cccbaeb0191ca3f33f84b11d347bebc6e21f"13165checksum = "e0a5c47c52ad58aa349f7c13cb356ab45c32964ee28354c27fd6e4b417cb2644"
13070dependencies = [13166dependencies = [
13071 "parity-scale-codec",13167 "parity-scale-codec",
13072 "scale-info",13168 "scale-info",
1307713173
13078[[package]]13174[[package]]
13079name = "sp-core"13175name = "sp-core"
13080version = "25.0.0"13176version = "31.0.0"
13081source = "registry+https://github.com/rust-lang/crates.io-index"13177source = "registry+https://github.com/rust-lang/crates.io-index"
13082checksum = "f9ebb090ead698a6df04347c86a31ba91a387edb8a58534ec70c4f977d1e1e87"13178checksum = "26d7a0fd8f16dcc3761198fc83be12872f823b37b749bc72a3a6a1f702509366"
13083dependencies = [13179dependencies = [
13084 "array-bytes 6.2.0",13180 "array-bytes 6.2.3",
13085 "bitflags 1.3.2",13181 "bitflags 1.3.2",
13086 "blake2 0.10.6",13182 "blake2 0.10.6",
13087 "bounded-collections",13183 "bounded-collections",
13088 "bs58 0.5.0",13184 "bs58 0.5.1",
13089 "dyn-clonable",13185 "dyn-clonable",
13090 "ed25519-zebra 3.1.0",13186 "ed25519-zebra 3.1.0",
13091 "futures",13187 "futures",
13092 "hash-db 0.16.0",13188 "hash-db",
13093 "hash256-std-hasher",13189 "hash256-std-hasher",
13094 "impl-serde",13190 "impl-serde",
13095 "lazy_static",13191 "itertools 0.10.5",
13192 "k256",
13096 "libsecp256k1",13193 "libsecp256k1",
13097 "log",13194 "log",
13098 "merlin 2.0.1",13195 "merlin",
13196 "parity-bip39",
13099 "parity-scale-codec",13197 "parity-scale-codec",
13100 "parking_lot 0.12.1",13198 "parking_lot 0.12.2",
13101 "paste",13199 "paste",
13102 "primitive-types",13200 "primitive-types",
13103 "rand 0.8.5",13201 "rand",
13104 "regex",
13105 "scale-info",13202 "scale-info",
13106 "schnorrkel 0.9.1",13203 "schnorrkel 0.11.4",
13107 "secp256k1",13204 "secp256k1",
13108 "secrecy",13205 "secrecy",
13109 "serde",13206 "serde",
13110 "sp-core-hashing",13207 "sp-crypto-hashing",
13111 "sp-debug-derive",13208 "sp-debug-derive",
13112 "sp-externalities",13209 "sp-externalities",
13113 "sp-runtime-interface",13210 "sp-runtime-interface",
13116 "ss58-registry",13213 "ss58-registry",
13117 "substrate-bip39",13214 "substrate-bip39",
13118 "thiserror",13215 "thiserror",
13119 "tiny-bip39",
13120 "tracing",13216 "tracing",
13121 "w3f-bls",13217 "w3f-bls",
13122 "zeroize",13218 "zeroize",
13123]13219]
1312413220
13125[[package]]13221[[package]]
13126name = "sp-core-hashing"13222name = "sp-crypto-hashing"
13127version = "13.0.0"13223version = "0.1.0"
13128source = "registry+https://github.com/rust-lang/crates.io-index"13224source = "registry+https://github.com/rust-lang/crates.io-index"
13129checksum = "cb8524f01591ee58b46cd83c9dbc0fcffd2fd730dabec4f59326cd58a00f17e2"13225checksum = "bc9927a7f81334ed5b8a98a4a978c81324d12bd9713ec76b5c68fd410174c5eb"
13130dependencies = [13226dependencies = [
13131 "blake2b_simd",13227 "blake2b_simd",
13132 "byteorder",13228 "byteorder",
13137]13233]
1313813234
13139[[package]]13235[[package]]
13140name = "sp-core-hashing-proc-macro"13236name = "sp-crypto-hashing-proc-macro"
13141version = "13.0.0"13237version = "0.1.0"
13142source = "registry+https://github.com/rust-lang/crates.io-index"13238source = "registry+https://github.com/rust-lang/crates.io-index"
13143checksum = "42ce3e6931303769197da81facefa86159fa1085dcd96ecb7e7407b5b93582a0"13239checksum = "b85d0f1f1e44bd8617eb2a48203ee854981229e3e79e6f468c7175d5fd37489b"
13144dependencies = [13240dependencies = [
13145 "quote",13241 "quote",
13146 "sp-core-hashing",13242 "sp-crypto-hashing",
13147 "syn 2.0.39",13243 "syn 2.0.65",
13148]13244]
1314913245
13150[[package]]13246[[package]]
13151name = "sp-database"13247name = "sp-database"
13152version = "9.0.0"13248version = "10.0.0"
13153source = "registry+https://github.com/rust-lang/crates.io-index"13249source = "registry+https://github.com/rust-lang/crates.io-index"
13154checksum = "9c6e8c710d6a71512af6f42d9dba9c3d1f6ad793846480babf459bbde3d60a94"13250checksum = "722cbecdbf5b94578137dbd07feb51e95f7de221be0c1ff4dcfe0bb4cd986929"
13155dependencies = [13251dependencies = [
13156 "kvdb",13252 "kvdb",
13157 "parking_lot 0.12.1",13253 "parking_lot 0.12.2",
13158]13254]
1315913255
13160[[package]]13256[[package]]
13161name = "sp-debug-derive"13257name = "sp-debug-derive"
13162version = "12.0.0"13258version = "14.0.0"
13163source = "registry+https://github.com/rust-lang/crates.io-index"13259source = "registry+https://github.com/rust-lang/crates.io-index"
13164checksum = "50535e1a5708d3ba5c1195b59ebefac61cc8679c2c24716b87a86e8b7ed2e4a1"13260checksum = "48d09fa0a5f7299fb81ee25ae3853d26200f7a348148aed6de76be905c007dbe"
13165dependencies = [13261dependencies = [
13166 "proc-macro2",13262 "proc-macro2",
13167 "quote",13263 "quote",
13168 "syn 2.0.39",13264 "syn 2.0.65",
13169]13265]
1317013266
13171[[package]]13267[[package]]
13172name = "sp-externalities"13268name = "sp-externalities"
13173version = "0.23.0"13269version = "0.27.0"
13174source = "registry+https://github.com/rust-lang/crates.io-index"13270source = "registry+https://github.com/rust-lang/crates.io-index"
13175checksum = "884d05160bc89d0943d1c9fb8006c3d44b80f37f8af607aeff8d4d9cc82e279a"13271checksum = "a1d6a4572eadd4a63cff92509a210bf425501a0c5e76574b30a366ac77653787"
13176dependencies = [13272dependencies = [
13177 "environmental",13273 "environmental",
13178 "parity-scale-codec",13274 "parity-scale-codec",
1318213278
13183[[package]]13279[[package]]
13184name = "sp-genesis-builder"13280name = "sp-genesis-builder"
13185version = "0.4.0"13281version = "0.10.0"
13186source = "registry+https://github.com/rust-lang/crates.io-index"13282source = "registry+https://github.com/rust-lang/crates.io-index"
13187checksum = "a0cb71d40ad47e40bdcce5ae5531c7d7ba579cd495a0e0413642fb063fa66f84"13283checksum = "16a1192b502d38c6d17b1005a7b3e7a6ab835df996803968ae3be9e8f7399ee4"
13188dependencies = [13284dependencies = [
13189 "serde_json",13285 "serde_json",
13190 "sp-api",13286 "sp-api",
1319413290
13195[[package]]13291[[package]]
13196name = "sp-inherents"13292name = "sp-inherents"
13197version = "23.0.0"13293version = "29.0.0"
13198source = "registry+https://github.com/rust-lang/crates.io-index"13294source = "registry+https://github.com/rust-lang/crates.io-index"
13199checksum = "604229aa145be0cff853b47ffed8bc2c62eb08ec6974d6307b9a559c378e6dc5"13295checksum = "3b5e46ccc5848542648dcf05f882e41de2e341d0eeca97ff2b7dfad0f38e8500"
13200dependencies = [13296dependencies = [
13201 "async-trait",13297 "async-trait",
13202 "impl-trait-for-tuples",13298 "impl-trait-for-tuples",
1320913305
13210[[package]]13306[[package]]
13211name = "sp-io"13307name = "sp-io"
13212version = "27.0.0"13308version = "33.0.0"
13213source = "registry+https://github.com/rust-lang/crates.io-index"13309source = "registry+https://github.com/rust-lang/crates.io-index"
13214checksum = "0ced350da15e8ba3a106206840acc42a6d3eb0d7e8bf7aa43ab00eac0bdf956f"13310checksum = "3e09bba780b55bd9e67979cd8f654a31e4a6cf45426ff371394a65953d2177f2"
13215dependencies = [13311dependencies = [
13216 "bytes",13312 "bytes",
13217 "ed25519-dalek",13313 "ed25519-dalek",
13218 "libsecp256k1",13314 "libsecp256k1",
13219 "log",13315 "log",
13220 "parity-scale-codec",13316 "parity-scale-codec",
13317 "polkavm-derive 0.9.1",
13221 "rustversion",13318 "rustversion",
13222 "secp256k1",13319 "secp256k1",
13223 "sp-core",13320 "sp-core",
13321 "sp-crypto-hashing",
13224 "sp-externalities",13322 "sp-externalities",
13225 "sp-keystore",13323 "sp-keystore",
13226 "sp-runtime-interface",13324 "sp-runtime-interface",
1323413332
13235[[package]]13333[[package]]
13236name = "sp-keyring"13334name = "sp-keyring"
13237version = "28.0.0"13335version = "34.0.0"
13238source = "registry+https://github.com/rust-lang/crates.io-index"13336source = "registry+https://github.com/rust-lang/crates.io-index"
13239checksum = "655ec0b35cb9cb9029fb323aa676b07d58deb872cecc7566e50278409a00ee95"13337checksum = "a07a31da596d705b3a3458d784a897af7fd2f8090de436dc386a112e8ea7f34f"
13240dependencies = [13338dependencies = [
13241 "lazy_static",
13242 "sp-core",13339 "sp-core",
13243 "sp-runtime",13340 "sp-runtime",
13244 "strum 0.24.1",13341 "strum 0.24.1",
13245]13342]
1324613343
13247[[package]]13344[[package]]
13248name = "sp-keystore"13345name = "sp-keystore"
13249version = "0.31.0"13346version = "0.37.0"
13250source = "registry+https://github.com/rust-lang/crates.io-index"13347source = "registry+https://github.com/rust-lang/crates.io-index"
13251checksum = "8b8ec5ebbba70bee83d79c3fe5e49f12df0a4bb6029858ddf9a15eea7539a592"13348checksum = "bdbab8b61bd61d5f8625a0c75753b5d5a23be55d3445419acd42caf59cf6236b"
13252dependencies = [13349dependencies = [
13253 "parity-scale-codec",13350 "parity-scale-codec",
13254 "parking_lot 0.12.1",13351 "parking_lot 0.12.2",
13255 "sp-core",13352 "sp-core",
13256 "sp-externalities",13353 "sp-externalities",
13257 "thiserror",
13258]13354]
1325913355
13260[[package]]13356[[package]]
13261name = "sp-maybe-compressed-blob"13357name = "sp-maybe-compressed-blob"
13262version = "9.0.0"13358version = "11.0.0"
13263source = "registry+https://github.com/rust-lang/crates.io-index"13359source = "registry+https://github.com/rust-lang/crates.io-index"
13264checksum = "8846768f036429227e49f6ab523fbee4bc6edfee278a361bf27999590fe020d4"13360checksum = "f0c768c11afbe698a090386876911da4236af199cd38a5866748df4d8628aeff"
13265dependencies = [13361dependencies = [
13266 "thiserror",13362 "thiserror",
13267 "zstd 0.12.4",13363 "zstd 0.12.4",
13268]13364]
1326913365
13270[[package]]13366[[package]]
13271name = "sp-metadata-ir"13367name = "sp-metadata-ir"
13272version = "0.4.0"13368version = "0.6.0"
13273source = "registry+https://github.com/rust-lang/crates.io-index"13369source = "registry+https://github.com/rust-lang/crates.io-index"
13274checksum = "7ca9ff0e522a74725ac92f009d38deeb12e880f5296afbd78a6c6b970b773278"13370checksum = "fa0b5e87e56c1bb26d9524d48dd127121d630f895bd5914a34f0b017489f7c1d"
13275dependencies = [13371dependencies = [
13276 "frame-metadata",13372 "frame-metadata",
13277 "parity-scale-codec",13373 "parity-scale-codec",
1328113377
13282[[package]]13378[[package]]
13283name = "sp-mixnet"13379name = "sp-mixnet"
13284version = "0.1.0"13380version = "0.7.0"
13285source = "registry+https://github.com/rust-lang/crates.io-index"13381source = "registry+https://github.com/rust-lang/crates.io-index"
13286checksum = "bdf61f28ca97aab6c21a3c6e0ed496e60d505e5de1f43fd4ba748c9afaa4fc85"13382checksum = "22d9da31673ad5771faf8cd0e62ab0c183ea71a630d187b926bc52af379cb1de"
13287dependencies = [13383dependencies = [
13288 "parity-scale-codec",13384 "parity-scale-codec",
13289 "scale-info",13385 "scale-info",
1329413390
13295[[package]]13391[[package]]
13296name = "sp-mmr-primitives"13392name = "sp-mmr-primitives"
13297version = "23.0.0"13393version = "29.0.0"
13298source = "registry+https://github.com/rust-lang/crates.io-index"13394source = "registry+https://github.com/rust-lang/crates.io-index"
13299checksum = "0c3b33c20a4b1dd5a0069ced6997078a2af5d625f2c53d1b69bef9e131f42d77"13395checksum = "518fcd8710618d104e04c9e63e697d3406180afbe55cc5400168019647fc5880"
13300dependencies = [13396dependencies = [
13301 "ckb-merkle-mountain-range",13397 "ckb-merkle-mountain-range",
13302 "log",13398 "log",
1331313409
13314[[package]]13410[[package]]
13315name = "sp-npos-elections"13411name = "sp-npos-elections"
13316version = "23.0.0"13412version = "29.0.0"
13317source = "registry+https://github.com/rust-lang/crates.io-index"13413source = "registry+https://github.com/rust-lang/crates.io-index"
13318checksum = "9ee3536d7fd990c30864ca545d7bdbee02dc66a92ac2a7a66ab4e21521992a7b"13414checksum = "e03ec553bc1a0f4d3aa902d3c5b3cdbe76f8218c642cbca0305722b3f8bbc826"
13319dependencies = [13415dependencies = [
13320 "parity-scale-codec",13416 "parity-scale-codec",
13321 "scale-info",13417 "scale-info",
1332813424
13329[[package]]13425[[package]]
13330name = "sp-offchain"13426name = "sp-offchain"
13331version = "23.0.0"13427version = "29.0.0"
13332source = "registry+https://github.com/rust-lang/crates.io-index"13428source = "registry+https://github.com/rust-lang/crates.io-index"
13333checksum = "9310227f043ed99877b0449a683025a7461431a00995dcd6ef423a273d0fd85d"13429checksum = "c041d932d7debf1d2e073ecece1425aadae7482689cd4bf148d5886b28bd10d7"
13334dependencies = [13430dependencies = [
13335 "sp-api",13431 "sp-api",
13336 "sp-core",13432 "sp-core",
1333913435
13340[[package]]13436[[package]]
13341name = "sp-panic-handler"13437name = "sp-panic-handler"
13342version = "12.0.0"13438version = "13.0.0"
13343source = "registry+https://github.com/rust-lang/crates.io-index"13439source = "registry+https://github.com/rust-lang/crates.io-index"
13344checksum = "b00e40857ed3e0187f145b037c733545c5633859f1bd1d1b09deb52805fa696a"13440checksum = "d8f5a17a0a11de029a8b811cb6e8b32ce7e02183cc04a3e965c383246798c416"
13345dependencies = [13441dependencies = [
13346 "backtrace",13442 "backtrace",
13347 "lazy_static",13443 "lazy_static",
1335013446
13351[[package]]13447[[package]]
13352name = "sp-rpc"13448name = "sp-rpc"
13353version = "23.0.0"13449version = "29.0.0"
13354source = "registry+https://github.com/rust-lang/crates.io-index"13450source = "registry+https://github.com/rust-lang/crates.io-index"
13355checksum = "51867fea921f54bbaa2bf505f373559b5f3b80e8d7f38ecb9677f0d3795a3e6a"13451checksum = "b26650747f5c204afd8c637df5e882ea912a890cf974fe67c36b430318fc451c"
13356dependencies = [13452dependencies = [
13357 "rustc-hash",13453 "rustc-hash",
13358 "serde",13454 "serde",
1336113457
13362[[package]]13458[[package]]
13363name = "sp-runtime"13459name = "sp-runtime"
13364version = "28.0.0"13460version = "34.0.0"
13365source = "registry+https://github.com/rust-lang/crates.io-index"13461source = "registry+https://github.com/rust-lang/crates.io-index"
13366checksum = "6d9c40ff7303e62219b55635e5245d963358cb77d6916250991ebcb82c0be2c6"13462checksum = "ec3cb126971e7db2f0fcf8053dce740684c438c7180cfca1959598230f342c58"
13367dependencies = [13463dependencies = [
13464 "docify",
13368 "either",13465 "either",
13369 "hash256-std-hasher",13466 "hash256-std-hasher",
13370 "impl-trait-for-tuples",13467 "impl-trait-for-tuples",
13371 "log",13468 "log",
13372 "parity-scale-codec",13469 "parity-scale-codec",
13373 "paste",13470 "paste",
13374 "rand 0.8.5",13471 "rand",
13375 "scale-info",13472 "scale-info",
13376 "serde",13473 "serde",
13474 "simple-mermaid",
13377 "sp-application-crypto",13475 "sp-application-crypto",
13378 "sp-arithmetic",13476 "sp-arithmetic",
13379 "sp-core",13477 "sp-core",
1338413482
13385[[package]]13483[[package]]
13386name = "sp-runtime-interface"13484name = "sp-runtime-interface"
13387version = "21.0.0"13485version = "26.0.0"
13388source = "registry+https://github.com/rust-lang/crates.io-index"13486source = "registry+https://github.com/rust-lang/crates.io-index"
13389checksum = "4f365332922a8cfa98ab00c6d08b1b0f24e159e730dd554e720d950ff3371b1f"13487checksum = "e48a675ea4858333d4d755899ed5ed780174aa34fec15953428d516af5452295"
13390dependencies = [13488dependencies = [
13391 "bytes",13489 "bytes",
13392 "impl-trait-for-tuples",13490 "impl-trait-for-tuples",
13393 "parity-scale-codec",13491 "parity-scale-codec",
13492 "polkavm-derive 0.8.0",
13394 "primitive-types",13493 "primitive-types",
13395 "sp-externalities",13494 "sp-externalities",
13396 "sp-runtime-interface-proc-macro",13495 "sp-runtime-interface-proc-macro",
1340313502
13404[[package]]13503[[package]]
13405name = "sp-runtime-interface-proc-macro"13504name = "sp-runtime-interface-proc-macro"
13406version = "15.0.0"13505version = "18.0.0"
13407source = "registry+https://github.com/rust-lang/crates.io-index"13506source = "registry+https://github.com/rust-lang/crates.io-index"
13408checksum = "9b2afcbd1bd18d323371111b66b7ac2870bdc1c86c3d7b0dae67b112ca52b4d8"13507checksum = "0195f32c628fee3ce1dfbbf2e7e52a30ea85f3589da9fe62a8b816d70fc06294"
13409dependencies = [13508dependencies = [
13410 "Inflector",13509 "Inflector",
13411 "proc-macro-crate 1.3.1",13510 "expander 2.1.0",
13511 "proc-macro-crate 3.1.0",
13412 "proc-macro2",13512 "proc-macro2",
13413 "quote",13513 "quote",
13414 "syn 2.0.39",13514 "syn 2.0.65",
13415]13515]
1341613516
13417[[package]]13517[[package]]
13418name = "sp-session"13518name = "sp-session"
13419version = "24.0.0"13519version = "30.0.0"
13420source = "registry+https://github.com/rust-lang/crates.io-index"13520source = "registry+https://github.com/rust-lang/crates.io-index"
13421checksum = "248dd8f49aa96b56bf0a7d513691ddb4194f9359fdb93e94397eabdef1036085"13521checksum = "6a61ea4ca90f644da2c25edee711b53b1c0b8d50628ceef372224ea24d252b57"
13422dependencies = [13522dependencies = [
13423 "parity-scale-codec",13523 "parity-scale-codec",
13424 "scale-info",13524 "scale-info",
1343213532
13433[[package]]13533[[package]]
13434name = "sp-staking"13534name = "sp-staking"
13435version = "23.0.0"13535version = "29.0.0"
13436source = "registry+https://github.com/rust-lang/crates.io-index"13536source = "registry+https://github.com/rust-lang/crates.io-index"
13437checksum = "ee0feed0137234598bd1f76d0b468c585ea16619ea9ed1acbba82dd24ac79788"13537checksum = "4114cde17987eaa2f17b8850a8c856b90364666cdbc920d511e7a1cde0574d24"
13438dependencies = [13538dependencies = [
13439 "impl-trait-for-tuples",13539 "impl-trait-for-tuples",
13440 "parity-scale-codec",13540 "parity-scale-codec",
1344713547
13448[[package]]13548[[package]]
13449name = "sp-state-machine"13549name = "sp-state-machine"
13450version = "0.32.0"13550version = "0.38.0"
13451source = "registry+https://github.com/rust-lang/crates.io-index"13551source = "registry+https://github.com/rust-lang/crates.io-index"
13452checksum = "96e087fa4430befd2047b61d912c9d6fa4eaed408c4b58b46c6e9acd7965f2d3"13552checksum = "1eae0eac8034ba14437e772366336f579398a46d101de13dbb781ab1e35e67c5"
13453dependencies = [13553dependencies = [
13454 "hash-db 0.16.0",13554 "hash-db",
13455 "log",13555 "log",
13456 "parity-scale-codec",13556 "parity-scale-codec",
13457 "parking_lot 0.12.1",13557 "parking_lot 0.12.2",
13458 "rand 0.8.5",13558 "rand",
13459 "smallvec",13559 "smallvec",
13460 "sp-core",13560 "sp-core",
13461 "sp-externalities",13561 "sp-externalities",
1346913569
13470[[package]]13570[[package]]
13471name = "sp-statement-store"13571name = "sp-statement-store"
13472version = "7.0.0"13572version = "13.0.0"
13473source = "registry+https://github.com/rust-lang/crates.io-index"13573source = "registry+https://github.com/rust-lang/crates.io-index"
13474checksum = "4b8654bcd37602b1811414050d34d14f543873bd4e64e50d210a0116b660c600"13574checksum = "b90e8440d72e0ae5d273374af3ebe16768d05b40dff1f487835dd2f826ee9568"
13475dependencies = [13575dependencies = [
13476 "aes-gcm 0.10.3",13576 "aes-gcm",
13477 "curve25519-dalek 4.1.1",13577 "curve25519-dalek 4.1.2",
13478 "ed25519-dalek",13578 "ed25519-dalek",
13479 "hkdf",13579 "hkdf",
13480 "parity-scale-codec",13580 "parity-scale-codec",
13481 "rand 0.8.5",13581 "rand",
13482 "scale-info",13582 "scale-info",
13483 "sha2 0.10.8",13583 "sha2 0.10.8",
13484 "sp-api",13584 "sp-api",
13485 "sp-application-crypto",13585 "sp-application-crypto",
13486 "sp-core",13586 "sp-core",
13587 "sp-crypto-hashing",
13487 "sp-externalities",13588 "sp-externalities",
13488 "sp-runtime",13589 "sp-runtime",
13489 "sp-runtime-interface",13590 "sp-runtime-interface",
13490 "sp-std",13591 "sp-std",
13491 "thiserror",13592 "thiserror",
13492 "x25519-dalek 2.0.0",13593 "x25519-dalek 2.0.1",
13493]13594]
1349413595
13495[[package]]13596[[package]]
13496name = "sp-std"13597name = "sp-std"
13497version = "12.0.0"13598version = "14.0.0"
13498source = "registry+https://github.com/rust-lang/crates.io-index"13599source = "registry+https://github.com/rust-lang/crates.io-index"
13499checksum = "54c78c5a66682568cc7b153603c5d01a2cc8f5c221c7b1e921517a0eef18ae05"13600checksum = "12f8ee986414b0a9ad741776762f4083cd3a5128449b982a3919c4df36874834"
1350013601
13501[[package]]13602[[package]]
13502name = "sp-storage"13603name = "sp-storage"
13503version = "17.0.0"13604version = "20.0.0"
13504source = "registry+https://github.com/rust-lang/crates.io-index"13605source = "registry+https://github.com/rust-lang/crates.io-index"
13505checksum = "016f20812cc51bd479cc88d048c35d44cd3adde4accdb159d49d6050f2953595"13606checksum = "8dba5791cb3978e95daf99dad919ecb3ec35565604e88cd38d805d9d4981e8bd"
13506dependencies = [13607dependencies = [
13507 "impl-serde",13608 "impl-serde",
13508 "parity-scale-codec",13609 "parity-scale-codec",
1351413615
13515[[package]]13616[[package]]
13516name = "sp-timestamp"13617name = "sp-timestamp"
13517version = "23.0.0"13618version = "29.0.0"
13518source = "registry+https://github.com/rust-lang/crates.io-index"13619source = "registry+https://github.com/rust-lang/crates.io-index"
13519checksum = "004a7f453240db80b2967c0e1c6411836efc7daa7afae98fd16202caa51460e0"13620checksum = "64d51fcd008fd5a79d61dba98c7ae89c2460a49dff07001bf1e9b12535d49536"
13520dependencies = [13621dependencies = [
13521 "async-trait",13622 "async-trait",
13522 "parity-scale-codec",13623 "parity-scale-codec",
1352813629
13529[[package]]13630[[package]]
13530name = "sp-tracing"13631name = "sp-tracing"
13531version = "14.0.0"13632version = "16.0.0"
13532source = "registry+https://github.com/rust-lang/crates.io-index"13633source = "registry+https://github.com/rust-lang/crates.io-index"
13533checksum = "0d727cb5265641ffbb7d4e42c18b63e29f6cfdbd240aae3bcf093c3d6eb29a19"13634checksum = "0351810b9d074df71c4514c5228ed05c250607cba131c1c9d1526760ab69c05c"
13534dependencies = [13635dependencies = [
13535 "parity-scale-codec",13636 "parity-scale-codec",
13536 "sp-std",13637 "sp-std",
1354113642
13542[[package]]13643[[package]]
13543name = "sp-transaction-pool"13644name = "sp-transaction-pool"
13544version = "23.0.0"13645version = "29.0.0"
13545source = "registry+https://github.com/rust-lang/crates.io-index"13646source = "registry+https://github.com/rust-lang/crates.io-index"
13546checksum = "c7cd2afe89c474339d15d06e73639171ebe4d280be6904d9349072103da21427"13647checksum = "0484eaf40c2abda75bda9688298cc8f6e02161176e3aab501207c8ccf4d4b3e1"
13547dependencies = [13648dependencies = [
13548 "sp-api",13649 "sp-api",
13549 "sp-runtime",13650 "sp-runtime",
13550]13651]
1355113652
13552[[package]]13653[[package]]
13553name = "sp-transaction-storage-proof"13654name = "sp-transaction-storage-proof"
13554version = "23.0.0"13655version = "29.0.0"
13555source = "registry+https://github.com/rust-lang/crates.io-index"13656source = "registry+https://github.com/rust-lang/crates.io-index"
13556checksum = "39ae7c4954431b8479f7b2b6b82f0551cc360a1ee59b6a5276eef86a1099eaed"13657checksum = "ba0c99e0852ddd18159c2dc6100c2b5852e49211d8afe373cbce33d1da0050dd"
13557dependencies = [13658dependencies = [
13558 "async-trait",13659 "async-trait",
13559 "parity-scale-codec",13660 "parity-scale-codec",
1356713668
13568[[package]]13669[[package]]
13569name = "sp-trie"13670name = "sp-trie"
13570version = "26.0.0"13671version = "32.0.0"
13571source = "registry+https://github.com/rust-lang/crates.io-index"13672source = "registry+https://github.com/rust-lang/crates.io-index"
13572checksum = "1e359b358263cc322c3f678c272a3a519621d9853dcfa1374dfcbdb5f54c6f85"13673checksum = "f1aa91ad26c62b93d73e65f9ce7ebd04459c4bad086599348846a81988d6faa4"
13573dependencies = [13674dependencies = [
13574 "ahash 0.8.6",13675 "ahash 0.8.11",
13575 "hash-db 0.16.0",13676 "hash-db",
13576 "hashbrown 0.13.2",
13577 "lazy_static",13677 "lazy_static",
13578 "memory-db",13678 "memory-db",
13579 "nohash-hasher",13679 "nohash-hasher",
13580 "parity-scale-codec",13680 "parity-scale-codec",
13581 "parking_lot 0.12.1",13681 "parking_lot 0.12.2",
13582 "rand 0.8.5",13682 "rand",
13583 "scale-info",13683 "scale-info",
13584 "schnellru",13684 "schnellru",
13585 "sp-core",13685 "sp-core",
13686 "sp-externalities",
13586 "sp-std",13687 "sp-std",
13587 "thiserror",13688 "thiserror",
13588 "tracing",13689 "tracing",
1359213693
13593[[package]]13694[[package]]
13594name = "sp-version"13695name = "sp-version"
13595version = "26.0.0"13696version = "32.0.0"
13596source = "registry+https://github.com/rust-lang/crates.io-index"13697source = "registry+https://github.com/rust-lang/crates.io-index"
13597checksum = "3e93da332eba3cb59a65f128da5edd5c70e1475692b45470104e7465b1278471"13698checksum = "1c0219b1aeb89e36d13bd43a718920a9087dbb66c567e672c4639cefb2fefc05"
13598dependencies = [13699dependencies = [
13599 "impl-serde",13700 "impl-serde",
13600 "parity-scale-codec",13701 "parity-scale-codec",
13601 "parity-wasm",13702 "parity-wasm",
13602 "scale-info",13703 "scale-info",
13603 "serde",13704 "serde",
13604 "sp-core-hashing-proc-macro",13705 "sp-crypto-hashing-proc-macro",
13605 "sp-runtime",13706 "sp-runtime",
13606 "sp-std",13707 "sp-std",
13607 "sp-version-proc-macro",13708 "sp-version-proc-macro",
1361013711
13611[[package]]13712[[package]]
13612name = "sp-version-proc-macro"13713name = "sp-version-proc-macro"
13613version = "12.0.0"13714version = "13.0.0"
13614source = "registry+https://github.com/rust-lang/crates.io-index"13715source = "registry+https://github.com/rust-lang/crates.io-index"
13615checksum = "49535d8c7184dab46d15639c68374a30cbb1534e392fa09a1ebb059a993ad436"13716checksum = "e9bc3fed32d6dacbbbfb28dd1fe0224affbb737cb6cbfca1d9149351c2b69a7d"
13616dependencies = [13717dependencies = [
13617 "parity-scale-codec",13718 "parity-scale-codec",
13618 "proc-macro2",13719 "proc-macro2",
13619 "quote",13720 "quote",
13620 "syn 2.0.39",13721 "syn 2.0.65",
13621]13722]
1362213723
13623[[package]]13724[[package]]
13624name = "sp-wasm-interface"13725name = "sp-wasm-interface"
13625version = "18.0.0"13726version = "20.0.0"
13626source = "registry+https://github.com/rust-lang/crates.io-index"13727source = "registry+https://github.com/rust-lang/crates.io-index"
13627checksum = "d5d85813d46a22484cdf5e5afddbbe85442dd1b4d84d67a8c7792f92f9f93607"13728checksum = "9ef97172c42eb4c6c26506f325f48463e9bc29b2034a587f1b9e48c751229bee"
13628dependencies = [13729dependencies = [
13629 "anyhow",13730 "anyhow",
13630 "impl-trait-for-tuples",13731 "impl-trait-for-tuples",
1363613737
13637[[package]]13738[[package]]
13638name = "sp-weights"13739name = "sp-weights"
13639version = "24.0.0"13740version = "30.0.0"
13640source = "registry+https://github.com/rust-lang/crates.io-index"13741source = "registry+https://github.com/rust-lang/crates.io-index"
13641checksum = "751676c1263e7f3600af16bad26a7978a816bc532676fe05eafa23b862c05b9e"13742checksum = "9af6c661fe3066b29f9e1d258000f402ff5cc2529a9191972d214e5871d0ba87"
13642dependencies = [13743dependencies = [
13744 "bounded-collections",
13643 "parity-scale-codec",13745 "parity-scale-codec",
13644 "scale-info",13746 "scale-info",
13645 "serde",13747 "serde",
13646 "smallvec",13748 "smallvec",
13647 "sp-arithmetic",13749 "sp-arithmetic",
13648 "sp-core",
13649 "sp-debug-derive",13750 "sp-debug-derive",
13650 "sp-std",13751 "sp-std",
13651]13752]
13658dependencies = [13759dependencies = [
13659 "proc-macro2",13760 "proc-macro2",
13660 "quote",13761 "quote",
13661 "syn 2.0.39",13762 "syn 2.0.65",
13662]13763]
1366313764
13664[[package]]13765[[package]]
13685]13786]
1368613787
13687[[package]]13788[[package]]
13688name = "spki"13789name = "spinning_top"
13689version = "0.6.0"13790version = "0.3.0"
13690source = "registry+https://github.com/rust-lang/crates.io-index"13791source = "registry+https://github.com/rust-lang/crates.io-index"
13691checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"13792checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300"
13692dependencies = [13793dependencies = [
13693 "base64ct",13794 "lock_api",
13694 "der 0.6.1",
13695]13795]
1369613796
13697[[package]]13797[[package]]
13698name = "spki"13798name = "spki"
13699version = "0.7.2"13799version = "0.7.3"
13700source = "registry+https://github.com/rust-lang/crates.io-index"13800source = "registry+https://github.com/rust-lang/crates.io-index"
13701checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"13801checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
13702dependencies = [13802dependencies = [
13703 "base64ct",13803 "base64ct",
13704 "der 0.7.8",13804 "der",
13705]13805]
1370613806
13707[[package]]13807[[package]]
13708name = "ss58-registry"13808name = "ss58-registry"
13709version = "1.44.0"13809version = "1.47.0"
13710source = "registry+https://github.com/rust-lang/crates.io-index"13810source = "registry+https://github.com/rust-lang/crates.io-index"
13711checksum = "35935738370302d5e33963665b77541e4b990a3e919ec904c837a56cfc891de1"13811checksum = "4743ce898933fbff7bbf414f497c459a782d496269644b3d650a398ae6a487ba"
13712dependencies = [13812dependencies = [
13713 "Inflector",13813 "Inflector",
13714 "num-format",13814 "num-format",
1372713827
13728[[package]]13828[[package]]
13729name = "staging-parachain-info"13829name = "staging-parachain-info"
13730version = "0.4.0"13830version = "0.10.0"
13731source = "registry+https://github.com/rust-lang/crates.io-index"13831source = "registry+https://github.com/rust-lang/crates.io-index"
13732checksum = "3a1bcf863664ca5708d92894fc30d2c6606c7dbb7d7cfcf43b9ae69d5b83f4fb"13832checksum = "4df1c48ca2892cb0694c7e10fbcfc8d15fe0fd0b763d61fbc587a870fbb97147"
13733dependencies = [13833dependencies = [
13734 "cumulus-primitives-core",13834 "cumulus-primitives-core",
13735 "frame-support",13835 "frame-support",
1374213842
13743[[package]]13843[[package]]
13744name = "staging-xcm"13844name = "staging-xcm"
13745version = "4.0.0"13845version = "10.0.0"
13746source = "registry+https://github.com/rust-lang/crates.io-index"13846source = "registry+https://github.com/rust-lang/crates.io-index"
13747checksum = "7abd0c2e401a1e264379131c27676bc65c9631aaa508044bc04d8ce60a7d8524"13847checksum = "e6ee775f7fc9dfae15d9d5a806efa7d3215f7b7b1cfd225809285a0281addeab"
13748dependencies = [13848dependencies = [
13849 "array-bytes 6.2.3",
13749 "bounded-collections",13850 "bounded-collections",
13750 "derivative",13851 "derivative",
13751 "environmental",13852 "environmental",
1376013861
13761[[package]]13862[[package]]
13762name = "staging-xcm-builder"13863name = "staging-xcm-builder"
13763version = "4.0.0"13864version = "10.0.0"
13764source = "registry+https://github.com/rust-lang/crates.io-index"13865source = "registry+https://github.com/rust-lang/crates.io-index"
13765checksum = "aa3b14246daaf0301dd35d698bac570d82ba0c6c6c1d3e149b93bcf377b2fc6b"13866checksum = "41c905c7e545eb80efdbf62470575a37935260503494453ffa3c1ac6207d06c9"
13766dependencies = [13867dependencies = [
13767 "frame-support",13868 "frame-support",
13768 "frame-system",13869 "frame-system",
1378313884
13784[[package]]13885[[package]]
13785name = "staging-xcm-executor"13886name = "staging-xcm-executor"
13786version = "4.0.0"13887version = "10.0.0"
13787source = "registry+https://github.com/rust-lang/crates.io-index"13888source = "registry+https://github.com/rust-lang/crates.io-index"
13788checksum = "3a85a421053f810f3ed988ba3cc39d926c95f70f1ae73282aa8cd5c50072173b"13889checksum = "e30434a78d4392b698bc7854c00f52d83c1c544da4be1912f898958c3e32f062"
13789dependencies = [13890dependencies = [
13790 "environmental",13891 "environmental",
13791 "frame-benchmarking",13892 "frame-benchmarking",
13792 "frame-support",13893 "frame-support",
13793 "impl-trait-for-tuples",13894 "impl-trait-for-tuples",
13794 "log",13895 "log",
13795 "parity-scale-codec",13896 "parity-scale-codec",
13897 "scale-info",
13796 "sp-arithmetic",13898 "sp-arithmetic",
13797 "sp-core",13899 "sp-core",
13798 "sp-io",13900 "sp-io",
13837]13939]
1383813940
13839[[package]]13941[[package]]
13942name = "strobe-rs"
13943version = "0.8.1"
13944source = "registry+https://github.com/rust-lang/crates.io-index"
13945checksum = "fabb238a1cccccfa4c4fb703670c0d157e1256c1ba695abf1b93bd2bb14bab2d"
13946dependencies = [
13947 "bitflags 1.3.2",
13948 "byteorder",
13949 "keccak",
13950 "subtle 2.5.0",
13951 "zeroize",
13952]
13953
13954[[package]]
13840name = "strsim"13955name = "strsim"
13841version = "0.10.0"13956version = "0.11.1"
13842source = "registry+https://github.com/rust-lang/crates.io-index"13957source = "registry+https://github.com/rust-lang/crates.io-index"
13843checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"13958checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1384413959
13845[[package]]13960[[package]]
13846name = "struct-versioning"13961name = "struct-versioning"
1386113976
13862[[package]]13977[[package]]
13863name = "strum"13978name = "strum"
13864version = "0.25.0"13979version = "0.26.2"
13865source = "registry+https://github.com/rust-lang/crates.io-index"13980source = "registry+https://github.com/rust-lang/crates.io-index"
13866checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"13981checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
1386713982
13868[[package]]13983[[package]]
13869name = "strum_macros"13984name = "strum_macros"
13870version = "0.24.3"13985version = "0.24.3"
13871source = "registry+https://github.com/rust-lang/crates.io-index"13986source = "registry+https://github.com/rust-lang/crates.io-index"
13872checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"13987checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
13873dependencies = [13988dependencies = [
13874 "heck",13989 "heck 0.4.1",
13875 "proc-macro2",13990 "proc-macro2",
13876 "quote",13991 "quote",
13877 "rustversion",13992 "rustversion",
1388013995
13881[[package]]13996[[package]]
13882name = "strum_macros"13997name = "strum_macros"
13883version = "0.25.3"13998version = "0.26.2"
13884source = "registry+https://github.com/rust-lang/crates.io-index"13999source = "registry+https://github.com/rust-lang/crates.io-index"
13885checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"14000checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
13886dependencies = [14001dependencies = [
13887 "heck",14002 "heck 0.4.1",
13888 "proc-macro2",14003 "proc-macro2",
13889 "quote",14004 "quote",
13890 "rustversion",14005 "rustversion",
13891 "syn 2.0.39",14006 "syn 2.0.65",
13892]14007]
1389314008
13894[[package]]14009[[package]]
13895name = "stun"
13896version = "0.4.4"
13897source = "registry+https://github.com/rust-lang/crates.io-index"
13898checksum = "a7e94b1ec00bad60e6410e058b52f1c66de3dc5fe4d62d09b3e52bb7d3b73e25"
13899dependencies = [
13900 "base64 0.13.1",
13901 "crc",
13902 "lazy_static",
13903 "md-5",
13904 "rand 0.8.5",
13905 "ring 0.16.20",
13906 "subtle 2.4.1",
13907 "thiserror",
13908 "tokio",
13909 "url",
13910 "webrtc-util",
13911]
13912
13913[[package]]
13914name = "substrate-bip39"14010name = "substrate-bip39"
13915version = "0.4.5"14011version = "0.5.0"
13916source = "registry+https://github.com/rust-lang/crates.io-index"14012source = "registry+https://github.com/rust-lang/crates.io-index"
13917checksum = "e620c7098893ba667438b47169c00aacdd9e7c10e042250ce2b60b087ec97328"14013checksum = "a2b564c293e6194e8b222e52436bcb99f60de72043c7f845cf6c4406db4df121"
13918dependencies = [14014dependencies = [
13919 "hmac 0.11.0",14015 "hmac 0.12.1",
13920 "pbkdf2 0.8.0",14016 "pbkdf2",
13921 "schnorrkel 0.9.1",14017 "schnorrkel 0.11.4",
13922 "sha2 0.9.9",14018 "sha2 0.10.8",
13923 "zeroize",14019 "zeroize",
13924]14020]
1392514021
13926[[package]]14022[[package]]
13927name = "substrate-build-script-utils"14023name = "substrate-build-script-utils"
13928version = "9.0.0"14024version = "11.0.0"
13929source = "registry+https://github.com/rust-lang/crates.io-index"14025source = "registry+https://github.com/rust-lang/crates.io-index"
13930checksum = "8a3b7556a62d77b7b8abc34e425817f6f563c2f2aa7142f1c4e93e6422156cc1"14026checksum = "b285e7d183a32732fdc119f3d81b7915790191fad602b7c709ef247073c77a2e"
1393114027
13932[[package]]14028[[package]]
13933name = "substrate-frame-rpc-system"14029name = "substrate-frame-rpc-system"
13934version = "25.0.0"14030version = "31.0.0"
13935source = "registry+https://github.com/rust-lang/crates.io-index"14031source = "registry+https://github.com/rust-lang/crates.io-index"
13936checksum = "4c241af714c378075b1185e574202cbb9105e849b8c9ea44ef87880bdb3e9a75"14032checksum = "3c0da351445855b0d5bff2721c64508dc790d5cc0804d1d395074c8dafeb2170"
13937dependencies = [14033dependencies = [
13938 "frame-system-rpc-runtime-api",14034 "frame-system-rpc-runtime-api",
13939 "futures",14035 "futures",
1395114047
13952[[package]]14048[[package]]
13953name = "substrate-prometheus-endpoint"14049name = "substrate-prometheus-endpoint"
13954version = "0.16.0"14050version = "0.17.0"
13955source = "registry+https://github.com/rust-lang/crates.io-index"14051source = "registry+https://github.com/rust-lang/crates.io-index"
13956checksum = "ededbe617291db8a47d6e5155486ff1e5425f0bbf5dcb7f752730466a62bd293"14052checksum = "0d8fe06b03b8a291c09507c42f92a2c2c10dd3d62975d02c7f64a92d87bfe09b"
13957dependencies = [14053dependencies = [
13958 "hyper",14054 "hyper",
13959 "log",14055 "log",
1396414060
13965[[package]]14061[[package]]
13966name = "substrate-rpc-client"14062name = "substrate-rpc-client"
13967version = "0.30.0"14063version = "0.36.0"
13968source = "registry+https://github.com/rust-lang/crates.io-index"14064source = "registry+https://github.com/rust-lang/crates.io-index"
13969checksum = "5575c2bef89385e5406565b8fe5620856d414e3846c60927a78f0788cb288c8c"14065checksum = "e71c3305c6159e3f4cfc158f88ceefb94dd86b2c92c6120ad51a9d9c31c0dce6"
13970dependencies = [14066dependencies = [
13971 "async-trait",14067 "async-trait",
13972 "jsonrpsee",14068 "jsonrpsee",
1397814074
13979[[package]]14075[[package]]
13980name = "substrate-state-trie-migration-rpc"14076name = "substrate-state-trie-migration-rpc"
13981version = "24.0.0"14077version = "30.0.0"
13982source = "registry+https://github.com/rust-lang/crates.io-index"14078source = "registry+https://github.com/rust-lang/crates.io-index"
13983checksum = "d57888ccce554552c535346893a497d2cfd232f15b6b676d130cdd5bf3f2ccea"14079checksum = "ff3afa7be8eca9226448012fa58eeaaab9c42be60214471d304658ac4856052b"
13984dependencies = [14080dependencies = [
13985 "jsonrpsee",14081 "jsonrpsee",
13986 "parity-scale-codec",14082 "parity-scale-codec",
1399614092
13997[[package]]14093[[package]]
13998name = "substrate-wasm-builder"14094name = "substrate-wasm-builder"
13999version = "14.0.0"14095version = "20.0.0"
14000source = "registry+https://github.com/rust-lang/crates.io-index"14096source = "registry+https://github.com/rust-lang/crates.io-index"
14001checksum = "12ab1707dbbd129622b771a9b80b25f0ebf1c04854b907bc44b51ec96fb4005b"14097checksum = "f55ed4ff2945faa132b9658cb581a3a5cf14dd90b5e217b3e16724eb202ed6c6"
14002dependencies = [14098dependencies = [
14003 "ansi_term",
14004 "build-helper",14099 "build-helper",
14005 "cargo_metadata",14100 "cargo_metadata",
14101 "console",
14006 "filetime",14102 "filetime",
14007 "parity-wasm",14103 "parity-wasm",
14104 "polkavm-linker",
14008 "sp-maybe-compressed-blob",14105 "sp-maybe-compressed-blob",
14009 "strum 0.24.1",14106 "strum 0.24.1",
14010 "tempfile",14107 "tempfile",
14011 "toml 0.7.8",14108 "toml 0.8.13",
14012 "walkdir",14109 "walkdir",
14013 "wasm-opt",14110 "wasm-opt",
14014]14111]
1401514112
14016[[package]]14113[[package]]
14017name = "substring"
14018version = "1.4.5"
14019source = "registry+https://github.com/rust-lang/crates.io-index"
14020checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86"
14021dependencies = [
14022 "autocfg",
14023]
14024
14025[[package]]
14026name = "subtle"14114name = "subtle"
14027version = "1.0.0"14115version = "1.0.0"
14028source = "registry+https://github.com/rust-lang/crates.io-index"14116source = "registry+https://github.com/rust-lang/crates.io-index"
14029checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"14117checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
1403014118
14031[[package]]14119[[package]]
14032name = "subtle"14120name = "subtle"
14033version = "2.4.1"14121version = "2.5.0"
14034source = "registry+https://github.com/rust-lang/crates.io-index"14122source = "registry+https://github.com/rust-lang/crates.io-index"
14035checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"14123checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
1403614124
14037[[package]]14125[[package]]
14038name = "subtle-ng"14126name = "subtle-ng"
1405314141
14054[[package]]14142[[package]]
14055name = "syn"14143name = "syn"
14056version = "2.0.39"14144version = "2.0.65"
14057source = "registry+https://github.com/rust-lang/crates.io-index"14145source = "registry+https://github.com/rust-lang/crates.io-index"
14058checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"14146checksum = "d2863d96a84c6439701d7a38f9de935ec562c8832cc55d1dde0f513b52fad106"
14059dependencies = [14147dependencies = [
14060 "proc-macro2",14148 "proc-macro2",
14061 "quote",14149 "quote",
1410314191
14104[[package]]14192[[package]]
14105name = "target-lexicon"14193name = "target-lexicon"
14106version = "0.12.12"14194version = "0.12.14"
14107source = "registry+https://github.com/rust-lang/crates.io-index"14195source = "registry+https://github.com/rust-lang/crates.io-index"
14108checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a"14196checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
1410914197
14110[[package]]14198[[package]]
14111name = "tempfile"14199name = "tempfile"
14112version = "3.8.1"14200version = "3.10.1"
14113source = "registry+https://github.com/rust-lang/crates.io-index"14201source = "registry+https://github.com/rust-lang/crates.io-index"
14114checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"14202checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
14115dependencies = [14203dependencies = [
14116 "cfg-if",14204 "cfg-if",
14117 "fastrand 2.0.1",14205 "fastrand 2.1.0",
14118 "redox_syscall 0.4.1",
14119 "rustix 0.38.25",14206 "rustix 0.38.34",
14120 "windows-sys 0.48.0",14207 "windows-sys 0.52.0",
14121]14208]
1412214209
14123[[package]]14210[[package]]
14124name = "termcolor"14211name = "termcolor"
14125version = "1.4.0"14212version = "1.4.1"
14126source = "registry+https://github.com/rust-lang/crates.io-index"14213source = "registry+https://github.com/rust-lang/crates.io-index"
14127checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"14214checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
14128dependencies = [14215dependencies = [
14129 "winapi-util",14216 "winapi-util",
14130]14217]
1413114218
14132[[package]]14219[[package]]
14220name = "terminal_size"
14221version = "0.3.0"
14222source = "registry+https://github.com/rust-lang/crates.io-index"
14223checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
14224dependencies = [
14225 "rustix 0.38.34",
14226 "windows-sys 0.48.0",
14227]
14228
14229[[package]]
14133name = "termtree"14230name = "termtree"
14134version = "0.4.1"14231version = "0.4.1"
14135source = "registry+https://github.com/rust-lang/crates.io-index"14232source = "registry+https://github.com/rust-lang/crates.io-index"
1416914266
14170[[package]]14267[[package]]
14171name = "thiserror"14268name = "thiserror"
14172version = "1.0.50"14269version = "1.0.61"
14173source = "registry+https://github.com/rust-lang/crates.io-index"14270source = "registry+https://github.com/rust-lang/crates.io-index"
14174checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"14271checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
14175dependencies = [14272dependencies = [
14176 "thiserror-impl",14273 "thiserror-impl",
14177]14274]
14193dependencies = [14290dependencies = [
14194 "proc-macro2",14291 "proc-macro2",
14195 "quote",14292 "quote",
14196 "syn 2.0.39",14293 "syn 2.0.65",
14197]14294]
1419814295
14199[[package]]14296[[package]]
14200name = "thiserror-impl"14297name = "thiserror-impl"
14201version = "1.0.50"14298version = "1.0.61"
14202source = "registry+https://github.com/rust-lang/crates.io-index"14299source = "registry+https://github.com/rust-lang/crates.io-index"
14203checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"14300checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
14204dependencies = [14301dependencies = [
14205 "proc-macro2",14302 "proc-macro2",
14206 "quote",14303 "quote",
14207 "syn 2.0.39",14304 "syn 2.0.65",
14208]14305]
1420914306
14210[[package]]14307[[package]]
1421514312
14216[[package]]14313[[package]]
14217name = "thread_local"14314name = "thread_local"
14218version = "1.1.7"14315version = "1.1.8"
14219source = "registry+https://github.com/rust-lang/crates.io-index"14316source = "registry+https://github.com/rust-lang/crates.io-index"
14220checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"14317checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
14221dependencies = [14318dependencies = [
14222 "cfg-if",14319 "cfg-if",
14223 "once_cell",14320 "once_cell",
1426814365
14269[[package]]14366[[package]]
14270name = "time"14367name = "time"
14271version = "0.3.30"14368version = "0.3.36"
14272source = "registry+https://github.com/rust-lang/crates.io-index"14369source = "registry+https://github.com/rust-lang/crates.io-index"
14273checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"14370checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
14274dependencies = [14371dependencies = [
14275 "deranged",14372 "deranged",
14276 "itoa",14373 "itoa",
14374 "num-conv",
14277 "powerfmt",14375 "powerfmt",
14278 "serde",14376 "serde",
14279 "time-core",14377 "time-core",
1428814386
14289[[package]]14387[[package]]
14290name = "time-macros"14388name = "time-macros"
14291version = "0.2.15"14389version = "0.2.18"
14292source = "registry+https://github.com/rust-lang/crates.io-index"14390source = "registry+https://github.com/rust-lang/crates.io-index"
14293checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"14391checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
14294dependencies = [14392dependencies = [
14393 "num-conv",
14295 "time-core",14394 "time-core",
14296]14395]
1429714396
14298[[package]]14397[[package]]
14299name = "tiny-bip39"
14300version = "1.0.0"
14301source = "registry+https://github.com/rust-lang/crates.io-index"
14302checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861"
14303dependencies = [
14304 "anyhow",
14305 "hmac 0.12.1",
14306 "once_cell",
14307 "pbkdf2 0.11.0",
14308 "rand 0.8.5",
14309 "rustc-hash",
14310 "sha2 0.10.8",
14311 "thiserror",
14312 "unicode-normalization",
14313 "wasm-bindgen",
14314 "zeroize",
14315]
14316
14317[[package]]
14318name = "tiny-keccak"14398name = "tiny-keccak"
14319version = "2.0.2"14399version = "2.0.2"
14320source = "registry+https://github.com/rust-lang/crates.io-index"14400source = "registry+https://github.com/rust-lang/crates.io-index"
14324]14404]
1432514405
14326[[package]]14406[[package]]
14327name = "tinytemplate"
14328version = "1.2.1"
14329source = "registry+https://github.com/rust-lang/crates.io-index"
14330checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
14331dependencies = [
14332 "serde",
14333 "serde_json",
14334]
14335
14336[[package]]
14337name = "tinyvec"14407name = "tinyvec"
14338version = "1.6.0"14408version = "1.6.0"
14339source = "registry+https://github.com/rust-lang/crates.io-index"14409source = "registry+https://github.com/rust-lang/crates.io-index"
1435014420
14351[[package]]14421[[package]]
14352name = "tokio"14422name = "tokio"
14353version = "1.34.0"14423version = "1.37.0"
14354source = "registry+https://github.com/rust-lang/crates.io-index"14424source = "registry+https://github.com/rust-lang/crates.io-index"
14355checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"14425checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
14356dependencies = [14426dependencies = [
14357 "backtrace",14427 "backtrace",
14358 "bytes",14428 "bytes",
14359 "libc",14429 "libc",
14360 "mio",14430 "mio",
14361 "num_cpus",14431 "num_cpus",
14362 "parking_lot 0.12.1",14432 "parking_lot 0.12.2",
14363 "pin-project-lite 0.2.13",14433 "pin-project-lite 0.2.14",
14364 "signal-hook-registry",14434 "signal-hook-registry",
14365 "socket2 0.5.5",14435 "socket2 0.5.7",
14366 "tokio-macros",14436 "tokio-macros",
14367 "windows-sys 0.48.0",14437 "windows-sys 0.48.0",
14368]14438]
14375dependencies = [14445dependencies = [
14376 "proc-macro2",14446 "proc-macro2",
14377 "quote",14447 "quote",
14378 "syn 2.0.39",14448 "syn 2.0.65",
14379]14449]
1438014450
14381[[package]]14451[[package]]
14385checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f"14455checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f"
14386dependencies = [14456dependencies = [
14387 "pin-project",14457 "pin-project",
14388 "rand 0.8.5",14458 "rand",
14389 "tokio",14459 "tokio",
14390]14460]
1439114461
14395source = "registry+https://github.com/rust-lang/crates.io-index"14465source = "registry+https://github.com/rust-lang/crates.io-index"
14396checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"14466checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
14397dependencies = [14467dependencies = [
14398 "rustls 0.21.9",14468 "rustls 0.21.12",
14399 "tokio",14469 "tokio",
14400]14470]
1440114471
14402[[package]]14472[[package]]
14473name = "tokio-rustls"
14474version = "0.25.0"
14475source = "registry+https://github.com/rust-lang/crates.io-index"
14476checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
14477dependencies = [
14478 "rustls 0.22.4",
14479 "rustls-pki-types",
14480 "tokio",
14481]
14482
14483[[package]]
14403name = "tokio-stream"14484name = "tokio-stream"
14404version = "0.1.14"14485version = "0.1.15"
14405source = "registry+https://github.com/rust-lang/crates.io-index"14486source = "registry+https://github.com/rust-lang/crates.io-index"
14406checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"14487checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
14407dependencies = [14488dependencies = [
14408 "futures-core",14489 "futures-core",
14409 "pin-project-lite 0.2.13",14490 "pin-project-lite 0.2.14",
14410 "tokio",14491 "tokio",
14411 "tokio-util",14492 "tokio-util",
14412]14493]
1441314494
14414[[package]]14495[[package]]
14415name = "tokio-util"14496name = "tokio-util"
14416version = "0.7.10"14497version = "0.7.11"
14417source = "registry+https://github.com/rust-lang/crates.io-index"14498source = "registry+https://github.com/rust-lang/crates.io-index"
14418checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"14499checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
14419dependencies = [14500dependencies = [
14420 "bytes",14501 "bytes",
14421 "futures-core",14502 "futures-core",
14422 "futures-io",14503 "futures-io",
14423 "futures-sink",14504 "futures-sink",
14424 "pin-project-lite 0.2.13",14505 "pin-project-lite 0.2.14",
14425 "tokio",14506 "tokio",
14426 "tracing",
14427]14507]
1442814508
14429[[package]]14509[[package]]
1443714517
14438[[package]]14518[[package]]
14439name = "toml"14519name = "toml"
14440version = "0.7.8"14520version = "0.8.13"
14441source = "registry+https://github.com/rust-lang/crates.io-index"14521source = "registry+https://github.com/rust-lang/crates.io-index"
14442checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"14522checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba"
14443dependencies = [14523dependencies = [
14444 "serde",14524 "serde",
14445 "serde_spanned",14525 "serde_spanned",
14446 "toml_datetime",14526 "toml_datetime",
14447 "toml_edit 0.19.15",14527 "toml_edit 0.22.13",
14448]14528]
1444914529
14450[[package]]14530[[package]]
14451name = "toml_datetime"14531name = "toml_datetime"
14452version = "0.6.5"14532version = "0.6.6"
14453source = "registry+https://github.com/rust-lang/crates.io-index"14533source = "registry+https://github.com/rust-lang/crates.io-index"
14454checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"14534checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
14455dependencies = [14535dependencies = [
14456 "serde",14536 "serde",
14457]14537]
14462source = "registry+https://github.com/rust-lang/crates.io-index"14542source = "registry+https://github.com/rust-lang/crates.io-index"
14463checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"14543checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
14464dependencies = [14544dependencies = [
14465 "indexmap 2.1.0",14545 "indexmap 2.2.6",
14466 "serde",
14467 "serde_spanned",
14468 "toml_datetime",14546 "toml_datetime",
14469 "winnow",14547 "winnow 0.5.40",
14470]14548]
1447114549
14472[[package]]14550[[package]]
14473name = "toml_edit"14551name = "toml_edit"
14474version = "0.20.7"14552version = "0.21.1"
14475source = "registry+https://github.com/rust-lang/crates.io-index"14553source = "registry+https://github.com/rust-lang/crates.io-index"
14476checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"14554checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
14477dependencies = [14555dependencies = [
14478 "indexmap 2.1.0",14556 "indexmap 2.2.6",
14479 "toml_datetime",14557 "toml_datetime",
14480 "winnow",14558 "winnow 0.5.40",
14481]14559]
1448214560
14483[[package]]14561[[package]]
14562name = "toml_edit"
14563version = "0.22.13"
14564source = "registry+https://github.com/rust-lang/crates.io-index"
14565checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c"
14566dependencies = [
14567 "indexmap 2.2.6",
14568 "serde",
14569 "serde_spanned",
14570 "toml_datetime",
14571 "winnow 0.6.8",
14572]
14573
14574[[package]]
14484name = "tower"14575name = "tower"
14485version = "0.4.13"14576version = "0.4.13"
14486source = "registry+https://github.com/rust-lang/crates.io-index"14577source = "registry+https://github.com/rust-lang/crates.io-index"
14487checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"14578checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
14488dependencies = [14579dependencies = [
14580 "futures-core",
14581 "futures-util",
14582 "pin-project",
14583 "pin-project-lite 0.2.14",
14489 "tower-layer",14584 "tower-layer",
14490 "tower-service",14585 "tower-service",
14491 "tracing",14586 "tracing",
14497source = "registry+https://github.com/rust-lang/crates.io-index"14592source = "registry+https://github.com/rust-lang/crates.io-index"
14498checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"14593checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
14499dependencies = [14594dependencies = [
14500 "bitflags 2.4.1",14595 "bitflags 2.5.0",
14501 "bytes",14596 "bytes",
14502 "futures-core",14597 "futures-core",
14503 "futures-util",14598 "futures-util",
14504 "http",14599 "http",
14505 "http-body",14600 "http-body",
14506 "http-range-header",14601 "http-range-header",
14507 "pin-project-lite 0.2.13",14602 "pin-project-lite 0.2.14",
14508 "tower-layer",14603 "tower-layer",
14509 "tower-service",14604 "tower-service",
14510]14605]
14528checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"14623checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
14529dependencies = [14624dependencies = [
14530 "log",14625 "log",
14531 "pin-project-lite 0.2.13",14626 "pin-project-lite 0.2.14",
14532 "tracing-attributes",14627 "tracing-attributes",
14533 "tracing-core",14628 "tracing-core",
14534]14629]
14541dependencies = [14636dependencies = [
14542 "proc-macro2",14637 "proc-macro2",
14543 "quote",14638 "quote",
14544 "syn 2.0.39",14639 "syn 2.0.65",
14545]14640]
1454614641
14547[[package]]14642[[package]]
1456614661
14567[[package]]14662[[package]]
14568name = "tracing-gum"14663name = "tracing-gum"
14569version = "4.0.0"14664version = "10.0.0"
14570source = "registry+https://github.com/rust-lang/crates.io-index"14665source = "registry+https://github.com/rust-lang/crates.io-index"
14571checksum = "32c0555bd635d9adbf8dec0bf45f7c2aef7541121d648ba37f5f792a211077b6"14666checksum = "461fe686e103f3afc4c93a56474193ffc46d4b2770f8df5d56e025e8bb54960c"
14572dependencies = [14667dependencies = [
14573 "coarsetime",14668 "coarsetime",
14574 "polkadot-node-jaeger",
14575 "polkadot-primitives",14669 "polkadot-primitives",
14576 "tracing",14670 "tracing",
14577 "tracing-gum-proc-macro",14671 "tracing-gum-proc-macro",
14578]14672]
1457914673
14580[[package]]14674[[package]]
14581name = "tracing-gum-proc-macro"14675name = "tracing-gum-proc-macro"
14582version = "4.0.0"14676version = "5.0.0"
14583source = "registry+https://github.com/rust-lang/crates.io-index"14677source = "registry+https://github.com/rust-lang/crates.io-index"
14584checksum = "35756d8c1a227ec525853a1080bf890d03d939deb2bc50d4d43c96516c795d0d"14678checksum = "0f074568687ffdfd0adb6005aa8d1d96840197f2c159f80471285f08694cf0ce"
14585dependencies = [14679dependencies = [
14586 "expander 2.0.0",14680 "expander 2.1.0",
14587 "proc-macro-crate 1.3.1",14681 "proc-macro-crate 3.1.0",
14588 "proc-macro2",14682 "proc-macro2",
14589 "quote",14683 "quote",
14590 "syn 2.0.39",14684 "syn 2.0.65",
14591]14685]
1459214686
14593[[package]]14687[[package]]
14640source = "registry+https://github.com/rust-lang/crates.io-index"14734source = "registry+https://github.com/rust-lang/crates.io-index"
14641checksum = "767abe6ffed88a1889671a102c2861ae742726f52e0a5a425b92c9fbfa7e9c85"14735checksum = "767abe6ffed88a1889671a102c2861ae742726f52e0a5a425b92c9fbfa7e9c85"
14642dependencies = [14736dependencies = [
14643 "hash-db 0.16.0",14737 "hash-db",
14644 "hashbrown 0.13.2",14738 "hashbrown 0.13.2",
14645 "log",14739 "log",
14646 "smallvec",14740 "smallvec",
14652source = "registry+https://github.com/rust-lang/crates.io-index"14746source = "registry+https://github.com/rust-lang/crates.io-index"
14653checksum = "ff28e0f815c2fea41ebddf148e008b077d2faddb026c9555b29696114d602642"14747checksum = "ff28e0f815c2fea41ebddf148e008b077d2faddb026c9555b29696114d602642"
14654dependencies = [14748dependencies = [
14655 "hash-db 0.16.0",14749 "hash-db",
14656 "hashbrown 0.13.2",14750 "hashbrown 0.13.2",
14657 "log",14751 "log",
14658 "rustc-hex",14752 "rustc-hex",
14665source = "registry+https://github.com/rust-lang/crates.io-index"14759source = "registry+https://github.com/rust-lang/crates.io-index"
14666checksum = "d4ed310ef5ab98f5fa467900ed906cb9232dd5376597e00fd4cba2a449d06c0b"14760checksum = "d4ed310ef5ab98f5fa467900ed906cb9232dd5376597e00fd4cba2a449d06c0b"
14667dependencies = [14761dependencies = [
14668 "hash-db 0.16.0",14762 "hash-db",
14669]14763]
1467014764
14671[[package]]14765[[package]]
14672name = "triehash"
14673version = "0.8.4"
14674source = "registry+https://github.com/rust-lang/crates.io-index"
14675checksum = "a1631b201eb031b563d2e85ca18ec8092508e262a3196ce9bd10a67ec87b9f5c"
14676dependencies = [
14677 "hash-db 0.15.2",
14678 "rlp",
14679]
14680
14681[[package]]
14682name = "trust-dns-proto"14766name = "trust-dns-proto"
14683version = "0.22.0"14767version = "0.22.0"
14684source = "registry+https://github.com/rust-lang/crates.io-index"14768source = "registry+https://github.com/rust-lang/crates.io-index"
14694 "idna 0.2.3",14778 "idna 0.2.3",
14695 "ipnet",14779 "ipnet",
14696 "lazy_static",14780 "lazy_static",
14697 "rand 0.8.5",14781 "rand",
14698 "smallvec",14782 "smallvec",
14699 "socket2 0.4.10",14783 "socket2 0.4.10",
14700 "thiserror",14784 "thiserror",
14715 "ipconfig",14799 "ipconfig",
14716 "lazy_static",14800 "lazy_static",
14717 "lru-cache",14801 "lru-cache",
14718 "parking_lot 0.12.1",14802 "parking_lot 0.12.2",
14719 "resolv-conf",14803 "resolv-conf",
14720 "smallvec",14804 "smallvec",
14721 "thiserror",14805 "thiserror",
1472614810
14727[[package]]14811[[package]]
14728name = "try-lock"14812name = "try-lock"
14729version = "0.2.4"14813version = "0.2.5"
14730source = "registry+https://github.com/rust-lang/crates.io-index"14814source = "registry+https://github.com/rust-lang/crates.io-index"
14731checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"14815checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1473214816
14733[[package]]14817[[package]]
14734name = "try-runtime-cli"14818name = "try-runtime-cli"
14735version = "0.35.0"14819version = "0.41.0"
14736source = "registry+https://github.com/rust-lang/crates.io-index"14820source = "registry+https://github.com/rust-lang/crates.io-index"
14737checksum = "845090aa8572116b06813914fc1d09448fe895d82982b63d58de4f91b4eb79b6"14821checksum = "80765dc36d90e9f2112dccc6e5d70df50ab1239dba8e004bcc70cc77b3a9712d"
14738dependencies = [14822dependencies = [
14739 "async-trait",14823 "async-trait",
14740 "clap",14824 "clap",
14774checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df"14858checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df"
1477514859
14776[[package]]14860[[package]]
14777name = "turn"
14778version = "0.6.1"
14779source = "registry+https://github.com/rust-lang/crates.io-index"
14780checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8"
14781dependencies = [
14782 "async-trait",
14783 "base64 0.13.1",
14784 "futures",
14785 "log",
14786 "md-5",
14787 "rand 0.8.5",
14788 "ring 0.16.20",
14789 "stun",
14790 "thiserror",
14791 "tokio",
14792 "webrtc-util",
14793]
14794
14795[[package]]
14796name = "twox-hash"14861name = "twox-hash"
14797version = "1.6.3"14862version = "1.6.3"
14798source = "registry+https://github.com/rust-lang/crates.io-index"14863source = "registry+https://github.com/rust-lang/crates.io-index"
14799checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"14864checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
14800dependencies = [14865dependencies = [
14801 "cfg-if",14866 "cfg-if",
14802 "digest 0.10.7",14867 "digest 0.10.7",
14803 "rand 0.8.5",14868 "rand",
14804 "static_assertions",14869 "static_assertions",
14805]14870]
1480614871
14814name = "uc-rpc"14879name = "uc-rpc"
14815version = "0.1.4"14880version = "0.1.4"
14816dependencies = [14881dependencies = [
14817 "anyhow",
14818 "app-promotion-rpc",14882 "app-promotion-rpc",
14819 "frame-benchmarking",14883 "frame-benchmarking",
14820 "hex-literal",14884 "hex-literal",
1486414928
14865[[package]]14929[[package]]
14866name = "unicode-bidi"14930name = "unicode-bidi"
14867version = "0.3.13"14931version = "0.3.15"
14868source = "registry+https://github.com/rust-lang/crates.io-index"14932source = "registry+https://github.com/rust-lang/crates.io-index"
14869checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"14933checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
1487014934
14871[[package]]14935[[package]]
14872name = "unicode-ident"14936name = "unicode-ident"
1488514949
14886[[package]]14950[[package]]
14887name = "unicode-width"14951name = "unicode-width"
14888version = "0.1.11"14952version = "0.1.12"
14889source = "registry+https://github.com/rust-lang/crates.io-index"14953source = "registry+https://github.com/rust-lang/crates.io-index"
14890checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"14954checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
1489114955
14892[[package]]14956[[package]]
14893name = "unicode-xid"14957name = "unicode-xid"
14907 "cumulus-client-consensus-common",14971 "cumulus-client-consensus-common",
14908 "cumulus-client-consensus-proposer",14972 "cumulus-client-consensus-proposer",
14909 "cumulus-client-network",14973 "cumulus-client-network",
14974 "cumulus-client-parachain-inherent",
14910 "cumulus-client-service",14975 "cumulus-client-service",
14911 "cumulus-primitives-aura",14976 "cumulus-primitives-aura",
14912 "cumulus-primitives-core",14977 "cumulus-primitives-core",
14964 "sp-offchain",15029 "sp-offchain",
14965 "sp-runtime",15030 "sp-runtime",
14966 "sp-session",15031 "sp-session",
15032 "sp-state-machine",
14967 "sp-timestamp",15033 "sp-timestamp",
14968 "sp-transaction-pool",15034 "sp-transaction-pool",
14969 "substrate-build-script-utils",15035 "substrate-build-script-utils",
15018 "pallet-balances",15084 "pallet-balances",
15019 "pallet-balances-adapter",15085 "pallet-balances-adapter",
15020 "pallet-base-fee",15086 "pallet-base-fee",
15021 "pallet-collator-selection",15087 "pallet-collator-selection 5.0.0",
15022 "pallet-collective",15088 "pallet-collective",
15023 "pallet-common",15089 "pallet-common",
15024 "pallet-configuration",15090 "pallet-configuration",
15037 "pallet-inflation",15103 "pallet-inflation",
15038 "pallet-maintenance",15104 "pallet-maintenance",
15039 "pallet-membership",15105 "pallet-membership",
15106 "pallet-message-queue",
15040 "pallet-nonfungible",15107 "pallet-nonfungible",
15041 "pallet-preimage",15108 "pallet-preimage",
15042 "pallet-ranked-collective",15109 "pallet-ranked-collective",
15056 "pallet-unique",15123 "pallet-unique",
15057 "pallet-utility",15124 "pallet-utility",
15058 "pallet-xcm",15125 "pallet-xcm",
15126 "parachains-common",
15059 "parity-scale-codec",15127 "parity-scale-codec",
15060 "polkadot-parachain-primitives",15128 "polkadot-parachain-primitives",
15061 "polkadot-runtime-common",15129 "polkadot-runtime-common",
15068 "sp-block-builder",15136 "sp-block-builder",
15069 "sp-consensus-aura",15137 "sp-consensus-aura",
15070 "sp-core",15138 "sp-core",
15139 "sp-genesis-builder",
15071 "sp-inherents",15140 "sp-inherents",
15072 "sp-io",15141 "sp-io",
15073 "sp-offchain",15142 "sp-offchain",
1509115160
15092[[package]]15161[[package]]
15093name = "universal-hash"15162name = "universal-hash"
15094version = "0.4.1"
15095source = "registry+https://github.com/rust-lang/crates.io-index"
15096checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
15097dependencies = [
15098 "generic-array 0.14.7",
15099 "subtle 2.4.1",
15100]
15101
15102[[package]]
15103name = "universal-hash"
15104version = "0.5.1"15163version = "0.5.1"
15105source = "registry+https://github.com/rust-lang/crates.io-index"15164source = "registry+https://github.com/rust-lang/crates.io-index"
15106checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"15165checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
15107dependencies = [15166dependencies = [
15108 "crypto-common",15167 "crypto-common",
15109 "subtle 2.4.1",15168 "subtle 2.5.0",
15110]15169]
1511115170
15112[[package]]15171[[package]]
15196[[package]]15255[[package]]
15197name = "up-sponsorship"15256name = "up-sponsorship"
15198version = "0.1.0"15257version = "0.1.0"
15199source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v1.3.0#6071a67116a08ef81083337360de376b63c0ea1c"15258source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v1.9.0#f61acb0c67e58e16f9a4d9ab3a82b5cac1a5bede"
15200dependencies = [15259dependencies = [
15201 "impl-trait-for-tuples",15260 "impl-trait-for-tuples",
15202]15261]
1520315262
15204[[package]]15263[[package]]
15205name = "url"15264name = "url"
15206version = "2.4.1"15265version = "2.5.0"
15207source = "registry+https://github.com/rust-lang/crates.io-index"15266source = "registry+https://github.com/rust-lang/crates.io-index"
15208checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"15267checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
15209dependencies = [15268dependencies = [
15210 "form_urlencoded",15269 "form_urlencoded",
15211 "idna 0.4.0",15270 "idna 0.5.0",
15212 "percent-encoding",15271 "percent-encoding",
15213]15272]
1521415273
15219checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"15278checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
1522015279
15221[[package]]15280[[package]]
15222name = "uuid"
15223version = "1.6.1"
15224source = "registry+https://github.com/rust-lang/crates.io-index"
15225checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
15226dependencies = [
15227 "getrandom 0.2.11",
15228]
15229
15230[[package]]
15231name = "valuable"15281name = "valuable"
15232version = "0.1.0"15282version = "0.1.0"
15233source = "registry+https://github.com/rust-lang/crates.io-index"15283source = "registry+https://github.com/rust-lang/crates.io-index"
15266 "arrayref",15316 "arrayref",
15267 "constcat",15317 "constcat",
15268 "digest 0.10.7",15318 "digest 0.10.7",
15269 "rand 0.8.5",15319 "rand",
15270 "rand_chacha 0.3.1",15320 "rand_chacha 0.3.1",
15271 "rand_core 0.6.4",15321 "rand_core 0.6.4",
15272 "sha2 0.10.8",15322 "sha2 0.10.8",
15276]15326]
1527715327
15278[[package]]15328[[package]]
15279name = "waitgroup"
15280version = "0.1.2"
15281source = "registry+https://github.com/rust-lang/crates.io-index"
15282checksum = "d1f50000a783467e6c0200f9d10642f4bc424e39efc1b770203e88b488f79292"
15283dependencies = [
15284 "atomic-waker",
15285]
15286
15287[[package]]
15288name = "waker-fn"15329name = "waker-fn"
15289version = "1.1.1"15330version = "1.2.0"
15290source = "registry+https://github.com/rust-lang/crates.io-index"15331source = "registry+https://github.com/rust-lang/crates.io-index"
15291checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"15332checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7"
1529215333
15293[[package]]15334[[package]]
15294name = "walkdir"15335name = "walkdir"
15295version = "2.4.0"15336version = "2.5.0"
15296source = "registry+https://github.com/rust-lang/crates.io-index"15337source = "registry+https://github.com/rust-lang/crates.io-index"
15297checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"15338checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
15298dependencies = [15339dependencies = [
15299 "same-file",15340 "same-file",
15300 "winapi-util",15341 "winapi-util",
15322checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"15363checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1532315364
15324[[package]]15365[[package]]
15366name = "wasix"
15367version = "0.12.21"
15368source = "registry+https://github.com/rust-lang/crates.io-index"
15369checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d"
15370dependencies = [
15371 "wasi 0.11.0+wasi-snapshot-preview1",
15372]
15373
15374[[package]]
15325name = "wasm-bindgen"15375name = "wasm-bindgen"
15326version = "0.2.88"15376version = "0.2.92"
15327source = "registry+https://github.com/rust-lang/crates.io-index"15377source = "registry+https://github.com/rust-lang/crates.io-index"
15328checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"15378checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
15329dependencies = [15379dependencies = [
15330 "cfg-if",15380 "cfg-if",
15331 "wasm-bindgen-macro",15381 "wasm-bindgen-macro",
15332]15382]
1533315383
15334[[package]]15384[[package]]
15335name = "wasm-bindgen-backend"15385name = "wasm-bindgen-backend"
15336version = "0.2.88"15386version = "0.2.92"
15337source = "registry+https://github.com/rust-lang/crates.io-index"15387source = "registry+https://github.com/rust-lang/crates.io-index"
15338checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"15388checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
15339dependencies = [15389dependencies = [
15340 "bumpalo",15390 "bumpalo",
15341 "log",15391 "log",
15342 "once_cell",15392 "once_cell",
15343 "proc-macro2",15393 "proc-macro2",
15344 "quote",15394 "quote",
15345 "syn 2.0.39",15395 "syn 2.0.65",
15346 "wasm-bindgen-shared",15396 "wasm-bindgen-shared",
15347]15397]
1534815398
15349[[package]]15399[[package]]
15350name = "wasm-bindgen-futures"15400name = "wasm-bindgen-futures"
15351version = "0.4.38"15401version = "0.4.42"
15352source = "registry+https://github.com/rust-lang/crates.io-index"15402source = "registry+https://github.com/rust-lang/crates.io-index"
15353checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02"15403checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
15354dependencies = [15404dependencies = [
15355 "cfg-if",15405 "cfg-if",
15356 "js-sys",15406 "js-sys",
1536015410
15361[[package]]15411[[package]]
15362name = "wasm-bindgen-macro"15412name = "wasm-bindgen-macro"
15363version = "0.2.88"15413version = "0.2.92"
15364source = "registry+https://github.com/rust-lang/crates.io-index"15414source = "registry+https://github.com/rust-lang/crates.io-index"
15365checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"15415checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
15366dependencies = [15416dependencies = [
15367 "quote",15417 "quote",
15368 "wasm-bindgen-macro-support",15418 "wasm-bindgen-macro-support",
15369]15419]
1537015420
15371[[package]]15421[[package]]
15372name = "wasm-bindgen-macro-support"15422name = "wasm-bindgen-macro-support"
15373version = "0.2.88"15423version = "0.2.92"
15374source = "registry+https://github.com/rust-lang/crates.io-index"15424source = "registry+https://github.com/rust-lang/crates.io-index"
15375checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"15425checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
15376dependencies = [15426dependencies = [
15377 "proc-macro2",15427 "proc-macro2",
15378 "quote",15428 "quote",
15379 "syn 2.0.39",15429 "syn 2.0.65",
15380 "wasm-bindgen-backend",15430 "wasm-bindgen-backend",
15381 "wasm-bindgen-shared",15431 "wasm-bindgen-shared",
15382]15432]
1538315433
15384[[package]]15434[[package]]
15385name = "wasm-bindgen-shared"15435name = "wasm-bindgen-shared"
15386version = "0.2.88"15436version = "0.2.92"
15387source = "registry+https://github.com/rust-lang/crates.io-index"15437source = "registry+https://github.com/rust-lang/crates.io-index"
15388checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"15438checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
1538915439
15390[[package]]15440[[package]]
15391name = "wasm-instrument"15441name = "wasm-instrument"
15392version = "0.3.0"15442version = "0.4.0"
15393source = "registry+https://github.com/rust-lang/crates.io-index"15443source = "registry+https://github.com/rust-lang/crates.io-index"
15394checksum = "aa1dafb3e60065305741e83db35c6c2584bb3725b692b5b66148a38d72ace6cd"15444checksum = "2a47ecb37b9734d1085eaa5ae1a81e60801fd8c28d4cabdd8aedb982021918bc"
15395dependencies = [15445dependencies = [
15396 "parity-wasm",15446 "parity-wasm",
15397]15447]
1539815448
15399[[package]]15449[[package]]
15400name = "wasm-opt"15450name = "wasm-opt"
15401version = "0.116.0"15451version = "0.116.1"
15402source = "registry+https://github.com/rust-lang/crates.io-index"15452source = "registry+https://github.com/rust-lang/crates.io-index"
15403checksum = "fc942673e7684671f0c5708fc18993569d184265fd5223bb51fc8e5b9b6cfd52"15453checksum = "2fd87a4c135535ffed86123b6fb0f0a5a0bc89e50416c942c5f0662c645f679c"
15404dependencies = [15454dependencies = [
15405 "anyhow",15455 "anyhow",
15406 "libc",15456 "libc",
1545315503
15454[[package]]15504[[package]]
15455name = "wasmi"15505name = "wasmi"
15456version = "0.31.0"15506version = "0.31.2"
15457source = "registry+https://github.com/rust-lang/crates.io-index"15507source = "registry+https://github.com/rust-lang/crates.io-index"
15458checksum = "1f341edb80021141d4ae6468cbeefc50798716a347d4085c3811900049ea8945"15508checksum = "77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7"
15459dependencies = [15509dependencies = [
15460 "smallvec",15510 "smallvec",
15461 "spin 0.9.8",15511 "spin 0.9.8",
1546615516
15467[[package]]15517[[package]]
15468name = "wasmi_arena"15518name = "wasmi_arena"
15469version = "0.4.0"15519version = "0.4.1"
15470source = "registry+https://github.com/rust-lang/crates.io-index"15520source = "registry+https://github.com/rust-lang/crates.io-index"
15471checksum = "401c1f35e413fac1846d4843745589d9ec678977ab35a384db8ae7830525d468"15521checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073"
1547215522
15473[[package]]15523[[package]]
15474name = "wasmi_core"15524name = "wasmi_core"
1549415544
15495[[package]]15545[[package]]
15496name = "wasmparser-nostd"15546name = "wasmparser-nostd"
15497version = "0.100.1"15547version = "0.100.2"
15498source = "registry+https://github.com/rust-lang/crates.io-index"15548source = "registry+https://github.com/rust-lang/crates.io-index"
15499checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724"15549checksum = "d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa"
15500dependencies = [15550dependencies = [
15501 "indexmap-nostd",15551 "indexmap-nostd",
15502]15552]
15545checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213"15595checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213"
15546dependencies = [15596dependencies = [
15547 "anyhow",15597 "anyhow",
15548 "base64 0.21.5",15598 "base64 0.21.7",
15549 "bincode",15599 "bincode",
15550 "directories-next",15600 "directories-next",
15551 "file-per-thread-logger",15601 "file-per-thread-logger",
15674 "log",15724 "log",
15675 "mach",15725 "mach",
15676 "memfd",15726 "memfd",
15677 "memoffset 0.8.0",15727 "memoffset",
15678 "paste",15728 "paste",
15679 "rand 0.8.5",15729 "rand",
15680 "rustix 0.36.17",15730 "rustix 0.36.17",
15681 "wasmtime-asm-macros",15731 "wasmtime-asm-macros",
15682 "wasmtime-environ",15732 "wasmtime-environ",
1569815748
15699[[package]]15749[[package]]
15700name = "web-sys"15750name = "web-sys"
15701version = "0.3.65"15751version = "0.3.69"
15702source = "registry+https://github.com/rust-lang/crates.io-index"15752source = "registry+https://github.com/rust-lang/crates.io-index"
15703checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85"15753checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
15704dependencies = [15754dependencies = [
15705 "js-sys",15755 "js-sys",
15706 "wasm-bindgen",15756 "wasm-bindgen",
15707]15757]
1570815758
15709[[package]]15759[[package]]
15710name = "webpki"15760name = "webpki"
15711version = "0.21.4"
15712source = "registry+https://github.com/rust-lang/crates.io-index"
15713checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
15714dependencies = [
15715 "ring 0.16.20",
15716 "untrusted 0.7.1",
15717]
15718
15719[[package]]
15720name = "webpki"
15721version = "0.22.4"15761version = "0.22.4"
15722source = "registry+https://github.com/rust-lang/crates.io-index"15762source = "registry+https://github.com/rust-lang/crates.io-index"
15723checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"15763checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
15724dependencies = [15764dependencies = [
15725 "ring 0.17.5",15765 "ring 0.17.8",
15726 "untrusted 0.9.0",15766 "untrusted 0.9.0",
15727]15767]
1572815768
15732source = "registry+https://github.com/rust-lang/crates.io-index"15772source = "registry+https://github.com/rust-lang/crates.io-index"
15733checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"15773checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
15734dependencies = [15774dependencies = [
15735 "webpki 0.22.4",15775 "webpki",
15736]15776]
1573715777
15738[[package]]15778[[package]]
15739name = "webpki-roots"
15740version = "0.25.2"
15741source = "registry+https://github.com/rust-lang/crates.io-index"
15742checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc"
15743
15744[[package]]
15745name = "webrtc"
15746version = "0.6.0"
15747source = "registry+https://github.com/rust-lang/crates.io-index"
15748checksum = "2d3bc9049bdb2cea52f5fd4f6f728184225bdb867ed0dc2410eab6df5bdd67bb"
15749dependencies = [
15750 "arc-swap",
15751 "async-trait",
15752 "bytes",
15753 "hex",
15754 "interceptor",
15755 "lazy_static",
15756 "log",
15757 "rand 0.8.5",
15758 "rcgen 0.9.3",
15759 "regex",
15760 "ring 0.16.20",
15761 "rtcp",
15762 "rtp",
15763 "rustls 0.19.1",
15764 "sdp",
15765 "serde",
15766 "serde_json",
15767 "sha2 0.10.8",
15768 "stun",
15769 "thiserror",
15770 "time",
15771 "tokio",
15772 "turn",
15773 "url",
15774 "waitgroup",
15775 "webrtc-data",
15776 "webrtc-dtls",
15777 "webrtc-ice",
15778 "webrtc-mdns",
15779 "webrtc-media",
15780 "webrtc-sctp",
15781 "webrtc-srtp",
15782 "webrtc-util",
15783]
15784
15785[[package]]
15786name = "webrtc-data"
15787version = "0.6.0"
15788source = "registry+https://github.com/rust-lang/crates.io-index"
15789checksum = "0ef36a4d12baa6e842582fe9ec16a57184ba35e1a09308307b67d43ec8883100"
15790dependencies = [
15791 "bytes",
15792 "derive_builder",
15793 "log",
15794 "thiserror",
15795 "tokio",
15796 "webrtc-sctp",
15797 "webrtc-util",
15798]
15799
15800[[package]]
15801name = "webrtc-dtls"
15802version = "0.7.2"
15803source = "registry+https://github.com/rust-lang/crates.io-index"
15804checksum = "c4a00f4242f2db33307347bd5be53263c52a0331c96c14292118c9a6bb48d267"
15805dependencies = [
15806 "aes 0.6.0",
15807 "aes-gcm 0.10.3",
15808 "async-trait",
15809 "bincode",
15810 "block-modes",
15811 "byteorder",
15812 "ccm",
15813 "curve25519-dalek 3.2.0",
15814 "der-parser 8.2.0",
15815 "elliptic-curve 0.12.3",
15816 "hkdf",
15817 "hmac 0.12.1",
15818 "log",
15819 "p256",
15820 "p384",
15821 "rand 0.8.5",
15822 "rand_core 0.6.4",
15823 "rcgen 0.10.0",
15824 "ring 0.16.20",
15825 "rustls 0.19.1",
15826 "sec1 0.3.0",
15827 "serde",
15828 "sha1",
15829 "sha2 0.10.8",
15830 "signature 1.6.4",
15831 "subtle 2.4.1",
15832 "thiserror",
15833 "tokio",
15834 "webpki 0.21.4",
15835 "webrtc-util",
15836 "x25519-dalek 2.0.0",
15837 "x509-parser 0.13.2",
15838]
15839
15840[[package]]
15841name = "webrtc-ice"
15842version = "0.9.1"
15843source = "registry+https://github.com/rust-lang/crates.io-index"
15844checksum = "465a03cc11e9a7d7b4f9f99870558fe37a102b65b93f8045392fef7c67b39e80"
15845dependencies = [
15846 "arc-swap",
15847 "async-trait",
15848 "crc",
15849 "log",
15850 "rand 0.8.5",
15851 "serde",
15852 "serde_json",
15853 "stun",
15854 "thiserror",
15855 "tokio",
15856 "turn",
15857 "url",
15858 "uuid",
15859 "waitgroup",
15860 "webrtc-mdns",
15861 "webrtc-util",
15862]
15863
15864[[package]]
15865name = "webrtc-mdns"
15866version = "0.5.2"
15867source = "registry+https://github.com/rust-lang/crates.io-index"
15868checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106"
15869dependencies = [
15870 "log",
15871 "socket2 0.4.10",
15872 "thiserror",
15873 "tokio",
15874 "webrtc-util",
15875]
15876
15877[[package]]
15878name = "webrtc-media"
15879version = "0.5.1"
15880source = "registry+https://github.com/rust-lang/crates.io-index"
15881checksum = "f72e1650a8ae006017d1a5280efb49e2610c19ccc3c0905b03b648aee9554991"
15882dependencies = [
15883 "byteorder",
15884 "bytes",
15885 "rand 0.8.5",
15886 "rtp",
15887 "thiserror",
15888]
15889
15890[[package]]
15891name = "webrtc-sctp"
15892version = "0.7.0"
15893source = "registry+https://github.com/rust-lang/crates.io-index"
15894checksum = "0d47adcd9427eb3ede33d5a7f3424038f63c965491beafcc20bc650a2f6679c0"
15895dependencies = [
15896 "arc-swap",
15897 "async-trait",
15898 "bytes",
15899 "crc",
15900 "log",
15901 "rand 0.8.5",
15902 "thiserror",
15903 "tokio",
15904 "webrtc-util",
15905]
15906
15907[[package]]
15908name = "webrtc-srtp"
15909version = "0.9.1"
15910source = "registry+https://github.com/rust-lang/crates.io-index"
15911checksum = "6183edc4c1c6c0175f8812eefdce84dfa0aea9c3ece71c2bf6ddd3c964de3da5"
15912dependencies = [
15913 "aead 0.4.3",
15914 "aes 0.7.5",
15915 "aes-gcm 0.9.4",
15916 "async-trait",
15917 "byteorder",
15918 "bytes",
15919 "ctr 0.8.0",
15920 "hmac 0.11.0",
15921 "log",
15922 "rtcp",
15923 "rtp",
15924 "sha-1",
15925 "subtle 2.4.1",
15926 "thiserror",
15927 "tokio",
15928 "webrtc-util",
15929]
15930
15931[[package]]
15932name = "webrtc-util"
15933version = "0.7.0"
15934source = "registry+https://github.com/rust-lang/crates.io-index"
15935checksum = "93f1db1727772c05cf7a2cfece52c3aca8045ca1e176cd517d323489aa3c6d87"
15936dependencies = [
15937 "async-trait",
15938 "bitflags 1.3.2",
15939 "bytes",
15940 "cc",
15941 "ipnet",
15942 "lazy_static",
15943 "libc",
15944 "log",
15945 "nix",
15946 "rand 0.8.5",
15947 "thiserror",
15948 "tokio",
15949 "winapi",
15950]
15951
15952[[package]]
15953name = "westend-runtime"15779name = "westend-runtime"
15954version = "4.0.0"15780version = "10.0.0"
15955source = "registry+https://github.com/rust-lang/crates.io-index"15781source = "registry+https://github.com/rust-lang/crates.io-index"
15956checksum = "e833bb935995cb8da9848b974f37801c66163502929ecf22ca15878b8e8edbb7"15782checksum = "3ef1f629f711d7d110a1d13a12d3b4ab8fdc4ec3f97abbe9d1f0d248014a9e72"
15957dependencies = [15783dependencies = [
15958 "binary-merkle-tree",15784 "binary-merkle-tree",
15959 "bitvec",15785 "bitvec",
15983 "pallet-elections-phragmen",15809 "pallet-elections-phragmen",
15984 "pallet-fast-unstake",15810 "pallet-fast-unstake",
15985 "pallet-grandpa",15811 "pallet-grandpa",
15986 "pallet-identity 25.0.0",15812 "pallet-identity 31.0.0",
15987 "pallet-im-online",15813 "pallet-im-online",
15988 "pallet-indices",15814 "pallet-indices",
15989 "pallet-membership",15815 "pallet-membership",
15999 "pallet-proxy",15825 "pallet-proxy",
16000 "pallet-recovery",15826 "pallet-recovery",
16001 "pallet-referenda",15827 "pallet-referenda",
15828 "pallet-root-testing",
16002 "pallet-scheduler",15829 "pallet-scheduler",
16003 "pallet-session",15830 "pallet-session",
16004 "pallet-session-benchmarking",15831 "pallet-session-benchmarking",
1605715884
16058[[package]]15885[[package]]
16059name = "westend-runtime-constants"15886name = "westend-runtime-constants"
16060version = "4.0.0"15887version = "10.0.0"
16061source = "registry+https://github.com/rust-lang/crates.io-index"15888source = "registry+https://github.com/rust-lang/crates.io-index"
16062checksum = "682c32c5f5e6d51c431bf66c33fc502c66e7b25488c0bd92f5ee020c329f2beb"15889checksum = "38ee9606d7d954aef2b22107e80fc128a467cd8d6f1d347f64e417f88b2833c8"
16063dependencies = [15890dependencies = [
16064 "frame-support",15891 "frame-support",
16065 "polkadot-primitives",15892 "polkadot-primitives",
16069 "sp-runtime",15896 "sp-runtime",
16070 "sp-weights",15897 "sp-weights",
16071 "staging-xcm",15898 "staging-xcm",
15899 "staging-xcm-builder",
16072]15900]
1607315901
16074[[package]]15902[[package]]
16080 "either",15908 "either",
16081 "home",15909 "home",
16082 "once_cell",15910 "once_cell",
16083 "rustix 0.38.25",15911 "rustix 0.38.34",
16084]15912]
1608515913
16086[[package]]15914[[package]]
16087name = "wide"15915name = "wide"
16088version = "0.7.13"15916version = "0.7.19"
16089source = "registry+https://github.com/rust-lang/crates.io-index"15917source = "registry+https://github.com/rust-lang/crates.io-index"
16090checksum = "c68938b57b33da363195412cfc5fc37c9ed49aa9cfe2156fde64b8d2c9498242"15918checksum = "aab6594190de06d718a5dbc5fa781ab62f8903797056480e549ca74add6b7065"
16091dependencies = [15919dependencies = [
16092 "bytemuck",15920 "bytemuck",
16093 "safe_arch",15921 "safe_arch",
16094]15922]
1609515923
16096[[package]]15924[[package]]
16097name = "widestring"15925name = "widestring"
16098version = "1.0.2"15926version = "1.1.0"
16099source = "registry+https://github.com/rust-lang/crates.io-index"15927source = "registry+https://github.com/rust-lang/crates.io-index"
16100checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8"15928checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311"
1610115929
16102[[package]]15930[[package]]
16103name = "winapi"15931name = "winapi"
1611715945
16118[[package]]15946[[package]]
16119name = "winapi-util"15947name = "winapi-util"
16120version = "0.1.6"15948version = "0.1.8"
16121source = "registry+https://github.com/rust-lang/crates.io-index"15949source = "registry+https://github.com/rust-lang/crates.io-index"
16122checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"15950checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
16123dependencies = [15951dependencies = [
16124 "winapi",15952 "windows-sys 0.52.0",
16125]15953]
1612615954
16127[[package]]15955[[package]]
16136source = "registry+https://github.com/rust-lang/crates.io-index"15964source = "registry+https://github.com/rust-lang/crates.io-index"
16137checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9"15965checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9"
16138dependencies = [15966dependencies = [
16139 "windows-core",15967 "windows-core 0.51.1",
16140 "windows-targets 0.48.5",15968 "windows-targets 0.48.5",
16141]15969]
1614215970
16150]15978]
1615115979
16152[[package]]15980[[package]]
15981name = "windows-core"
15982version = "0.52.0"
15983source = "registry+https://github.com/rust-lang/crates.io-index"
15984checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
15985dependencies = [
15986 "windows-targets 0.52.5",
15987]
15988
15989[[package]]
16153name = "windows-sys"15990name = "windows-sys"
16154version = "0.45.0"15991version = "0.45.0"
16155source = "registry+https://github.com/rust-lang/crates.io-index"15992source = "registry+https://github.com/rust-lang/crates.io-index"
16168]16005]
1616916006
16170[[package]]16007[[package]]
16008name = "windows-sys"
16009version = "0.52.0"
16010source = "registry+https://github.com/rust-lang/crates.io-index"
16011checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
16012dependencies = [
16013 "windows-targets 0.52.5",
16014]
16015
16016[[package]]
16171name = "windows-targets"16017name = "windows-targets"
16172version = "0.42.2"16018version = "0.42.2"
16173source = "registry+https://github.com/rust-lang/crates.io-index"16019source = "registry+https://github.com/rust-lang/crates.io-index"
16198]16044]
1619916045
16200[[package]]16046[[package]]
16047name = "windows-targets"
16048version = "0.52.5"
16049source = "registry+https://github.com/rust-lang/crates.io-index"
16050checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
16051dependencies = [
16052 "windows_aarch64_gnullvm 0.52.5",
16053 "windows_aarch64_msvc 0.52.5",
16054 "windows_i686_gnu 0.52.5",
16055 "windows_i686_gnullvm",
16056 "windows_i686_msvc 0.52.5",
16057 "windows_x86_64_gnu 0.52.5",
16058 "windows_x86_64_gnullvm 0.52.5",
16059 "windows_x86_64_msvc 0.52.5",
16060]
16061
16062[[package]]
16201name = "windows_aarch64_gnullvm"16063name = "windows_aarch64_gnullvm"
16202version = "0.42.2"16064version = "0.42.2"
16203source = "registry+https://github.com/rust-lang/crates.io-index"16065source = "registry+https://github.com/rust-lang/crates.io-index"
16210checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"16072checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1621116073
16212[[package]]16074[[package]]
16075name = "windows_aarch64_gnullvm"
16076version = "0.52.5"
16077source = "registry+https://github.com/rust-lang/crates.io-index"
16078checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
16079
16080[[package]]
16213name = "windows_aarch64_msvc"16081name = "windows_aarch64_msvc"
16214version = "0.42.2"16082version = "0.42.2"
16215source = "registry+https://github.com/rust-lang/crates.io-index"16083source = "registry+https://github.com/rust-lang/crates.io-index"
16222checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"16090checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1622316091
16224[[package]]16092[[package]]
16093name = "windows_aarch64_msvc"
16094version = "0.52.5"
16095source = "registry+https://github.com/rust-lang/crates.io-index"
16096checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
16097
16098[[package]]
16225name = "windows_i686_gnu"16099name = "windows_i686_gnu"
16226version = "0.42.2"16100version = "0.42.2"
16227source = "registry+https://github.com/rust-lang/crates.io-index"16101source = "registry+https://github.com/rust-lang/crates.io-index"
16234checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"16108checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1623516109
16236[[package]]16110[[package]]
16111name = "windows_i686_gnu"
16112version = "0.52.5"
16113source = "registry+https://github.com/rust-lang/crates.io-index"
16114checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
16115
16116[[package]]
16117name = "windows_i686_gnullvm"
16118version = "0.52.5"
16119source = "registry+https://github.com/rust-lang/crates.io-index"
16120checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
16121
16122[[package]]
16237name = "windows_i686_msvc"16123name = "windows_i686_msvc"
16238version = "0.42.2"16124version = "0.42.2"
16239source = "registry+https://github.com/rust-lang/crates.io-index"16125source = "registry+https://github.com/rust-lang/crates.io-index"
16246checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"16132checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1624716133
16248[[package]]16134[[package]]
16135name = "windows_i686_msvc"
16136version = "0.52.5"
16137source = "registry+https://github.com/rust-lang/crates.io-index"
16138checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
16139
16140[[package]]
16249name = "windows_x86_64_gnu"16141name = "windows_x86_64_gnu"
16250version = "0.42.2"16142version = "0.42.2"
16251source = "registry+https://github.com/rust-lang/crates.io-index"16143source = "registry+https://github.com/rust-lang/crates.io-index"
16258checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"16150checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1625916151
16260[[package]]16152[[package]]
16153name = "windows_x86_64_gnu"
16154version = "0.52.5"
16155source = "registry+https://github.com/rust-lang/crates.io-index"
16156checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
16157
16158[[package]]
16261name = "windows_x86_64_gnullvm"16159name = "windows_x86_64_gnullvm"
16262version = "0.42.2"16160version = "0.42.2"
16263source = "registry+https://github.com/rust-lang/crates.io-index"16161source = "registry+https://github.com/rust-lang/crates.io-index"
16270checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"16168checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1627116169
16272[[package]]16170[[package]]
16171name = "windows_x86_64_gnullvm"
16172version = "0.52.5"
16173source = "registry+https://github.com/rust-lang/crates.io-index"
16174checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
16175
16176[[package]]
16273name = "windows_x86_64_msvc"16177name = "windows_x86_64_msvc"
16274version = "0.42.2"16178version = "0.42.2"
16275source = "registry+https://github.com/rust-lang/crates.io-index"16179source = "registry+https://github.com/rust-lang/crates.io-index"
16282checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"16186checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1628316187
16284[[package]]16188[[package]]
16189name = "windows_x86_64_msvc"
16190version = "0.52.5"
16191source = "registry+https://github.com/rust-lang/crates.io-index"
16192checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
16193
16194[[package]]
16285name = "winnow"16195name = "winnow"
16286version = "0.5.19"16196version = "0.5.40"
16287source = "registry+https://github.com/rust-lang/crates.io-index"16197source = "registry+https://github.com/rust-lang/crates.io-index"
16288checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b"16198checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
16289dependencies = [16199dependencies = [
16290 "memchr",16200 "memchr",
16291]16201]
1629216202
16293[[package]]16203[[package]]
16204name = "winnow"
16205version = "0.6.8"
16206source = "registry+https://github.com/rust-lang/crates.io-index"
16207checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d"
16208dependencies = [
16209 "memchr",
16210]
16211
16212[[package]]
16294name = "winreg"16213name = "winreg"
16295version = "0.50.0"16214version = "0.50.0"
16296source = "registry+https://github.com/rust-lang/crates.io-index"16215source = "registry+https://github.com/rust-lang/crates.io-index"
1632216241
16323[[package]]16242[[package]]
16324name = "x25519-dalek"16243name = "x25519-dalek"
16325version = "2.0.0"16244version = "2.0.1"
16326source = "registry+https://github.com/rust-lang/crates.io-index"16245source = "registry+https://github.com/rust-lang/crates.io-index"
16327checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"16246checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
16328dependencies = [16247dependencies = [
16329 "curve25519-dalek 4.1.1",16248 "curve25519-dalek 4.1.2",
16330 "rand_core 0.6.4",16249 "rand_core 0.6.4",
16331 "serde",16250 "serde",
16332 "zeroize",16251 "zeroize",
16333]
16334
16335[[package]]
16336name = "x509-parser"
16337version = "0.13.2"
16338source = "registry+https://github.com/rust-lang/crates.io-index"
16339checksum = "9fb9bace5b5589ffead1afb76e43e34cff39cd0f3ce7e170ae0c29e53b88eb1c"
16340dependencies = [
16341 "asn1-rs 0.3.1",
16342 "base64 0.13.1",
16343 "data-encoding",
16344 "der-parser 7.0.0",
16345 "lazy_static",
16346 "nom",
16347 "oid-registry 0.4.0",
16348 "ring 0.16.20",
16349 "rusticata-macros",
16350 "thiserror",
16351 "time",
16352]16252]
1635316253
16354[[package]]16254[[package]]
16357source = "registry+https://github.com/rust-lang/crates.io-index"16257source = "registry+https://github.com/rust-lang/crates.io-index"
16358checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8"16258checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8"
16359dependencies = [16259dependencies = [
16360 "asn1-rs 0.5.2",16260 "asn1-rs",
16361 "base64 0.13.1",16261 "base64 0.13.1",
16362 "data-encoding",16262 "data-encoding",
16363 "der-parser 8.2.0",16263 "der-parser",
16364 "lazy_static",16264 "lazy_static",
16365 "nom",16265 "nom",
16366 "oid-registry 0.6.1",16266 "oid-registry",
16367 "rusticata-macros",16267 "rusticata-macros",
16368 "thiserror",16268 "thiserror",
16369 "time",16269 "time",
16370]16270]
1637116271
16372[[package]]16272[[package]]
16373name = "xcm-procedural"16273name = "xcm-procedural"
16374version = "4.0.0"16274version = "8.0.0"
16375source = "registry+https://github.com/rust-lang/crates.io-index"16275source = "registry+https://github.com/rust-lang/crates.io-index"
16376checksum = "401e2b62628da9246dececb06fe58118196557dd8deb9ce12d95cc4aaf56003f"16276checksum = "f4717a97970a9cda70d7db53cf50d2615c2f6f6b7c857445325b4a39ea7aa2cd"
16377dependencies = [16277dependencies = [
16378 "Inflector",16278 "Inflector",
16379 "proc-macro2",16279 "proc-macro2",
16380 "quote",16280 "quote",
16381 "syn 2.0.39",16281 "syn 2.0.65",
16382]16282]
1638316283
16384[[package]]16284[[package]]
16390 "futures",16290 "futures",
16391 "log",16291 "log",
16392 "nohash-hasher",16292 "nohash-hasher",
16393 "parking_lot 0.12.1",16293 "parking_lot 0.12.2",
16394 "rand 0.8.5",16294 "rand",
16395 "static_assertions",16295 "static_assertions",
16396]16296]
1639716297
1640616306
16407[[package]]16307[[package]]
16408name = "zerocopy"16308name = "zerocopy"
16409version = "0.7.26"16309version = "0.7.34"
16410source = "registry+https://github.com/rust-lang/crates.io-index"16310source = "registry+https://github.com/rust-lang/crates.io-index"
16411checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0"16311checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087"
16412dependencies = [16312dependencies = [
16413 "zerocopy-derive",16313 "zerocopy-derive",
16414]16314]
1641516315
16416[[package]]16316[[package]]
16417name = "zerocopy-derive"16317name = "zerocopy-derive"
16418version = "0.7.26"16318version = "0.7.34"
16419source = "registry+https://github.com/rust-lang/crates.io-index"16319source = "registry+https://github.com/rust-lang/crates.io-index"
16420checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f"16320checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
16421dependencies = [16321dependencies = [
16422 "proc-macro2",16322 "proc-macro2",
16423 "quote",16323 "quote",
16424 "syn 2.0.39",16324 "syn 2.0.65",
16425]16325]
1642616326
16427[[package]]16327[[package]]
16441dependencies = [16341dependencies = [
16442 "proc-macro2",16342 "proc-macro2",
16443 "quote",16343 "quote",
16444 "syn 2.0.39",16344 "syn 2.0.65",
16445]16345]
1644616346
16447[[package]]16347[[package]]
1648416384
16485[[package]]16385[[package]]
16486name = "zstd-sys"16386name = "zstd-sys"
16487version = "2.0.9+zstd.1.5.5"16387version = "2.0.10+zstd.1.5.6"
16488source = "registry+https://github.com/rust-lang/crates.io-index"16388source = "registry+https://github.com/rust-lang/crates.io-index"
16489checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"16389checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
16490dependencies = [16390dependencies = [
16491 "cc",16391 "cc",
16492 "pkg-config",16392 "pkg-config",
modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -31,10 +31,10 @@
 [workspace.dependencies]
 # Unique
 app-promotion-rpc = { path = "primitives/app_promotion_rpc", default-features = false }
-evm-coder = { version = "0.4.2", default-features = false, features = ['bondrewd'] }
+evm-coder = { version = "0.4.3", default-features = false, features = ['bondrewd'] }
 pallet-app-promotion = { path = "pallets/app-promotion", default-features = false }
 pallet-balances-adapter = { default-features = false, path = "pallets/balances-adapter" }
-pallet-charge-transaction = { package = "pallet-template-transaction-payment", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.3.0" }
+pallet-charge-transaction = { package = "pallet-template-transaction-payment", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.9.0" }
 pallet-collator-selection = { default-features = false, path = "pallets/collator-selection" }
 pallet-common = { default-features = false, path = "pallets/common" }
 pallet-configuration = { default-features = false, path = "pallets/configuration" }
@@ -61,7 +61,7 @@
 up-data-structs = { path = "primitives/data-structs", default-features = false }
 up-pov-estimate-rpc = { path = "primitives/pov-estimate-rpc", default-features = false }
 up-rpc = { path = "primitives/rpc", default-features = false }
-up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.3.0" }
+up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.9.0" }
 
 # Unique: Runtimes
 opal-runtime = { path = "runtime/opal" }
@@ -69,149 +69,154 @@
 unique-runtime = { path = "runtime/unique" }
 
 # Frontier (Unique patches over the Parity version)
-fc-api = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-fc-consensus = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-fc-db = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-fc-mapping-sync = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
+fc-api = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+fc-consensus = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+fc-db = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+fc-mapping-sync = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
 fp-self-contained = { default-features = false, features = [
 	"serde",
-], git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
-pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }
+], git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
+pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.9.0" }
 
 # Parity
 codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.6.5" }
-cumulus-client-cli = "0.4.0"
-cumulus-client-collator = "0.4.0"
-cumulus-client-consensus-aura = "0.4.0"
-cumulus-client-consensus-common = "0.4.0"
-cumulus-client-consensus-proposer = "0.4.0"
-cumulus-client-network = "0.4.0"
-cumulus-client-service = "0.4.0"
-cumulus-pallet-aura-ext = { default-features = false, version = "0.4.0" }
-cumulus-pallet-dmp-queue = { default-features = false, version = "0.4.0" }
-cumulus-pallet-parachain-system = { default-features = false, version = "0.4.0" }
-cumulus-pallet-xcm = { default-features = false, version = "0.4.0" }
-cumulus-pallet-xcmp-queue = { default-features = false, version = "0.4.0" }
-cumulus-primitives-aura = { default-features = false, version = "0.4.0" }
-cumulus-primitives-core = { default-features = false, version = "0.4.0" }
-cumulus-primitives-parachain-inherent = { default-features = false, version = "0.4.0" }
-cumulus-primitives-timestamp = { default-features = false, version = "0.4.0" }
-cumulus-primitives-utility = { default-features = false, version = "0.4.0" }
-cumulus-relay-chain-inprocess-interface = "0.4.0"
-cumulus-relay-chain-interface = "0.4.0"
-cumulus-relay-chain-minimal-node = "0.4.0"
-frame-executive = { default-features = false, version = "25.0.0" }
-frame-support = { default-features = false, version = "25.0.0" }
-frame-system = { default-features = false, version = "25.0.0" }
-frame-system-rpc-runtime-api = { default-features = false, version = "23.0.0" }
-pallet-aura = { default-features = false, version = "24.0.0" }
-pallet-authorship = { default-features = false, version = "25.0.0" }
-pallet-balances = { default-features = false, version = "25.0.0" }
-pallet-collective = { default-features = false, version = "25.0.0" }
-pallet-democracy = { default-features = false, version = "25.0.0" }
-pallet-membership = { default-features = false, version = "25.0.0" }
-pallet-preimage = { default-features = false, version = "25.0.0" }
-pallet-ranked-collective = { default-features = false, version = "25.0.0" }
-pallet-referenda = { default-features = false, version = "25.0.0" }
-pallet-scheduler = { default-features = false, version = "26.0.0" }
-pallet-session = { default-features = false, version = "25.0.0" }
-pallet-state-trie-migration = { default-features = false, version = "26.0.0" }
-pallet-sudo = { default-features = false, version = "25.0.0" }
-pallet-timestamp = { default-features = false, version = "24.0.0" }
-pallet-transaction-payment = { default-features = false, version = "25.0.0" }
-pallet-transaction-payment-rpc = "27.0.0"
-pallet-transaction-payment-rpc-runtime-api = { default-features = false, version = "25.0.0" }
-pallet-treasury = { default-features = false, version = "24.0.0" }
-pallet-utility = { default-features = false, version = "25.0.0" }
-pallet-xcm = { default-features = false, version = "4.0.0" }
+cumulus-client-cli = "0.10.0"
+cumulus-client-collator = "0.10.0"
+cumulus-client-consensus-aura = "0.10.0"
+cumulus-client-consensus-common = "0.10.0"
+cumulus-client-consensus-proposer = "0.10.0"
+cumulus-client-network = "0.10.0"
+cumulus-client-service = "0.10.0"
+cumulus-client-parachain-inherent = "0.4.0"
+cumulus-pallet-aura-ext = { default-features = false, version = "0.10.0" }
+cumulus-pallet-dmp-queue = { default-features = false, version = "0.10.0" }
+cumulus-pallet-parachain-system = { default-features = false, version = "0.10.0" }
+cumulus-pallet-xcm = { default-features = false, version = "0.10.0" }
+cumulus-pallet-xcmp-queue = { default-features = false, version = "0.10.0" }
+cumulus-primitives-aura = { default-features = false, version = "0.10.0" }
+cumulus-primitives-core = { default-features = false, version = "0.10.0" }
+cumulus-primitives-parachain-inherent = { default-features = false, version = "0.10.0" }
+cumulus-primitives-timestamp = { default-features = false, version = "0.10.0" }
+cumulus-primitives-utility = { default-features = false, version = "0.10.0" }
+cumulus-relay-chain-inprocess-interface = "0.10.0"
+cumulus-relay-chain-interface = "0.10.0"
+cumulus-relay-chain-minimal-node = "0.10.0"
+parachains-common = { default-features = false, version = "10.0.0"}
+frame-executive = { default-features = false, version = "31.0.0" }
+frame-support = { default-features = false, version = "31.0.0" }
+frame-system = { default-features = false, version = "31.0.0" }
+frame-system-rpc-runtime-api = { default-features = false, version = "29.0.0" }
+pallet-aura = { default-features = false, version = "30.0.0" }
+pallet-authorship = { default-features = false, version = "31.0.0" }
+pallet-balances = { default-features = false, version = "31.0.0" }
+pallet-collective = { default-features = false, version = "31.0.0" }
+pallet-democracy = { default-features = false, version = "31.0.0" }
+pallet-membership = { default-features = false, version = "31.0.0" }
+pallet-preimage = { default-features = false, version = "31.0.0" }
+pallet-ranked-collective = { default-features = false, version = "31.0.0" }
+pallet-referenda = { default-features = false, version = "31.0.0" }
+pallet-scheduler = { default-features = false, version = "32.0.0" }
+pallet-session = { default-features = false, version = "31.0.0" }
+pallet-state-trie-migration = { default-features = false, version = "32.0.0" }
+pallet-sudo = { default-features = false, version = "31.0.0" }
+pallet-timestamp = { default-features = false, version = "30.0.0" }
+pallet-transaction-payment = { default-features = false, version = "31.0.0" }
+pallet-transaction-payment-rpc = "33.0.0"
+pallet-transaction-payment-rpc-runtime-api = { default-features = false, version = "31.0.0" }
+pallet-treasury = { default-features = false, version = "30.0.0" }
+pallet-utility = { default-features = false, version = "31.0.0" }
+pallet-xcm = { default-features = false, version = "10.0.1" }
+pallet-message-queue = { default-features = false, version = "34.0.0" }
 parity-scale-codec = { version = "3.6.5", features = ["derive"], default-features = false }
-polkadot-cli = "4.0.0"
-polkadot-parachain-primitives = { default-features = false, version = "3.0.0" }
-polkadot-primitives = "4.0.0"
-polkadot-runtime-common = { default-features = false, version = "4.0.0" }
-polkadot-service = "4.0.0"
-sc-basic-authorship = "0.31.0"
-sc-chain-spec = "24.0.0"
-sc-cli = "0.33.0"
-sc-client-api = "25.0.0"
-sc-consensus = "0.30.0"
-sc-consensus-manual-seal = "0.32.0"
-sc-executor = "0.29.0"
-sc-network = "0.31.0"
-sc-network-sync = "0.30.0"
-sc-rpc = "26.0.0"
-sc-rpc-api = "0.30.0"
-sc-service = "0.32.0"
-sc-sysinfo = "24.0.0"
-sc-telemetry = "12.0.0"
-sc-tracing = "25.0.0"
-sc-transaction-pool = "25.0.0"
+polkadot-cli = "10.0.0"
+polkadot-parachain-primitives = { default-features = false, version = "9.0.0" }
+polkadot-primitives = "10.0.0"
+polkadot-runtime-common = { default-features = false, version = "10.0.0" }
+polkadot-service = "10.0.0"
+sc-basic-authorship = "0.37.0"
+sc-chain-spec = "30.0.0"
+sc-cli = "0.39.0"
+sc-client-api = "31.0.0"
+sc-consensus = "0.36.0"
+sc-consensus-manual-seal = "0.38.0"
+sc-executor = "0.35.0"
+sc-network = "0.37.0"
+sc-network-sync = "0.36.0"
+sc-rpc = "32.0.0"
+sc-rpc-api = "0.36.0"
+sc-service = "0.38.0"
+sc-sysinfo = "30.0.0"
+sc-telemetry = "17.0.0"
+sc-tracing = "31.0.0"
+sc-transaction-pool = "31.0.0"
 scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
-sp-api = { default-features = false, version = "23.0.0" }
-sp-arithmetic = { default-features = false, version = "20.0.0" }
-sp-block-builder = { default-features = false, version = "23.0.0" }
-sp-blockchain = "25.0.0"
-sp-consensus-aura = { default-features = false, version = "0.29.0" }
-sp-core = { default-features = false, version = "25.0.0" }
-sp-externalities = "0.23.0"
-sp-inherents = { default-features = false, version = "23.0.0" }
-sp-io = { default-features = false, version = "27.0.0" }
-sp-keystore = "0.31.0"
-sp-offchain = { default-features = false, version = "23.0.0" }
-sp-runtime = { default-features = false, version = "28.0.0" }
-sp-session = { default-features = false, version = "24.0.0" }
-sp-staking = { default-features = false, version = "23.0.0" }
-sp-state-machine = "0.32.0"
-sp-std = { default-features = false, version = "12.0.0" }
-sp-storage = { default-features = false, version = "17.0.0" }
-sp-timestamp = "23.0.0"
-sp-tracing = "14.0.0"
-sp-transaction-pool = { default-features = false, version = "23.0.0" }
-sp-trie = { default-features = false, version = "26.0.0" }
-sp-version = { default-features = false, version = "26.0.0" }
-sp-weights = { default-features = false, version = "24.0.0" }
-staging-parachain-info = { default-features = false, version = "0.4.0" }
-staging-xcm = { default-features = false, version = "4.0.0" }
-staging-xcm-builder = { default-features = false, version = "4.0.0" }
-staging-xcm-executor = { default-features = false, version = "4.0.0" }
-substrate-frame-rpc-system = "25.0.0"
-substrate-prometheus-endpoint = "0.16.0"
+sp-api = { default-features = false, version = "29.0.0" }
+sp-arithmetic = { default-features = false, version = "25.0.0" }
+sp-block-builder = { default-features = false, version = "29.0.0" }
+sp-blockchain = "31.0.0"
+sp-consensus-aura = { default-features = false, version = "0.35.0" }
+sp-core = { default-features = false, version = "31.0.0" }
+sp-externalities = "0.27.0"
+sp-inherents = { default-features = false, version = "29.0.0" }
+sp-io = { default-features = false, version = "33.0.0" }
+sp-keystore = "0.37.0"
+sp-offchain = { default-features = false, version = "29.0.0" }
+sp-runtime = { default-features = false, version = "34.0.0" }
+sp-session = { default-features = false, version = "30.0.0" }
+sp-staking = { default-features = false, version = "29.0.0" }
+sp-state-machine = "0.38.0"
+sp-std = { default-features = false, version = "14.0.0" }
+sp-storage = { default-features = false, version = "20.0.0" }
+sp-timestamp = "29.0.0"
+sp-tracing = "16.0.0"
+sp-transaction-pool = { default-features = false, version = "29.0.0" }
+sp-trie = { default-features = false, version = "32.0.0" }
+sp-version = { default-features = false, version = "32.0.0" }
+sp-weights = { default-features = false, version = "30.0.0" }
+sp-genesis-builder = { default-features = false, version = "0.10.0" }
+staging-parachain-info = { default-features = false, version = "0.10.0" }
+staging-xcm = { default-features = false, version = "10.0.0" }
+staging-xcm-builder = { default-features = false, version = "10.0.0" }
+staging-xcm-executor = { default-features = false, version = "10.0.0" }
+substrate-frame-rpc-system = "31.0.0"
+substrate-prometheus-endpoint = "0.17.0"
 
 # Parity: Build utils
-substrate-build-script-utils = "9.0.0"
-substrate-wasm-builder = "14.0.0"
+substrate-build-script-utils = "11.0.0"
+substrate-wasm-builder = "20.0.0"
 
 # Parity: Benchmarking
-frame-benchmarking = { default-features = false, version = "25.0.0" }
-frame-benchmarking-cli = "29.0.0"
-frame-system-benchmarking = { default-features = false, version = "25.0.0" }
+frame-benchmarking = { default-features = false, version = "31.0.0" }
+frame-benchmarking-cli = "35.0.0"
+frame-system-benchmarking = { default-features = false, version = "31.0.0" }
 
 # Parity: Try Runtime
-frame-try-runtime = { default-features = false, version = "0.31.0" }
-try-runtime-cli = "0.35.0"
+frame-try-runtime = { default-features = false, version = "0.37.0" }
+try-runtime-cli = "0.41.0"
 
 # ORML
-orml-traits = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" }
-orml-vesting = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" }
-orml-xcm-support = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" }
-orml-xtokens = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" }
+orml-traits = { version = "0.9.1", default-features = false }
+orml-vesting = { version = "0.9.1", default-features = false }
+orml-xcm-support = { version = "0.9.1", default-features = false }
+orml-xtokens = { version = "0.9.1", default-features = false }
 
 # Other
 derivative = { version = "2.2.0", features = ["use_core"] }
-ethereum = { version = "0.14.0", default-features = false }
-evm-core = { git = "https://github.com/rust-blockchain/evm", rev = "b7b82c7e1fc57b7449d6dfa6826600de37cc1e65", default-features = false }
+ethereum = { version = "0.15.0", default-features = false, features = ["with-codec"] }
+evm-core = { version = "0.41.0", default-features = false }
 hex-literal = "0.4.1"
 impl-trait-for-tuples = "0.2.2"
-jsonrpsee = { version = "0.16.3", features = ["macros", "server"] }
+jsonrpsee = { version = "0.22.5", features = ["macros", "server"] }
 log = { version = "0.4.20", default-features = false }
 num_enum = { version = "0.7.0", default-features = false }
 serde = { default-features = false, features = ['derive'], version = "1.0.188" }
+serde_json = "1"
 smallvec = "1.11.1"
modifiedclient/rpc/Cargo.tomldiffbeforeafterboth
--- a/client/rpc/Cargo.toml
+++ b/client/rpc/Cargo.toml
@@ -5,8 +5,7 @@
 version = "0.1.4"
 
 [dependencies]
-anyhow = "1.0.75"
-jsonrpsee = { version = "0.16.3", features = ["macros", "server"] }
+jsonrpsee = { workspace = true }
 parity-scale-codec = { workspace = true }
 trie-db = { version = "0.27.1", default-features = false }
 zstd = { version = "0.12.4", default-features = false }
modifiedclient/rpc/src/lib.rsdiffbeforeafterboth
--- a/client/rpc/src/lib.rs
+++ b/client/rpc/src/lib.rs
@@ -17,14 +17,13 @@
 // Original License
 use std::sync::Arc;
 
-use anyhow::anyhow;
 use app_promotion_rpc::AppPromotionApi as AppPromotionRuntimeApi;
 pub use app_promotion_unique_rpc::AppPromotionApiServer;
-use jsonrpsee::{core::RpcResult as Result, proc_macros::rpc};
+use jsonrpsee::{core::RpcResult as Result, proc_macros::rpc, types::ErrorCode};
 use parity_scale_codec::Decode;
-use sp_api::{ApiExt, BlockT, ProvideRuntimeApi};
+use sp_api::{ApiExt, ProvideRuntimeApi};
 use sp_blockchain::HeaderBackend;
-use sp_runtime::traits::{AtLeast32BitUnsigned, Member};
+use sp_runtime::traits::{AtLeast32BitUnsigned, Block as BlockT, Member};
 use up_data_structs::{
 	CollectionId, CollectionLimits, CollectionStats, Property, PropertyKeyPermission,
 	RpcCollection, TokenChild, TokenData, TokenId,
@@ -345,7 +344,7 @@
 				api_version
 			} else {
 				// unreachable for our runtime
-				return Err(anyhow!("api is not available").into())
+				return Err(ErrorCode::MethodNotFound.into())
 			};
 
 			let result = $(if _api_version < $ver {
@@ -354,8 +353,8 @@
 			{ api.$method_name(at, $($($map)? ($name)),*) };
 
 			Ok(result
-				.map_err(|e| anyhow!("unable to query: {e}"))?
-				.map_err(|e| anyhow!("runtime error: {e:?}"))$(.map($mapper))??)
+				.map_err(|_| ErrorCode::InternalError /* TODO proper error */)?
+				.map_err(|_| ErrorCode::InvalidParams)$(.map($mapper))??)
 		}
 	};
 }
@@ -513,7 +512,7 @@
 	{
 		api_version
 	} else {
-		return Err(anyhow!("api is not available").into());
+		return Err(ErrorCode::MethodNotFound.into());
 	};
 	let result = if api_version >= 3 {
 		api.token_data(at, collection, token_id, string_keys_to_bytes_keys(keys))
@@ -537,8 +536,8 @@
 			})
 	};
 	Ok(result
-		.map_err(|e| anyhow!("unable to query: {e}"))?
-		.map_err(|e| anyhow!("runtime error: {e:?}"))?)
+		.map_err(|_| ErrorCode::InternalError /* TODO proper error */)?
+		.map_err(|_| ErrorCode::InvalidParams)?)
 }
 
 fn string_keys_to_bytes_keys(keys: Option<Vec<String>>) -> Option<Vec<Vec<u8>>> {
modifiedjs-packages/tests/pallet-presence.test.tsdiffbeforeafterboth
--- a/js-packages/tests/pallet-presence.test.ts
+++ b/js-packages/tests/pallet-presence.test.ts
@@ -49,6 +49,7 @@
   'configuration',
   'xtokens',
   'maintenance',
+  'messagequeue',
 ];
 
 // Pallets that depend on consensus and governance configuration
modifiednode/cli/Cargo.tomldiffbeforeafterboth
--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -42,6 +42,7 @@
 cumulus-relay-chain-inprocess-interface = { workspace = true }
 cumulus-relay-chain-interface = { workspace = true }
 cumulus-relay-chain-minimal-node = { workspace = true }
+cumulus-client-parachain-inherent = { workspace = true }
 frame-benchmarking = { workspace = true }
 frame-benchmarking-cli = { workspace = true }
 opal-runtime = { workspace = true, optional = true }
@@ -66,6 +67,7 @@
 sc-transaction-pool = { workspace = true }
 serde = { workspace = true }
 sp-api = { workspace = true }
+sp-state-machine = { workspace = true }
 sp-block-builder = { workspace = true }
 sp-blockchain = { workspace = true }
 sp-consensus-aura = { workspace = true }
modifiednode/cli/src/chain_spec.rsdiffbeforeafterboth
--- a/node/cli/src/chain_spec.rs
+++ b/node/cli/src/chain_spec.rs
@@ -14,8 +14,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
-use std::collections::BTreeMap;
-
+use default_runtime::WASM_BINARY;
 #[cfg(all(not(feature = "unique-runtime"), not(feature = "quartz-runtime")))]
 pub use opal_runtime as default_runtime;
 #[cfg(all(not(feature = "unique-runtime"), feature = "quartz-runtime"))]
@@ -23,7 +22,7 @@
 use sc_chain_spec::{ChainSpecExtension, ChainSpecGroup};
 use sc_service::ChainType;
 use serde::{Deserialize, Serialize};
-use serde_json::map::Map;
+use serde_json::{json, map::Map};
 use sp_core::{sr25519, Pair, Public};
 use sp_runtime::traits::{IdentifyAccount, Verify};
 #[cfg(feature = "unique-runtime")]
@@ -140,194 +139,103 @@
 {
 	AccountPublic::from(get_from_seed::<TPublic>(seed)).into_account()
 }
-
-#[cfg(not(feature = "unique-runtime"))]
-macro_rules! testnet_genesis {
-	(
-		$runtime:path,
-		$root_key:expr,
-		$initial_invulnerables:expr,
-		$endowed_accounts:expr,
-		$id:expr
-	) => {{
-		use $runtime::*;
-
-		RuntimeGenesisConfig {
-			system: SystemConfig {
-				code: WASM_BINARY
-					.expect("WASM binary was not build, please build it!")
-					.to_vec(),
-				..Default::default()
-			},
-			balances: BalancesConfig {
-				balances: $endowed_accounts
-					.iter()
-					.cloned()
-					// 1e13 UNQ
-					.map(|k| (k, 1 << 100))
-					.collect(),
-			},
-			sudo: SudoConfig {
-				key: Some($root_key),
-			},
 
-			vesting: VestingConfig { vesting: vec![] },
-			parachain_info: ParachainInfoConfig {
-				parachain_id: $id.into(),
-				..Default::default()
-			},
-			collator_selection: CollatorSelectionConfig {
-				invulnerables: $initial_invulnerables
-					.iter()
-					.cloned()
-					.map(|(acc, _)| acc)
-					.collect(),
-			},
-			session: SessionConfig {
-				keys: $initial_invulnerables
-					.into_iter()
-					.map(|(acc, aura)| {
-						(
-							acc.clone(),          // account id
-							acc,                  // validator id
-							SessionKeys { aura }, // session keys
-						)
-					})
-					.collect(),
-			},
-			evm: EVMConfig {
-				accounts: BTreeMap::new(),
-				..Default::default()
-			},
-			..Default::default()
+pub fn test_config(chain_id: &str, relay_chain: &str) -> DefaultChainSpec {
+	DefaultChainSpec::builder(
+		WASM_BINARY.expect("WASM binary was not build, please build it!"),
+		Extensions {
+			relay_chain: relay_chain.into(),
+			para_id: PARA_ID,
+		},
+	)
+	.with_id(&format!(
+		"{}_{}",
+		default_runtime::VERSION.spec_name,
+		chain_id
+	))
+	.with_name(&format!(
+		"{}{}",
+		default_runtime::VERSION.spec_name.to_uppercase(),
+		if cfg!(feature = "unique-runtime") {
+			""
+		} else {
+			" by UNIQUE"
 		}
-	}};
+	))
+	.with_properties(chain_properties())
+	.with_chain_type(ChainType::Development)
+	.with_genesis_config_patch(genesis_patch())
+	.build()
 }
 
-#[cfg(feature = "unique-runtime")]
-macro_rules! testnet_genesis {
-	(
-		$runtime:path,
-		$root_key:expr,
-		$initial_invulnerables:expr,
-		$endowed_accounts:expr,
-		$id:expr
-	) => {{
-		use $runtime::*;
+fn genesis_patch() -> serde_json::Value {
+	use default_runtime::*;
 
-		RuntimeGenesisConfig {
-			system: SystemConfig {
-				code: WASM_BINARY
-					.expect("WASM binary was not build, please build it!")
-					.to_vec(),
-				..Default::default()
-			},
-			balances: BalancesConfig {
-				balances: $endowed_accounts
-					.iter()
-					.cloned()
-					// 1e13 UNQ
-					.map(|k| (k, 1 << 100))
-					.collect(),
-			},
-			sudo: SudoConfig {
-				key: Some($root_key),
-			},
-			vesting: VestingConfig { vesting: vec![] },
-			parachain_info: ParachainInfoConfig {
-				parachain_id: $id.into(),
-				..Default::default()
-			},
-			aura: AuraConfig {
-				authorities: $initial_invulnerables
-					.into_iter()
-					.map(|(_, aura)| aura)
-					.collect(),
-			},
-			evm: EVMConfig {
-				accounts: BTreeMap::new(),
-				..Default::default()
-			},
-			..Default::default()
-		}
-	}};
-}
+	let invulnerables = ["Alice", "Bob"];
+
+	#[allow(unused_mut)]
+	let mut patch = json!({
+		"parachainInfo": {
+			"parachainId": PARA_ID,
+		},
+
+		"aura": {
+			"authorities": invulnerables.into_iter()
+				.map(get_from_seed::<AuraId>)
+				.collect::<Vec<_>>(),
+		},
 
-pub fn development_config() -> DefaultChainSpec {
-	let mut properties = Map::new();
-	properties.insert("tokenSymbol".into(), default_runtime::TOKEN_SYMBOL.into());
-	properties.insert("tokenDecimals".into(), default_runtime::DECIMALS.into());
-	properties.insert(
-		"ss58Format".into(),
-		default_runtime::SS58Prefix::get().into(),
-	);
+		"session": {
+			"keys": invulnerables.into_iter()
+				.map(|name| {
+					let account = get_account_id_from_seed::<sr25519::Public>(name);
+					let aura = get_from_seed::<AuraId>(name);
 
-	DefaultChainSpec::from_genesis(
-		// Name
-		format!(
-			"{}{}",
-			default_runtime::VERSION.spec_name.to_uppercase(),
-			if cfg!(feature = "unique-runtime") {
-				""
-			} else {
-				" by UNIQUE"
-			}
-		)
-		.as_str(),
-		// ID
-		format!("{}_dev", default_runtime::VERSION.spec_name).as_str(),
-		ChainType::Local,
-		move || {
-			testnet_genesis!(
-				default_runtime,
-				// Sudo account
-				get_account_id_from_seed::<sr25519::Public>("Alice"),
-				[
 					(
-						get_account_id_from_seed::<sr25519::Public>("Alice"),
-						get_from_seed::<AuraId>("Alice"),
-					),
-					(
-						get_account_id_from_seed::<sr25519::Public>("Bob"),
-						get_from_seed::<AuraId>("Bob"),
-					),
-				],
-				// Pre-funded accounts
-				vec![
-					get_account_id_from_seed::<sr25519::Public>("Alice"),
-					get_account_id_from_seed::<sr25519::Public>("Bob"),
-					get_account_id_from_seed::<sr25519::Public>("Charlie"),
-					get_account_id_from_seed::<sr25519::Public>("Dave"),
-					get_account_id_from_seed::<sr25519::Public>("Eve"),
-					get_account_id_from_seed::<sr25519::Public>("Ferdie"),
-					get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Bob//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Charlie//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Dave//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
-				],
-				PARA_ID
-			)
+						/*   account id: */ account.clone(),
+						/* validator id: */ account,
+						/* session keys: */ SessionKeys { aura },
+					)
+				})
+				.collect::<Vec<_>>()
 		},
-		// Bootnodes
-		vec![],
-		// Telemetry
-		None,
-		// Protocol ID
-		None,
-		None,
-		// Properties
-		Some(properties),
-		// Extensions
-		Extensions {
-			relay_chain: "rococo-dev".into(),
-			para_id: PARA_ID,
+
+		"sudo": {
+			"key": get_account_id_from_seed::<sr25519::Public>("Alice"),
 		},
-	)
+
+		"balances": {
+			"balances": &[
+				get_account_id_from_seed::<sr25519::Public>("Alice"),
+				get_account_id_from_seed::<sr25519::Public>("Bob"),
+				get_account_id_from_seed::<sr25519::Public>("Charlie"),
+				get_account_id_from_seed::<sr25519::Public>("Dave"),
+				get_account_id_from_seed::<sr25519::Public>("Eve"),
+				get_account_id_from_seed::<sr25519::Public>("Ferdie"),
+				get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
+				get_account_id_from_seed::<sr25519::Public>("Bob//stash"),
+				get_account_id_from_seed::<sr25519::Public>("Charlie//stash"),
+				get_account_id_from_seed::<sr25519::Public>("Dave//stash"),
+				get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
+				get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
+			].into_iter()
+			.map(|k| (k, /* ~1.2e+12 UNQ */ 1u128 << 100))
+			.collect::<Vec<_>>(),
+		},
+	});
+
+	#[cfg(feature = "unique-runtime")]
+	{
+		patch
+			.as_object_mut()
+			.expect("the genesis patch is always an object; qed")
+			.remove("session");
+	}
+
+	patch
 }
 
-pub fn local_testnet_config() -> DefaultChainSpec {
+fn chain_properties() -> sc_chain_spec::Properties {
 	let mut properties = Map::new();
 	properties.insert("tokenSymbol".into(), default_runtime::TOKEN_SYMBOL.into());
 	properties.insert("tokenDecimals".into(), default_runtime::DECIMALS.into());
@@ -336,67 +244,5 @@
 		default_runtime::SS58Prefix::get().into(),
 	);
 
-	DefaultChainSpec::from_genesis(
-		// Name
-		format!(
-			"{}{}",
-			default_runtime::VERSION.impl_name.to_uppercase(),
-			if cfg!(feature = "unique-runtime") {
-				""
-			} else {
-				" by UNIQUE"
-			}
-		)
-		.as_str(),
-		// ID
-		format!("{}_local", default_runtime::VERSION.spec_name).as_str(),
-		ChainType::Local,
-		move || {
-			testnet_genesis!(
-				default_runtime,
-				// Sudo account
-				get_account_id_from_seed::<sr25519::Public>("Alice"),
-				[
-					(
-						get_account_id_from_seed::<sr25519::Public>("Alice"),
-						get_from_seed::<AuraId>("Alice"),
-					),
-					(
-						get_account_id_from_seed::<sr25519::Public>("Bob"),
-						get_from_seed::<AuraId>("Bob"),
-					),
-				],
-				// Pre-funded accounts
-				vec![
-					get_account_id_from_seed::<sr25519::Public>("Alice"),
-					get_account_id_from_seed::<sr25519::Public>("Bob"),
-					get_account_id_from_seed::<sr25519::Public>("Charlie"),
-					get_account_id_from_seed::<sr25519::Public>("Dave"),
-					get_account_id_from_seed::<sr25519::Public>("Eve"),
-					get_account_id_from_seed::<sr25519::Public>("Ferdie"),
-					get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Bob//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Charlie//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Dave//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
-					get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
-				],
-				PARA_ID
-			)
-		},
-		// Bootnodes
-		vec![],
-		// Telemetry
-		None,
-		// Protocol ID
-		None,
-		None,
-		// Properties
-		Some(properties),
-		// Extensions
-		Extensions {
-			relay_chain: "westend-local".into(),
-			para_id: PARA_ID,
-		},
-	)
+	properties
 }
modifiednode/cli/src/cli.rsdiffbeforeafterboth
--- a/node/cli/src/cli.rs
+++ b/node/cli/src/cli.rs
@@ -24,7 +24,7 @@
 #[derive(Debug, Parser)]
 pub enum Subcommand {
 	/// Export the genesis state of the parachain.
-	ExportGenesisState(cumulus_client_cli::ExportGenesisStateCommand),
+	ExportGenesisState(cumulus_client_cli::ExportGenesisHeadCommand),
 
 	/// Export the genesis wasm of the parachain.
 	ExportGenesisWasm(cumulus_client_cli::ExportGenesisWasmCommand),
modifiednode/cli/src/command.rsdiffbeforeafterboth
--- a/node/cli/src/command.rs
+++ b/node/cli/src/command.rs
@@ -63,8 +63,8 @@
 
 fn load_spec(id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {
 	Ok(match id {
-		"dev" => Box::new(chain_spec::development_config()),
-		"" | "local" => Box::new(chain_spec::local_testnet_config()),
+		"dev" => Box::new(chain_spec::test_config("dev", "rococo-dev")),
+		"" | "local" => Box::new(chain_spec::test_config("local", "westend-local")),
 		path => {
 			let path = std::path::PathBuf::from(path);
 			#[allow(clippy::redundant_clone)]
@@ -337,10 +337,7 @@
 			Ok(cmd.run(components.client, components.backend, None))
 		}),
 		Some(Subcommand::ExportGenesisState(cmd)) => {
-			construct_sync_run!(|components, cli, cmd, _config| {
-				let spec = cli.load_spec(&cmd.shared_params.chain.clone().unwrap_or_default())?;
-				cmd.run(&*spec, &*components.client)
-			})
+			construct_sync_run!(|components, cli, cmd, _config| cmd.run(components.client))
 		}
 		Some(Subcommand::ExportGenesisWasm(cmd)) => {
 			construct_sync_run!(|_components, cli, cmd, _config| {
@@ -352,13 +349,17 @@
 		Some(Subcommand::Benchmark(cmd)) => {
 			use frame_benchmarking_cli::{BenchmarkCmd, SUBSTRATE_REFERENCE_HARDWARE};
 			use polkadot_cli::Block;
-			use sp_io::SubstrateHostFunctions;
 
+			use crate::service::ParachainHostFunctions;
+
+			type Header = <Block as sp_runtime::traits::Block>::Header;
+			type Hasher = <Header as sp_runtime::traits::Header>::Hashing;
+
 			let runner = cli.create_runner(cmd)?;
 			// Switch on the concrete benchmark sub-command-
 			match cmd {
 				BenchmarkCmd::Pallet(cmd) => {
-					runner.sync_run(|config| cmd.run::<Block, SubstrateHostFunctions>(config))
+					runner.sync_run(|config| cmd.run::<Hasher, ParachainHostFunctions>(config))
 				}
 				BenchmarkCmd::Block(cmd) => runner.sync_run(|config| {
 					let partials = new_partial::<
@@ -402,7 +403,7 @@
 			use std::{future::Future, pin::Pin};
 
 			use polkadot_cli::Block;
-			use sc_executor::{sp_wasm_interface::ExtendedHostFunctions, NativeExecutionDispatch};
+			use sc_executor::NativeExecutionDispatch;
 			use try_runtime_cli::block_building_info::timestamp_with_aura_info;
 
 			let runner = cli.create_runner(cmd)?;
@@ -422,21 +423,27 @@
 				Ok((
 					match config.chain_spec.runtime_id() {
 						#[cfg(feature = "unique-runtime")]
-						RuntimeId::Unique => Box::pin(cmd.run::<Block, ExtendedHostFunctions<
-							sp_io::SubstrateHostFunctions,
-							<UniqueRuntimeExecutor as NativeExecutionDispatch>::ExtendHostFunctions,
-						>, _>(info_provider)),
+						RuntimeId::Unique => Box::pin(
+							cmd
+								.run::<Block, <UniqueRuntimeExecutor as NativeExecutionDispatch>::ExtendHostFunctions, _>(
+								info_provider,
+							),
+						),
 
 						#[cfg(feature = "quartz-runtime")]
-						RuntimeId::Quartz => Box::pin(cmd.run::<Block, ExtendedHostFunctions<
-							sp_io::SubstrateHostFunctions,
-							<QuartzRuntimeExecutor as NativeExecutionDispatch>::ExtendHostFunctions,
-						>, _>(info_provider)),
+						RuntimeId::Quartz => Box::pin(
+							cmd
+								.run::<Block, <QuartzRuntimeExecutor as NativeExecutionDispatch>::ExtendHostFunctions, _>(
+								info_provider,
+							),
+						),
 
-						RuntimeId::Opal => Box::pin(cmd.run::<Block, ExtendedHostFunctions<
-							sp_io::SubstrateHostFunctions,
-							<OpalRuntimeExecutor as NativeExecutionDispatch>::ExtendHostFunctions,
-						>, _>(info_provider)),
+						RuntimeId::Opal => Box::pin(
+							cmd
+								.run::<Block, <OpalRuntimeExecutor as NativeExecutionDispatch>::ExtendHostFunctions, _>(
+								info_provider,
+							),
+						),
 						runtime_id => return Err(no_runtime_err!(runtime_id).into()),
 					},
 					task_manager,
modifiednode/cli/src/rpc.rsdiffbeforeafterboth
--- a/node/cli/src/rpc.rs
+++ b/node/cli/src/rpc.rs
@@ -35,7 +35,6 @@
 use sp_api::ProvideRuntimeApi;
 use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata};
 use sp_inherents::CreateInherentDataProviders;
-use sp_runtime::traits::BlakeTwo256;
 use up_common::types::opaque::*;
 
 use crate::service::RuntimeApiDep;
@@ -80,10 +79,7 @@
 	R: RuntimeInstance + Send + Sync + 'static,
 	<R as RuntimeInstance>::CrossAccountId: serde::Serialize,
 	C: sp_api::CallApiAt<
-		generic::Block<
-			generic::Header<u32, BlakeTwo256>,
-			sp_runtime::OpaqueExtrinsic,
-		>,
+		generic::Block<generic::Header<u32, BlakeTwo256>, sp_runtime::OpaqueExtrinsic>,
 	>,
 	for<'de> <R as RuntimeInstance>::CrossAccountId: serde::Deserialize<'de>,
 {
modifiednode/cli/src/service.rsdiffbeforeafterboth
--- a/node/cli/src/service.rs
+++ b/node/cli/src/service.rs
@@ -66,16 +66,21 @@
 use sc_service::{Configuration, PartialComponents, TaskManager};
 use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle};
 use serde::{Deserialize, Serialize};
-use sp_api::{ProvideRuntimeApi, StateBackend};
+use sp_api::ProvideRuntimeApi;
 use sp_block_builder::BlockBuilder;
 use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata};
 use sp_consensus_aura::sr25519::AuthorityPair as AuraAuthorityPair;
 use sp_keystore::KeystorePtr;
-use sp_runtime::traits::BlakeTwo256;
+use sp_state_machine::Backend as StateBackend;
 use substrate_prometheus_endpoint::Registry;
 use tokio::time::Interval;
 use up_common::types::{opaque::*, Nonce};
 
+pub type ParachainHostFunctions = (
+	sp_io::SubstrateHostFunctions,
+	cumulus_client_service::storage_proof_size::HostFunctions,
+);
+
 use crate::{
 	chain_spec::RuntimeIdentification,
 	rpc::{create_eth, create_full, EthDeps, FullDeps},
@@ -99,7 +104,7 @@
 	type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;
 	/// Otherwise we only use the default Substrate host functions.
 	#[cfg(not(feature = "runtime-benchmarks"))]
-	type ExtendHostFunctions = ();
+	type ExtendHostFunctions = ParachainHostFunctions;
 
 	fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {
 		unique_runtime::api::dispatch(method, data)
@@ -117,7 +122,7 @@
 	type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;
 	/// Otherwise we only use the default Substrate host functions.
 	#[cfg(not(feature = "runtime-benchmarks"))]
-	type ExtendHostFunctions = ();
+	type ExtendHostFunctions = ParachainHostFunctions;
 
 	fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {
 		quartz_runtime::api::dispatch(method, data)
@@ -134,7 +139,7 @@
 	type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;
 	/// Otherwise we only use the default Substrate host functions.
 	#[cfg(not(feature = "runtime-benchmarks"))]
-	type ExtendHostFunctions = ();
+	type ExtendHostFunctions = ParachainHostFunctions;
 
 	fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {
 		opal_runtime::api::dispatch(method, data)
@@ -249,7 +254,7 @@
 	sc_service::Error,
 >
 where
-	sc_client_api::StateBackendFor<FullBackend, Block>: sp_api::StateBackend<BlakeTwo256>,
+	sc_client_api::StateBackendFor<FullBackend, Block>: StateBackend<BlakeTwo256>,
 	RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>
 		+ Send
 		+ Sync
@@ -356,7 +361,7 @@
 	hwbench: Option<sc_sysinfo::HwBench>,
 ) -> sc_service::error::Result<(TaskManager, Arc<FullClient<RuntimeApi, ExecutorDispatch>>)>
 where
-	sc_client_api::StateBackendFor<FullBackend, Block>: sp_api::StateBackend<BlakeTwo256>,
+	sc_client_api::StateBackendFor<FullBackend, Block>: StateBackend<BlakeTwo256>,
 	Runtime: RuntimeInstance + Send + Sync + 'static,
 	<Runtime as RuntimeInstance>::CrossAccountId: Serialize,
 	for<'de> <Runtime as RuntimeInstance>::CrossAccountId: Deserialize<'de>,
@@ -760,6 +765,7 @@
 		relay_client: relay_chain_interface,
 		sync_oracle,
 		keystore,
+		#[cfg(not(feature = "lookahead"))]
 		slot_duration,
 		proposer,
 		collator_service,
@@ -781,6 +787,8 @@
 		relay_chain_slot_duration,
 		#[cfg(not(feature = "lookahead"))]
 		collation_request_receiver: None,
+		#[cfg(feature = "lookahead")]
+		reinitialize: false,
 	};
 
 	task_manager.spawn_essential_handle().spawn(
@@ -975,12 +983,12 @@
 					async move {
 						let time = sp_timestamp::InherentDataProvider::from_system_time();
 
-						let mocked_parachain = cumulus_primitives_parachain_inherent::MockValidationDataInherentDataProvider {
+						let mocked_parachain = cumulus_client_parachain_inherent::MockValidationDataInherentDataProvider {
 							current_para_block,
 							relay_offset: 1000,
 							relay_blocks_per_para_block: 2,
 							para_blocks_per_relay_epoch: 0,
-							xcm_config: cumulus_primitives_parachain_inherent::MockXcmConfig::new(
+							xcm_config: cumulus_client_parachain_inherent::MockXcmConfig::new(
 								&*client_for_xcm,
 								block,
 								Default::default(),
@@ -989,6 +997,7 @@
 							relay_randomness_config: (),
 							raw_downward_messages: vec![],
 							raw_horizontal_messages: vec![],
+							additional_key_values: None,
 						};
 
 						let slot =
modifiedpallets/collator-selection/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/collator-selection/src/benchmarking.rs
+++ b/pallets/collator-selection/src/benchmarking.rs
@@ -33,7 +33,8 @@
 //! Benchmarking setup for pallet-collator-selection
 
 use frame_benchmarking::v2::{
-	account, benchmarks, impl_benchmark_test_suite, whitelisted_caller, BenchmarkError,
+	account, benchmarks, impl_benchmark_test_suite, impl_test_function, whitelisted_caller,
+	BenchmarkError,
 };
 use frame_support::{
 	assert_ok,
modifiedpallets/foreign-assets/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/foreign-assets/src/benchmarking.rs
+++ b/pallets/foreign-assets/src/benchmarking.rs
@@ -32,8 +32,7 @@
 
 	#[benchmark]
 	fn force_register_foreign_asset() -> Result<(), BenchmarkError> {
-		let location =
-			MultiLocation::from(X3(Parachain(1000), PalletInstance(42), GeneralIndex(1)));
+		let asset_id: AssetId = (Parachain(1000), PalletInstance(42), GeneralIndex(1)).into();
 		let name = create_u16_data::<MAX_COLLECTION_NAME_LENGTH>();
 		let token_prefix = create_data::<MAX_TOKEN_PREFIX_LENGTH>();
 		let mode = ForeignCollectionMode::NFT;
@@ -41,7 +40,7 @@
 		#[extrinsic_call]
 		_(
 			RawOrigin::Root,
-			Box::new(location.into()),
+			Box::new(asset_id.into()),
 			name,
 			token_prefix,
 			mode,
modifiedpallets/foreign-assets/src/lib.rsdiffbeforeafterboth
--- a/pallets/foreign-assets/src/lib.rs
+++ b/pallets/foreign-assets/src/lib.rs
@@ -32,14 +32,10 @@
 };
 use sp_runtime::traits::AccountIdConversion;
 use sp_std::{boxed::Box, vec, vec::Vec};
-use staging_xcm::{
-	opaque::latest::{prelude::XcmError, Weight},
-	v3::{prelude::*, MultiAsset, XcmContext},
-	VersionedAssetId,
-};
+use staging_xcm::{v4::prelude::*, VersionedAssetId};
 use staging_xcm_executor::{
 	traits::{ConvertLocation, Error as XcmExecutorError, TransactAsset, WeightTrader},
-	Assets,
+	AssetsInHolding,
 };
 use up_data_structs::{
 	budget::ZeroBudget, CollectionId, CollectionMode, CollectionName, CollectionTokenPrefix,
@@ -78,9 +74,9 @@
 		type PalletId: Get<PalletId>;
 
 		/// Self-location of this parachain.
-		type SelfLocation: Get<MultiLocation>;
+		type SelfLocation: Get<Location>;
 
-		/// The converter from a MultiLocation to a CrossAccountId.
+		/// The converter from a Location to a CrossAccountId.
 		type LocationToAccountId: ConvertLocation<Self::CrossAccountId>;
 
 		/// Weight information for the extrinsics in this module.
@@ -110,13 +106,13 @@
 	#[pallet::storage]
 	#[pallet::getter(fn foreign_asset_to_collection)]
 	pub type ForeignAssetToCollection<T: Config> =
-		StorageMap<_, Twox64Concat, staging_xcm::v3::AssetId, CollectionId, OptionQuery>;
+		StorageMap<_, Twox64Concat, staging_xcm::v4::AssetId, CollectionId, OptionQuery>;
 
 	/// The corresponding foreign assets of collections.
 	#[pallet::storage]
 	#[pallet::getter(fn collection_to_foreign_asset)]
 	pub type CollectionToForeignAsset<T: Config> =
-		StorageMap<_, Twox64Concat, CollectionId, staging_xcm::v3::AssetId, OptionQuery>;
+		StorageMap<_, Twox64Concat, CollectionId, staging_xcm::v4::AssetId, OptionQuery>;
 
 	/// The correponding NFT token id of reserve NFTs
 	#[pallet::storage]
@@ -125,7 +121,8 @@
 		Hasher1 = Twox64Concat,
 		Key1 = CollectionId,
 		Hasher2 = Blake2_128Concat,
-		Key2 = staging_xcm::v3::AssetInstance,
+		// Key2 = staging_xcm::v3::AssetInstance,
+		Key2 = staging_xcm::v4::AssetInstance,
 		Value = TokenId,
 		QueryKind = OptionQuery,
 	>;
@@ -138,7 +135,8 @@
 		Key1 = CollectionId,
 		Hasher2 = Blake2_128Concat,
 		Key2 = TokenId,
-		Value = staging_xcm::v3::AssetInstance,
+		// Value = staging_xcm::v3::AssetInstance,
+		Value = staging_xcm::v4::AssetInstance,
 		QueryKind = OptionQuery,
 	>;
 
@@ -165,7 +163,7 @@
 				.map_err(|()| Error::<T>::BadForeignAssetId)?;
 
 			ensure!(
-				!<ForeignAssetToCollection<T>>::contains_key(asset_id),
+				!<ForeignAssetToCollection<T>>::contains_key(&asset_id),
 				<Error<T>>::ForeignAssetAlreadyRegistered,
 			);
 
@@ -189,7 +187,7 @@
 				},
 			)?;
 
-			<ForeignAssetToCollection<T>>::insert(asset_id, collection_id);
+			<ForeignAssetToCollection<T>>::insert(&asset_id, collection_id);
 			<CollectionToForeignAsset<T>>::insert(collection_id, asset_id);
 
 			Self::deposit_event(Event::<T>::ForeignAssetRegistered {
@@ -221,11 +219,9 @@
 	/// If the multilocation doesn't match the patterns listed above,
 	/// or the `<Collection ID>` points to a foreign collection,
 	/// `None` is returned, identifying that the given multilocation doesn't correspond to a local collection.
-	fn local_asset_id_to_collection(asset_id: &AssetId) -> Option<CollectionLocality> {
-		let AssetId::Concrete(asset_location) = asset_id else {
-			return None;
-		};
-
+	fn local_asset_id_to_collection(
+		AssetId(asset_location): &AssetId,
+	) -> Option<CollectionLocality> {
 		let self_location = T::SelfLocation::get();
 
 		if *asset_location == Here.into() || *asset_location == self_location {
@@ -386,32 +382,25 @@
 	}
 }
 
+// #[derive()]
+// pub enum Migration {
+
+// }
+
 impl<T: Config> TransactAsset for Pallet<T> {
-	fn can_check_in(
-		_origin: &MultiLocation,
-		_what: &MultiAsset,
-		_context: &XcmContext,
-	) -> XcmResult {
+	fn can_check_in(_origin: &Location, _what: &Asset, _context: &XcmContext) -> XcmResult {
 		Err(XcmError::Unimplemented)
 	}
 
-	fn check_in(_origin: &MultiLocation, _what: &MultiAsset, _context: &XcmContext) {}
+	fn check_in(_origin: &Location, _what: &Asset, _context: &XcmContext) {}
 
-	fn can_check_out(
-		_dest: &MultiLocation,
-		_what: &MultiAsset,
-		_context: &XcmContext,
-	) -> XcmResult {
+	fn can_check_out(_dest: &Location, _what: &Asset, _context: &XcmContext) -> XcmResult {
 		Err(XcmError::Unimplemented)
 	}
 
-	fn check_out(_dest: &MultiLocation, _what: &MultiAsset, _context: &XcmContext) {}
+	fn check_out(_dest: &Location, _what: &Asset, _context: &XcmContext) {}
 
-	fn deposit_asset(
-		what: &MultiAsset,
-		to: &MultiLocation,
-		_context: Option<&XcmContext>,
-	) -> XcmResult {
+	fn deposit_asset(what: &Asset, to: &Location, _context: Option<&XcmContext>) -> XcmResult {
 		let to = T::LocationToAccountId::convert_location(to)
 			.ok_or(XcmExecutorError::AccountIdConversionFailed)?;
 
@@ -440,10 +429,10 @@
 	}
 
 	fn withdraw_asset(
-		what: &MultiAsset,
-		from: &MultiLocation,
+		what: &Asset,
+		from: &Location,
 		_maybe_context: Option<&XcmContext>,
-	) -> Result<staging_xcm_executor::Assets, XcmError> {
+	) -> Result<AssetsInHolding, XcmError> {
 		let from = T::LocationToAccountId::convert_location(from)
 			.ok_or(XcmExecutorError::AccountIdConversionFailed)?;
 
@@ -468,11 +457,11 @@
 	}
 
 	fn internal_transfer_asset(
-		what: &MultiAsset,
-		from: &MultiLocation,
-		to: &MultiLocation,
+		what: &Asset,
+		from: &Location,
+		to: &Location,
 		_context: &XcmContext,
-	) -> Result<staging_xcm_executor::Assets, XcmError> {
+	) -> Result<AssetsInHolding, XcmError> {
 		let from = T::LocationToAccountId::convert_location(from)
 			.ok_or(XcmExecutorError::AccountIdConversionFailed)?;
 
@@ -534,18 +523,15 @@
 }
 
 pub struct CurrencyIdConvert<T: Config>(PhantomData<T>);
-impl<T: Config> sp_runtime::traits::Convert<CollectionId, Option<MultiLocation>>
+impl<T: Config> sp_runtime::traits::Convert<CollectionId, Option<Location>>
 	for CurrencyIdConvert<T>
 {
-	fn convert(collection_id: CollectionId) -> Option<MultiLocation> {
+	fn convert(collection_id: CollectionId) -> Option<Location> {
 		if collection_id == NATIVE_FUNGIBLE_COLLECTION_ID {
 			Some(T::SelfLocation::get())
 		} else {
 			<Pallet<T>>::collection_to_foreign_asset(collection_id)
-				.and_then(|asset_id| match asset_id {
-					AssetId::Concrete(location) => Some(location),
-					_ => None,
-				})
+				.map(|AssetId(location)| location)
 				.or_else(|| {
 					T::SelfLocation::get()
 						.pushed_with_interior(GeneralIndex(collection_id.0.into()))
@@ -580,9 +566,9 @@
 	fn buy_weight(
 		&mut self,
 		weight: Weight,
-		payment: Assets,
+		payment: AssetsInHolding,
 		_xcm: &XcmContext,
-	) -> Result<Assets, XcmError> {
+	) -> Result<AssetsInHolding, XcmError> {
 		log::trace!(target: "fassets::weight", "buy_weight weight: {:?}, payment: {:?}", weight, payment);
 		Ok(payment)
 	}
modifiedpallets/nonfungible/src/erc.rsdiffbeforeafterboth
--- a/pallets/nonfungible/src/erc.rs
+++ b/pallets/nonfungible/src/erc.rs
@@ -718,7 +718,7 @@
 		.map_err(|_| Error::Revert("no permissions for collection".into()))?;
 	let a = token_property_permissions
 		.get(key)
-		.map(Clone::clone)
+		.cloned()
 		.ok_or_else(|| {
 			let key = String::from_utf8(key.clone().into_inner()).unwrap_or_default();
 			Error::Revert(alloc::format!("no permission for key {key}"))
modifiedpallets/refungible/src/erc.rsdiffbeforeafterboth
--- a/pallets/refungible/src/erc.rs
+++ b/pallets/refungible/src/erc.rs
@@ -761,7 +761,7 @@
 		.map_err(|_| Error::Revert("no permissions for collection".into()))?;
 	let a = token_property_permissions
 		.get(key)
-		.map(Clone::clone)
+		.cloned()
 		.ok_or_else(|| {
 			let key = String::from_utf8(key.clone().into_inner()).unwrap_or_default();
 			Error::Revert(alloc::format!("no permission for key {key}"))
modifiedruntime/common/config/ethereum.rsdiffbeforeafterboth
--- a/runtime/common/config/ethereum.rs
+++ b/runtime/common/config/ethereum.rs
@@ -92,6 +92,7 @@
 	type OnChargeTransaction =
 		pallet_evm_transaction_payment::WrappedEVMCurrencyAdapter<Balances, DealWithFees>;
 	type FindAuthor = EthereumFindAuthor<Aura>;
+	type SuicideQuickClearLimit = ConstU32<0>;
 	type Timestamp = crate::Timestamp;
 	type WeightInfo = pallet_evm::weights::SubstrateWeight<Self>;
 	type GasLimitPovSizeRatio = ProofSizePerGas;
modifiedruntime/common/config/governance/fellowship.rsdiffbeforeafterboth
--- a/runtime/common/config/governance/fellowship.rs
+++ b/runtime/common/config/governance/fellowship.rs
@@ -1,5 +1,6 @@
 use pallet_gov_origins::Origin as GovOrigins;
 use pallet_ranked_collective::{Config as RankedConfig, Rank, TallyOf};
+use sp_runtime::traits::ReplaceWithDefault;
 
 use super::*;
 use crate::{
@@ -63,17 +64,18 @@
 impl RankedConfig for Runtime {
 	type WeightInfo = pallet_ranked_collective::weights::SubstrateWeight<Self>;
 	type RuntimeEvent = RuntimeEvent;
-	// Promotion is by any of:
-	// - Council member.
-	// - Technical committee member.
+	type AddOrigin = FellowshipAddOrigin<Self::AccountId>;
+	type RemoveOrigin = FellowshipPromoteDemoteOrigin<Self::AccountId>;
+	type ExchangeOrigin = FellowshipPromoteDemoteOrigin<Self::AccountId>;
+	type MemberSwappedHandler = ();
 	type PromoteOrigin = FellowshipPromoteDemoteOrigin<Self::AccountId>;
-	// Demotion is by any of:
-	// - Council member.
-	// - Technical committee member.
 	type DemoteOrigin = FellowshipPromoteDemoteOrigin<Self::AccountId>;
 	type Polls = FellowshipReferenda;
 	type MinRankOfClass = ClassToRankMapper<Self, ()>;
 	type VoteWeight = pallet_ranked_collective::Geometric;
+
+	#[cfg(feature = "runtime-benchmarks")]
+	type BenchmarkSetup = ();
 }
 
 pub struct EnsureFellowshipProposition;
@@ -96,6 +98,14 @@
 	}
 }
 
+pub type FellowshipAddOrigin<AccountId> = EitherOf<
+	EnsureRoot<AccountId>,
+	EitherOf<
+		MapSuccess<TechnicalCommitteeMember, ReplaceWithDefault<()>>,
+		MapSuccess<CouncilMember, ReplaceWithDefault<()>>,
+	>,
+>;
+
 pub type FellowshipPromoteDemoteOrigin<AccountId> = EitherOf<
 	MapSuccess<EnsureRoot<AccountId>, Replace<ConstU16<65535>>>,
 	MapSuccess<MoreThanHalfCouncil, Replace<ConstU16<9>>>,
modifiedruntime/common/config/orml.rsdiffbeforeafterboth
--- a/runtime/common/config/orml.rs
+++ b/runtime/common/config/orml.rs
@@ -19,7 +19,7 @@
 use orml_traits::{location::AbsoluteReserveProvider, parameter_type_with_key};
 use pallet_foreign_assets::CurrencyIdConvert;
 use sp_runtime::traits::Convert;
-use staging_xcm::latest::{Junction::*, Junctions::*, MultiLocation, Weight};
+use staging_xcm::latest::prelude::*;
 use staging_xcm_executor::XcmExecutor;
 use up_common::{
 	constants::*,
@@ -44,18 +44,18 @@
 }
 
 parameter_type_with_key! {
-	pub ParachainMinFee: |_location: MultiLocation| -> Option<u128> {
+	pub ParachainMinFee: |_location: Location| -> Option<u128> {
 		Some(100_000_000_000)
 	};
 }
 
-pub struct AccountIdToMultiLocation;
-impl Convert<AccountId, MultiLocation> for AccountIdToMultiLocation {
-	fn convert(account: AccountId) -> MultiLocation {
-		X1(AccountId32 {
+pub struct AccountIdToLocation;
+impl Convert<AccountId, Location> for AccountIdToLocation {
+	fn convert(account: AccountId) -> Location {
+		AccountId32 {
 			network: None,
 			id: account.into(),
-		})
+		}
 		.into()
 	}
 }
@@ -75,14 +75,16 @@
 	type Balance = Balance;
 	type CurrencyId = CollectionId;
 	type CurrencyIdConvert = CurrencyIdConvert<Self>;
-	type AccountIdToMultiLocation = AccountIdToMultiLocation;
+	type AccountIdToLocation = AccountIdToLocation;
 	type SelfLocation = SelfLocation;
 	type XcmExecutor = XcmExecutor<XcmExecutorConfig<Self>>;
 	type Weigher = Weigher;
 	type BaseXcmWeight = BaseXcmWeight;
 	type MaxAssetsForTransfer = MaxAssetsForTransfer;
 	type MinXcmFee = ParachainMinFee;
-	type MultiLocationsFilter = Everything;
+	type LocationsFilter = Everything;
 	type ReserveProvider = AbsoluteReserveProvider;
 	type UniversalLocation = UniversalLocation;
+	type RateLimiter = ();
+	type RateLimiterId = ();
 }
modifiedruntime/common/config/pallets/foreign_asset.rsdiffbeforeafterboth
--- a/runtime/common/config/pallets/foreign_asset.rs
+++ b/runtime/common/config/pallets/foreign_asset.rs
@@ -24,7 +24,7 @@
 impl staging_xcm_executor::traits::ConvertLocation<ConfigCrossAccountId>
 	for LocationToCrossAccountId
 {
-	fn convert_location(location: &MultiLocation) -> Option<ConfigCrossAccountId> {
+	fn convert_location(location: &Location) -> Option<ConfigCrossAccountId> {
 		LocationToAccountId::convert_location(location)
 			.map(ConfigCrossAccountId::from_sub)
 			.or_else(|| {
modifiedruntime/common/config/parachain.rsdiffbeforeafterboth
--- a/runtime/common/config/parachain.rs
+++ b/runtime/common/config/parachain.rs
@@ -14,12 +14,14 @@
 // You should have received a copy of the GNU General Public License
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
-use frame_support::{parameter_types, weights::Weight};
+use cumulus_primitives_core::AggregateMessageOrigin;
+use frame_support::{parameter_types, traits::EnqueueWithOrigin, weights::Weight};
 use up_common::constants::*;
 
-use crate::{DmpQueue, Runtime, RuntimeEvent, XcmpQueue};
+use crate::{MessageQueue, Runtime, RuntimeEvent, XcmpQueue};
 
 parameter_types! {
+	pub const RelayMsgOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent;
 	pub const ReservedDmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT.saturating_div(4);
 	pub const ReservedXcmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT.saturating_div(4);
 }
@@ -28,13 +30,9 @@
 	type RuntimeEvent = RuntimeEvent;
 	type SelfParaId = staging_parachain_info::Pallet<Self>;
 	type OnSystemEvent = ();
-	// type DownwardMessageHandlers = cumulus_primitives_utility::UnqueuedDmpAsParent<
-	// 	MaxDownwardMessageWeight,
-	// 	XcmExecutor<XcmConfig>,
-	// 	Call,
-	// >;
+	type WeightInfo = cumulus_pallet_parachain_system::weights::SubstrateWeight<Self>;
 	type OutboundXcmpMessageSource = XcmpQueue;
-	type DmpMessageHandler = DmpQueue;
+	type DmpQueue = EnqueueWithOrigin<MessageQueue, RelayMsgOrigin>;
 	type ReservedDmpWeight = ReservedDmpWeight;
 	type ReservedXcmpWeight = ReservedXcmpWeight;
 	type XcmpMessageHandler = XcmpQueue;
modifiedruntime/common/config/substrate.rsdiffbeforeafterboth
--- a/runtime/common/config/substrate.rs
+++ b/runtime/common/config/substrate.rs
@@ -117,6 +117,14 @@
 	/// Version of the runtime.
 	type Version = Version;
 	type MaxConsumers = ConstU32<16>;
+
+	type RuntimeTask = ();
+
+	type SingleBlockMigrations = ();
+	type MultiBlockMigrator = ();
+	type PreInherents = ();
+	type PostInherents = ();
+	type PostTransactions = ();
 }
 
 parameter_types! {
@@ -136,6 +144,7 @@
 	// Only root can perform this migration
 	type SignedFilter = EnsureSignedBy<TrieMigrationSigned, AccountId>;
 	type MaxKeyLen = MigrationMaxKeyLen;
+	type RuntimeHoldReason = RuntimeHoldReason;
 }
 
 impl pallet_timestamp::Config for Runtime {
@@ -176,7 +185,6 @@
 	type RuntimeHoldReason = RuntimeHoldReason;
 	type RuntimeFreezeReason = RuntimeFreezeReason;
 	type FreezeIdentifier = [u8; 16];
-	type MaxHolds = MaxHolds;
 	type MaxFreezes = MaxFreezes;
 }
 
modifiedruntime/common/config/xcm.rsdiffbeforeafterboth
--- a/runtime/common/config/xcm.rs
+++ b/runtime/common/config/xcm.rs
@@ -14,57 +14,58 @@
 // You should have received a copy of the GNU General Public License
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
-use cumulus_primitives_core::ParaId;
+use cumulus_primitives_core::{AggregateMessageOrigin, ParaId};
 use frame_support::{
 	parameter_types,
-	traits::{ConstU32, Everything, Get, Nothing, ProcessMessageError},
+	traits::{
+		ConstU32, EnqueueWithOrigin, Everything, Get, Nothing, ProcessMessageError, TransformOrigin,
+	},
 };
 use frame_system::EnsureRoot;
 use orml_traits::location::AbsoluteReserveProvider;
 use orml_xcm_support::MultiNativeAsset;
 use pallet_foreign_assets::FreeForAll;
 use pallet_xcm::XcmPassthrough;
+use parachains_common::message_queue::{NarrowOriginToSibling, ParaIdToSibling};
 use polkadot_parachain_primitives::primitives::Sibling;
 use polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery;
 use sp_std::marker::PhantomData;
-use staging_xcm::{
-	latest::{prelude::*, MultiLocation, Weight},
-	v3::Instruction,
-};
+use staging_xcm::latest::prelude::*;
 use staging_xcm_builder::{
-	AccountId32Aliases, EnsureXcmOrigin, FixedWeightBounds, ParentIsPreset, RelayChainAsNative,
-	SiblingParachainAsNative, SiblingParachainConvertsVia, SignedAccountId32AsNative,
-	SignedToAccountId32, SovereignSignedViaLocation,
+	AccountId32Aliases, EnsureXcmOrigin, FixedWeightBounds, FrameTransactionalProcessor,
+	ParentIsPreset, RelayChainAsNative, SiblingParachainAsNative, SiblingParachainConvertsVia,
+	SignedAccountId32AsNative, SignedToAccountId32, SovereignSignedViaLocation,
 };
 use staging_xcm_executor::{
 	traits::{Properties, ShouldExecute},
 	XcmExecutor,
 };
-use up_common::types::AccountId;
+use up_common::{constants::MAXIMUM_BLOCK_WEIGHT, types::AccountId};
 
 #[cfg(feature = "governance")]
 use crate::runtime_common::config::governance;
 use crate::{
-	xcm_barrier::Barrier, AllPalletsWithSystem, Balances, ForeignAssets, ParachainInfo,
-	ParachainSystem, PolkadotXcm, RelayNetwork, Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin,
-	XcmpQueue,
+	runtime_common::config::parachain::RelayMsgOrigin, xcm_barrier::Barrier, AllPalletsWithSystem,
+	Balances, ForeignAssets, MessageQueue, ParachainInfo, ParachainSystem, PolkadotXcm,
+	RelayNetwork, Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin, XcmpQueue,
 };
 
 parameter_types! {
-	pub const RelayLocation: MultiLocation = MultiLocation::parent();
+	pub const RelayLocation: Location = Location::parent();
 	pub RelayOrigin: RuntimeOrigin = cumulus_pallet_xcm::Origin::Relay.into();
-	pub UniversalLocation: InteriorMultiLocation = (
+	pub UniversalLocation: InteriorLocation = (
 		GlobalConsensus(crate::RelayNetwork::get()),
 		Parachain(ParachainInfo::get().into()),
 	).into();
-	pub SelfLocation: MultiLocation = MultiLocation::new(1, X1(Parachain(ParachainInfo::get().into())));
+	pub SelfLocation: Location = Location::new(1, Parachain(ParachainInfo::get().into()));
 
 	// One XCM operation is 1_000_000 weight - almost certainly a conservative estimate.
 	pub UnitWeightCost: Weight = Weight::from_parts(1_000_000, 1000); // ?
 	pub const MaxInstructions: u32 = 100;
+	pub const MessageQueueServiceWeight: Weight = MAXIMUM_BLOCK_WEIGHT.saturating_div(4); // TODO
 }
 
-/// Type for specifying how a `MultiLocation` can be converted into an `AccountId`. This is used
+/// Type for specifying how a `Location` can be converted into an `AccountId`. This is used
 /// when determining ownership of accounts for asset transacting and when attempting to use XCM
 /// `Transact` in order to determine the dispatch Origin.
 pub type LocationToAccountId = (
@@ -111,7 +112,7 @@
 
 pub trait TryPass {
 	fn try_pass<Call>(
-		origin: &MultiLocation,
+		origin: &Location,
 		message: &mut [Instruction<Call>],
 	) -> Result<(), ProcessMessageError>;
 }
@@ -119,7 +120,7 @@
 #[impl_trait_for_tuples::impl_for_tuples(30)]
 impl TryPass for Tuple {
 	fn try_pass<Call>(
-		origin: &MultiLocation,
+		origin: &Location,
 		message: &mut [Instruction<Call>],
 	) -> Result<(), ProcessMessageError> {
 		for_tuples!( #(
@@ -143,7 +144,7 @@
 	Allow: ShouldExecute,
 {
 	fn should_execute<Call>(
-		origin: &MultiLocation,
+		origin: &Location,
 		message: &mut [Instruction<Call>],
 		max_weight: Weight,
 		properties: &mut Properties,
@@ -190,11 +191,7 @@
 	type CallDispatcher = RuntimeCall;
 	type SafeCallFilter = Nothing;
 	type Aliasers = Nothing;
-}
-
-#[cfg(feature = "runtime-benchmarks")]
-parameter_types! {
-	pub ReachableDest: Option<MultiLocation> = Some(Parent.into());
+	type TransactionalProcessor = FrameTransactionalProcessor;
 }
 
 impl pallet_xcm::Config for Runtime {
@@ -221,21 +218,58 @@
 	type AdminOrigin = EnsureRoot<AccountId>;
 	type MaxRemoteLockConsumers = ConstU32<0>;
 	type RemoteLockConsumerIdentifier = ();
-	#[cfg(feature = "runtime-benchmarks")]
-	type ReachableDest = ReachableDest;
 }
 
+#[cfg(feature = "runtime-benchmarks")]
+impl pallet_xcm::benchmarking::Config for Runtime {
+	type DeliveryHelper = ();
+
+	fn reachable_dest() -> Option<Location> {
+		Some(Parent.into())
+	}
+
+	fn get_asset() -> Asset {
+		(Location::here(), 1_000_000_000_000_000_000u128).into()
+	}
+}
+
 impl cumulus_pallet_xcm::Config for Runtime {
 	type RuntimeEvent = RuntimeEvent;
 	type XcmExecutor = XcmExecutor<XcmExecutorConfig<Self>>;
 }
+
+impl pallet_message_queue::Config for Runtime {
+	type RuntimeEvent = RuntimeEvent;
+	type WeightInfo = pallet_message_queue::weights::SubstrateWeight<Self>;
+
+	#[cfg(not(feature = "runtime-benchmarks"))]
+	type MessageProcessor = staging_xcm_builder::ProcessXcmMessage<
+		AggregateMessageOrigin,
+		XcmExecutor<XcmExecutorConfig<Self>>,
+		RuntimeCall,
+	>;
+
+	#[cfg(feature = "runtime-benchmarks")]
+	type MessageProcessor =
+		pallet_message_queue::mock_helpers::NoopMessageProcessor<AggregateMessageOrigin>;
+
+	type Size = u32;
+	// The XCMP queue pallet is only ever able to handle the `Sibling(ParaId)` origin:
+	type QueueChangeHandler = NarrowOriginToSibling<XcmpQueue>;
+	type QueuePausedQuery = NarrowOriginToSibling<XcmpQueue>;
+	type HeapSize = ConstU32<{ 64 * 1024 }>;
+	type MaxStale = ConstU32<8>;
+	type ServiceWeight = MessageQueueServiceWeight;
+}
+
 impl cumulus_pallet_xcmp_queue::Config for Runtime {
-	type WeightInfo = ();
+	type WeightInfo = cumulus_pallet_xcmp_queue::weights::SubstrateWeight<Self>;
 	type RuntimeEvent = RuntimeEvent;
-	type XcmExecutor = XcmExecutor<XcmExecutorConfig<Self>>;
+	type XcmpQueue = TransformOrigin<MessageQueue, AggregateMessageOrigin, ParaId, ParaIdToSibling>;
+	type MaxInboundSuspended = ConstU32<1000>;
+
 	type ChannelInfo = ParachainSystem;
 	type VersionWrapper = PolkadotXcm;
-	type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;
 
 	#[cfg(feature = "governance")]
 	type ControllerOrigin = governance::RootOrTechnicalCommitteeMember;
@@ -249,6 +283,6 @@
 
 impl cumulus_pallet_dmp_queue::Config for Runtime {
 	type RuntimeEvent = RuntimeEvent;
-	type XcmExecutor = XcmExecutor<XcmExecutorConfig<Self>>;
-	type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;
+	type WeightInfo = cumulus_pallet_dmp_queue::weights::SubstrateWeight<Self>;
+	type DmpSink = EnqueueWithOrigin<MessageQueue, RelayMsgOrigin>;
 }
modifiedruntime/common/construct_runtime.rsdiffbeforeafterboth
--- a/runtime/common/construct_runtime.rs
+++ b/runtime/common/construct_runtime.rs
@@ -88,6 +88,7 @@
 				PolkadotXcm: pallet_xcm = 51,
 				CumulusXcm: cumulus_pallet_xcm = 52,
 				DmpQueue: cumulus_pallet_dmp_queue = 53,
+				MessageQueue: pallet_message_queue = 54,
 
 				// Unique Pallets
 				Inflation: pallet_inflation = 60,
modifiedruntime/common/runtime_apis.rsdiffbeforeafterboth
--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -40,9 +40,10 @@
 			Permill,
 			traits::{Block as BlockT},
 			transaction_validity::{TransactionSource, TransactionValidity},
-			ApplyExtrinsicResult, DispatchError,
+			ApplyExtrinsicResult, DispatchError, ExtrinsicInclusionMode,
 		};
 		use frame_support::{
+			genesis_builder_helper::{build_config, create_default_config},
 			pallet_prelude::Weight,
 			traits::OnFinalize,
 		};
@@ -243,7 +244,7 @@
 					Executive::execute_block(block)
 				}
 
-				fn initialize_block(header: &<Block as BlockT>::Header) {
+				fn initialize_block(header: &<Block as BlockT>::Header) -> ExtrinsicInclusionMode {
 					Executive::initialize_block(header)
 				}
 			}
@@ -442,7 +443,7 @@
 					)
 				}
 
-				fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {
+				fn extrinsic_filter(xts: Vec<<Block as BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {
 					xts.into_iter().filter_map(|xt| match xt.0.function {
 						RuntimeCall::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),
 						_ => None
@@ -535,9 +536,10 @@
 				) {
 					use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};
 					use frame_support::traits::StorageInfoTrait;
+					use pallet_xcm::benchmarking::Pallet as PalletXcmBenchmarks;
 
 					let mut list = Vec::<BenchmarkList>::new();
-					list_benchmark!(list, extra, pallet_xcm, PolkadotXcm);
+					list_benchmark!(list, extra, pallet_xcm, PalletXcmBenchmarks::<Runtime>);
 
 					list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);
 					list_benchmark!(list, extra, pallet_common, Common);
@@ -578,6 +580,7 @@
 				) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {
 					use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark};
 					use sp_storage::TrackedStorageKey;
+					use pallet_xcm::benchmarking::Pallet as PalletXcmBenchmarks;
 
 					let allowlist: Vec<TrackedStorageKey> = vec![
 						// Total Issuance
@@ -601,8 +604,9 @@
 
 					let mut batches = Vec::<BenchmarkBatch>::new();
 					let params = (&config, &allowlist);
-					add_benchmark!(params, batches, pallet_xcm, PolkadotXcm);
 
+					add_benchmark!(params, batches, pallet_xcm, PalletXcmBenchmarks::<Runtime>);
+
 					add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);
 					add_benchmark!(params, batches, pallet_common, Common);
 					add_benchmark!(params, batches, pallet_unique, Unique);
@@ -707,6 +711,16 @@
 					)
 				}
 			}
+
+			impl sp_genesis_builder::GenesisBuilder<Block> for Runtime {
+				fn create_default_config() -> Vec<u8> {
+					create_default_config::<RuntimeGenesisConfig>()
+				}
+
+				fn build_config(config: Vec<u8>) -> sp_genesis_builder::Result {
+					build_config::<RuntimeGenesisConfig>(config)
+				}
+			}
 		}
 	}
 }
modifiedruntime/common/sponsoring.rsdiffbeforeafterboth
--- a/runtime/common/sponsoring.rs
+++ b/runtime/common/sponsoring.rs
@@ -341,12 +341,11 @@
 		};
 
 		if let Some(last_tx_block) = last_tx_block {
-			return Some(
+			return Some(u64::from(
 				last_tx_block
 					.saturating_add(limit.into())
-					.saturating_sub(block_number)
-					.into(),
-			);
+					.saturating_sub(block_number),
+			));
 		}
 
 		let token_exists = match collection.mode {
modifiedruntime/common/weights/xcm.rsdiffbeforeafterboth
--- a/runtime/common/weights/xcm.rs
+++ b/runtime/common/weights/xcm.rs
@@ -2,8 +2,8 @@
 
 //! Autogenerated weights for pallet_xcm
 //!
-//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 29.0.0
-//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 35.0.1
+//! DATE: 2024-05-27, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! WORST CASE MAP SIZE: `1000000`
 //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
@@ -49,37 +49,44 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `278`
 		//  Estimated: `3743`
-		// Minimum execution time: 22_693_000 picoseconds.
-		Weight::from_parts(23_155_000, 3743)
+		// Minimum execution time: 18_977_000 picoseconds.
+		Weight::from_parts(19_535_000, 3743)
 			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(2_u64))
 	}
-	/// Storage: `ParachainInfo::ParachainId` (r:1 w:0)
-	/// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
+	/// Storage: `Benchmark::Override` (r:0 w:0)
+	/// Proof: `Benchmark::Override` (`max_values`: None, `max_size`: None, mode: `Measured`)
 	fn teleport_assets() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `169`
-		//  Estimated: `1489`
-		// Minimum execution time: 21_165_000 picoseconds.
-		Weight::from_parts(21_568_000, 1489)
-			.saturating_add(T::DbWeight::get().reads(1_u64))
+		//  Measured:  `0`
+		//  Estimated: `0`
+		// Minimum execution time: 18_446_744_073_709_551_000 picoseconds.
+		Weight::from_parts(18_446_744_073_709_551_000, 0)
 	}
-	/// Storage: `ParachainInfo::ParachainId` (r:1 w:0)
-	/// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
+	/// Storage: `Benchmark::Override` (r:0 w:0)
+	/// Proof: `Benchmark::Override` (`max_values`: None, `max_size`: None, mode: `Measured`)
 	fn reserve_transfer_assets() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `169`
-		//  Estimated: `1489`
-		// Minimum execution time: 20_929_000 picoseconds.
-		Weight::from_parts(21_295_000, 1489)
-			.saturating_add(T::DbWeight::get().reads(1_u64))
+		//  Measured:  `0`
+		//  Estimated: `0`
+		// Minimum execution time: 18_446_744_073_709_551_000 picoseconds.
+		Weight::from_parts(18_446_744_073_709_551_000, 0)
+	}
+	/// Storage: `Benchmark::Override` (r:0 w:0)
+	/// Proof: `Benchmark::Override` (`max_values`: None, `max_size`: None, mode: `Measured`)
+	fn transfer_assets() -> Weight {
+		// Proof Size summary in bytes:
+		//  Measured:  `0`
+		//  Estimated: `0`
+		// Minimum execution time: 18_446_744_073_709_551_000 picoseconds.
+		Weight::from_parts(18_446_744_073_709_551_000, 0)
 	}
 	fn execute() -> Weight {
 		// Proof Size summary in bytes:
 		//  Measured:  `0`
 		//  Estimated: `0`
-		// Minimum execution time: 7_580_000 picoseconds.
-		Weight::from_parts(7_829_000, 0)
+		// Minimum execution time: 6_781_000 picoseconds.
+		Weight::from_parts(7_006_000, 0)
 	}
 	/// Storage: `PolkadotXcm::SupportedVersion` (r:0 w:1)
 	/// Proof: `PolkadotXcm::SupportedVersion` (`max_values`: None, `max_size`: None, mode: `Measured`)
@@ -87,8 +94,8 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `0`
 		//  Estimated: `0`
-		// Minimum execution time: 7_503_000 picoseconds.
-		Weight::from_parts(7_703_000, 0)
+		// Minimum execution time: 6_489_000 picoseconds.
+		Weight::from_parts(6_849_000, 0)
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
 	/// Storage: `PolkadotXcm::SafeXcmVersion` (r:0 w:1)
@@ -97,8 +104,8 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `0`
 		//  Estimated: `0`
-		// Minimum execution time: 2_505_000 picoseconds.
-		Weight::from_parts(2_619_000, 0)
+		// Minimum execution time: 2_216_000 picoseconds.
+		Weight::from_parts(2_347_000, 0)
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
 	/// Storage: `PolkadotXcm::VersionNotifiers` (r:1 w:1)
@@ -121,8 +128,8 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `278`
 		//  Estimated: `3743`
-		// Minimum execution time: 26_213_000 picoseconds.
-		Weight::from_parts(26_652_000, 3743)
+		// Minimum execution time: 24_128_000 picoseconds.
+		Weight::from_parts(24_629_000, 3743)
 			.saturating_add(T::DbWeight::get().reads(7_u64))
 			.saturating_add(T::DbWeight::get().writes(5_u64))
 	}
@@ -144,8 +151,8 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `461`
 		//  Estimated: `3926`
-		// Minimum execution time: 27_648_000 picoseconds.
-		Weight::from_parts(28_084_000, 3926)
+		// Minimum execution time: 25_408_000 picoseconds.
+		Weight::from_parts(25_912_000, 3926)
 			.saturating_add(T::DbWeight::get().reads(6_u64))
 			.saturating_add(T::DbWeight::get().writes(4_u64))
 	}
@@ -155,41 +162,41 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `0`
 		//  Estimated: `0`
-		// Minimum execution time: 2_529_000 picoseconds.
-		Weight::from_parts(2_650_000, 0)
+		// Minimum execution time: 2_270_000 picoseconds.
+		Weight::from_parts(2_379_000, 0)
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
-	/// Storage: `PolkadotXcm::SupportedVersion` (r:4 w:2)
+	/// Storage: `PolkadotXcm::SupportedVersion` (r:5 w:2)
 	/// Proof: `PolkadotXcm::SupportedVersion` (`max_values`: None, `max_size`: None, mode: `Measured`)
 	fn migrate_supported_version() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `196`
-		//  Estimated: `11086`
-		// Minimum execution time: 15_973_000 picoseconds.
-		Weight::from_parts(16_358_000, 11086)
-			.saturating_add(T::DbWeight::get().reads(4_u64))
+		//  Measured:  `192`
+		//  Estimated: `13557`
+		// Minimum execution time: 17_924_000 picoseconds.
+		Weight::from_parts(18_191_000, 13557)
+			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(2_u64))
 	}
-	/// Storage: `PolkadotXcm::VersionNotifiers` (r:4 w:2)
+	/// Storage: `PolkadotXcm::VersionNotifiers` (r:5 w:2)
 	/// Proof: `PolkadotXcm::VersionNotifiers` (`max_values`: None, `max_size`: None, mode: `Measured`)
 	fn migrate_version_notifiers() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `200`
-		//  Estimated: `11090`
-		// Minimum execution time: 16_027_000 picoseconds.
-		Weight::from_parts(16_585_000, 11090)
-			.saturating_add(T::DbWeight::get().reads(4_u64))
+		//  Measured:  `196`
+		//  Estimated: `13561`
+		// Minimum execution time: 17_998_000 picoseconds.
+		Weight::from_parts(18_412_000, 13561)
+			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(2_u64))
 	}
-	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:5 w:0)
+	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:6 w:0)
 	/// Proof: `PolkadotXcm::VersionNotifyTargets` (`max_values`: None, `max_size`: None, mode: `Measured`)
 	fn already_notified_target() -> Weight {
 		// Proof Size summary in bytes:
 		//  Measured:  `207`
-		//  Estimated: `13572`
-		// Minimum execution time: 16_817_000 picoseconds.
-		Weight::from_parts(17_137_000, 13572)
-			.saturating_add(T::DbWeight::get().reads(5_u64))
+		//  Estimated: `16047`
+		// Minimum execution time: 19_437_000 picoseconds.
+		Weight::from_parts(19_891_000, 16047)
+			.saturating_add(T::DbWeight::get().reads(6_u64))
 	}
 	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:2 w:1)
 	/// Proof: `PolkadotXcm::VersionNotifyTargets` (`max_values`: None, `max_size`: None, mode: `Measured`)
@@ -207,33 +214,33 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `345`
 		//  Estimated: `6285`
-		// Minimum execution time: 24_551_000 picoseconds.
-		Weight::from_parts(24_975_000, 6285)
+		// Minimum execution time: 24_038_000 picoseconds.
+		Weight::from_parts(24_400_000, 6285)
 			.saturating_add(T::DbWeight::get().reads(7_u64))
 			.saturating_add(T::DbWeight::get().writes(3_u64))
 	}
-	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:3 w:0)
+	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:4 w:0)
 	/// Proof: `PolkadotXcm::VersionNotifyTargets` (`max_values`: None, `max_size`: None, mode: `Measured`)
 	fn notify_target_migration_fail() -> Weight {
 		// Proof Size summary in bytes:
 		//  Measured:  `239`
-		//  Estimated: `8654`
-		// Minimum execution time: 8_412_000 picoseconds.
-		Weight::from_parts(8_710_000, 8654)
-			.saturating_add(T::DbWeight::get().reads(3_u64))
+		//  Estimated: `11129`
+		// Minimum execution time: 10_817_000 picoseconds.
+		Weight::from_parts(11_066_000, 11129)
+			.saturating_add(T::DbWeight::get().reads(4_u64))
 	}
-	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:4 w:2)
+	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:5 w:2)
 	/// Proof: `PolkadotXcm::VersionNotifyTargets` (`max_values`: None, `max_size`: None, mode: `Measured`)
 	fn migrate_version_notify_targets() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `207`
-		//  Estimated: `11097`
-		// Minimum execution time: 16_427_000 picoseconds.
-		Weight::from_parts(16_774_000, 11097)
-			.saturating_add(T::DbWeight::get().reads(4_u64))
+		//  Measured:  `203`
+		//  Estimated: `13568`
+		// Minimum execution time: 18_143_000 picoseconds.
+		Weight::from_parts(18_592_000, 13568)
+			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(2_u64))
 	}
-	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:4 w:2)
+	/// Storage: `PolkadotXcm::VersionNotifyTargets` (r:5 w:2)
 	/// Proof: `PolkadotXcm::VersionNotifyTargets` (`max_values`: None, `max_size`: None, mode: `Measured`)
 	/// Storage: `PolkadotXcm::SupportedVersion` (r:1 w:0)
 	/// Proof: `PolkadotXcm::SupportedVersion` (`max_values`: None, `max_size`: None, mode: `Measured`)
@@ -247,12 +254,51 @@
 	/// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
 	fn migrate_and_notify_old_targets() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `349`
-		//  Estimated: `11239`
-		// Minimum execution time: 30_394_000 picoseconds.
-		Weight::from_parts(30_868_000, 11239)
-			.saturating_add(T::DbWeight::get().reads(9_u64))
+		//  Measured:  `345`
+		//  Estimated: `13710`
+		// Minimum execution time: 31_871_000 picoseconds.
+		Weight::from_parts(32_364_000, 13710)
+			.saturating_add(T::DbWeight::get().reads(10_u64))
 			.saturating_add(T::DbWeight::get().writes(4_u64))
 	}
+	/// Storage: `PolkadotXcm::QueryCounter` (r:1 w:1)
+	/// Proof: `PolkadotXcm::QueryCounter` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
+	/// Storage: `PolkadotXcm::Queries` (r:0 w:1)
+	/// Proof: `PolkadotXcm::Queries` (`max_values`: None, `max_size`: None, mode: `Measured`)
+	fn new_query() -> Weight {
+		// Proof Size summary in bytes:
+		//  Measured:  `136`
+		//  Estimated: `1621`
+		// Minimum execution time: 4_750_000 picoseconds.
+		Weight::from_parts(5_014_000, 1621)
+			.saturating_add(T::DbWeight::get().reads(1_u64))
+			.saturating_add(T::DbWeight::get().writes(2_u64))
+	}
+	/// Storage: `PolkadotXcm::Queries` (r:1 w:1)
+	/// Proof: `PolkadotXcm::Queries` (`max_values`: None, `max_size`: None, mode: `Measured`)
+	fn take_response() -> Weight {
+		// Proof Size summary in bytes:
+		//  Measured:  `7773`
+		//  Estimated: `11238`
+		// Minimum execution time: 25_672_000 picoseconds.
+		Weight::from_parts(25_937_000, 11238)
+			.saturating_add(T::DbWeight::get().reads(1_u64))
+			.saturating_add(T::DbWeight::get().writes(1_u64))
+	}
+	/// Storage: `PolkadotXcm::AssetTraps` (r:1 w:1)
+	/// Proof: `PolkadotXcm::AssetTraps` (`max_values`: None, `max_size`: None, mode: `Measured`)
+	/// Storage: `ForeignAssets::ForeignAssetToCollection` (r:1 w:0)
+	/// Proof: `ForeignAssets::ForeignAssetToCollection` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`)
+	/// Storage: `ParachainInfo::ParachainId` (r:1 w:0)
+	/// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`)
+	fn claim_assets() -> Weight {
+		// Proof Size summary in bytes:
+		//  Measured:  `366`
+		//  Estimated: `4079`
+		// Minimum execution time: 44_409_000 picoseconds.
+		Weight::from_parts(45_102_000, 4079)
+			.saturating_add(T::DbWeight::get().reads(3_u64))
+			.saturating_add(T::DbWeight::get().writes(1_u64))
+	}
 }
 
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -31,6 +31,7 @@
 runtime-benchmarks = [
 	"pallet-preimage/runtime-benchmarks",
 	'cumulus-pallet-parachain-system/runtime-benchmarks',
+	'parachains-common/runtime-benchmarks',
 	'frame-benchmarking',
 	'frame-support/runtime-benchmarks',
 	'frame-system-benchmarking',
@@ -61,6 +62,7 @@
 	'pallet-unique/runtime-benchmarks',
 	'pallet-utility/runtime-benchmarks',
 	'pallet-xcm/runtime-benchmarks',
+	'pallet-message-queue/runtime-benchmarks',
 	'polkadot-runtime-common/runtime-benchmarks',
 	'sp-runtime/runtime-benchmarks',
 	'staging-xcm-builder/runtime-benchmarks',
@@ -73,6 +75,7 @@
 	'cumulus-primitives-aura/std',
 	'cumulus-primitives-core/std',
 	'cumulus-primitives-utility/std',
+	'parachains-common/std',
 	'frame-executive/std',
 	'frame-support/std',
 	'frame-system-rpc-runtime-api/std',
@@ -127,6 +130,8 @@
 	'pallet-treasury/std',
 	'pallet-unique/std',
 	'pallet-utility/std',
+	'pallet-xcm/std',
+	'pallet-message-queue/std',
 	'polkadot-runtime-common/std',
 	'serde',
 	'sp-api/std',
@@ -141,6 +146,7 @@
 	'sp-storage/std',
 	'sp-transaction-pool/std',
 	'sp-version/std',
+	'sp-genesis-builder/std',
 	'staging-parachain-info/std',
 	'staging-xcm-builder/std',
 	'staging-xcm-executor/std',
@@ -220,6 +226,7 @@
 	'pallet-unique/try-runtime',
 	'pallet-utility/try-runtime',
 	'pallet-xcm/try-runtime',
+	'pallet-message-queue/try-runtime',
 	'polkadot-runtime-common/try-runtime',
 	'staging-parachain-info/try-runtime',
 ]
@@ -248,6 +255,7 @@
 cumulus-primitives-core = { workspace = true }
 cumulus-primitives-timestamp = { workspace = true }
 cumulus-primitives-utility = { workspace = true }
+parachains-common = { workspace = true }
 frame-executive = { workspace = true }
 frame-support = { workspace = true }
 frame-system = { workspace = true }
@@ -269,6 +277,7 @@
 pallet-treasury = { workspace = true }
 pallet-utility = { workspace = true }
 pallet-xcm = { workspace = true }
+pallet-message-queue = { workspace = true }
 parity-scale-codec = { workspace = true }
 polkadot-parachain-primitives = { workspace = true }
 polkadot-runtime-common = { workspace = true }
@@ -287,6 +296,7 @@
 sp-storage = { workspace = true }
 sp-transaction-pool = { workspace = true }
 sp-version = { workspace = true }
+sp-genesis-builder = { workspace = true }
 staging-parachain-info = { workspace = true }
 staging-xcm = { workspace = true }
 staging-xcm-builder = { workspace = true }
modifiedruntime/opal/src/xcm_barrier.rsdiffbeforeafterboth
--- a/runtime/opal/src/xcm_barrier.rs
+++ b/runtime/opal/src/xcm_barrier.rs
@@ -15,15 +15,15 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 use frame_support::{match_types, traits::Everything};
-use staging_xcm::latest::{Junctions::*, MultiLocation};
+use staging_xcm::latest::{Junctions::*, Location};
 use staging_xcm_builder::{
 	AllowExplicitUnpaidExecutionFrom, AllowTopLevelPaidExecutionFrom, TakeWeightCredit,
 	TrailingSetTopicAsId,
 };
 
 match_types! {
-	pub type ParentOnly: impl Contains<MultiLocation> = {
-		MultiLocation { parents: 1, interior: Here }
+	pub type ParentOnly: impl Contains<Location> = {
+		Location { parents: 1, interior: Here }
 	};
 }
 
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -24,6 +24,7 @@
 runtime-benchmarks = [
 	"pallet-preimage/runtime-benchmarks",
 	'cumulus-pallet-parachain-system/runtime-benchmarks',
+	'parachains-common/runtime-benchmarks',
 	'frame-benchmarking',
 	'frame-support/runtime-benchmarks',
 	'frame-system-benchmarking',
@@ -58,6 +59,7 @@
 	'pallet-unique/runtime-benchmarks',
 	'pallet-utility/runtime-benchmarks',
 	'pallet-xcm/runtime-benchmarks',
+	'pallet-message-queue/runtime-benchmarks',
 	'polkadot-runtime-common/runtime-benchmarks',
 	'sp-runtime/runtime-benchmarks',
 	'staging-xcm-builder/runtime-benchmarks',
@@ -69,6 +71,7 @@
 	'cumulus-pallet-xcmp-queue/std',
 	'cumulus-primitives-core/std',
 	'cumulus-primitives-utility/std',
+	'parachains-common/std',
 	'frame-executive/std',
 	'frame-support/std',
 	'frame-system-rpc-runtime-api/std',
@@ -127,6 +130,8 @@
 	'pallet-treasury/std',
 	'pallet-unique/std',
 	'pallet-utility/std',
+	'pallet-xcm/std',
+	'pallet-message-queue/std',
 	'polkadot-runtime-common/std',
 	'serde',
 	'sp-api/std',
@@ -140,6 +145,7 @@
 	'sp-std/std',
 	'sp-transaction-pool/std',
 	'sp-version/std',
+	'sp-genesis-builder/std',
 	'staging-parachain-info/std',
 	'staging-xcm-builder/std',
 	'staging-xcm-executor/std',
@@ -210,6 +216,7 @@
 	'pallet-unique/try-runtime',
 	'pallet-utility/try-runtime',
 	'pallet-xcm/try-runtime',
+	'pallet-message-queue/try-runtime',
 	'polkadot-runtime-common/try-runtime',
 	'staging-parachain-info/try-runtime',
 ]
@@ -236,6 +243,7 @@
 cumulus-primitives-core = { workspace = true }
 cumulus-primitives-timestamp = { workspace = true }
 cumulus-primitives-utility = { workspace = true }
+parachains-common = { workspace = true }
 frame-executive = { workspace = true }
 frame-support = { workspace = true }
 frame-system = { workspace = true }
@@ -257,6 +265,7 @@
 pallet-treasury = { workspace = true }
 pallet-utility = { workspace = true }
 pallet-xcm = { workspace = true }
+pallet-message-queue = { workspace = true }
 parity-scale-codec = { workspace = true }
 polkadot-parachain-primitives = { workspace = true }
 polkadot-runtime-common = { workspace = true }
@@ -275,6 +284,7 @@
 sp-storage = { workspace = true }
 sp-transaction-pool = { workspace = true }
 sp-version = { workspace = true }
+sp-genesis-builder = { workspace = true }
 staging-parachain-info = { workspace = true }
 staging-xcm = { workspace = true }
 staging-xcm-builder = { workspace = true }
modifiedruntime/quartz/src/xcm_barrier.rsdiffbeforeafterboth
--- a/runtime/quartz/src/xcm_barrier.rs
+++ b/runtime/quartz/src/xcm_barrier.rs
@@ -15,7 +15,7 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 use frame_support::{match_types, traits::Everything};
-use staging_xcm::latest::{Junctions::*, MultiLocation};
+use staging_xcm::latest::{Junctions::*, Location};
 use staging_xcm_builder::{
 	AllowExplicitUnpaidExecutionFrom, AllowKnownQueryResponses, AllowSubscriptionsFrom,
 	AllowTopLevelPaidExecutionFrom, TakeWeightCredit, TrailingSetTopicAsId,
@@ -24,13 +24,13 @@
 use crate::PolkadotXcm;
 
 match_types! {
-	pub type ParentOnly: impl Contains<MultiLocation> = {
-		MultiLocation { parents: 1, interior: Here }
+	pub type ParentOnly: impl Contains<Location> = {
+		Location { parents: 1, interior: Here }
 	};
 
-	pub type ParentOrSiblings: impl Contains<MultiLocation> = {
-		MultiLocation { parents: 1, interior: Here } |
-		MultiLocation { parents: 1, interior: X1(_) }
+	pub type ParentOrSiblings: impl Contains<Location> = {
+		Location { parents: 1, interior: Here } |
+		Location { parents: 1, interior: X1(_) }
 	};
 }
 
modifiedruntime/tests/src/lib.rsdiffbeforeafterboth
--- a/runtime/tests/src/lib.rs
+++ b/runtime/tests/src/lib.rs
@@ -98,6 +98,14 @@
 	type SS58Prefix = SS58Prefix;
 	type OnSetCode = ();
 	type MaxConsumers = ConstU32<16>;
+
+	type RuntimeTask = ();
+
+	type SingleBlockMigrations = ();
+	type MultiBlockMigrator = ();
+	type PreInherents = ();
+	type PostInherents = ();
+	type PostTransactions = ();
 }
 
 parameter_types! {
@@ -117,7 +125,6 @@
 	type ReserveIdentifier = [u8; 8];
 	type MaxFreezes = MaxLocks;
 	type FreezeIdentifier = [u8; 8];
-	type MaxHolds = MaxLocks;
 	type RuntimeHoldReason = RuntimeHoldReason;
 	type RuntimeFreezeReason = RuntimeFreezeReason;
 }
@@ -237,6 +244,7 @@
 	type BlockHashMapping = SubstrateBlockHashMapping<Self>;
 	type Timestamp = Timestamp;
 	type GasLimitPovSizeRatio = ConstU64<0>;
+	type SuicideQuickClearLimit = ConstU32<0>;
 }
 impl pallet_evm_coder_substrate::Config for Test {}
 
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -21,6 +21,8 @@
 pov-estimate = []
 runtime-benchmarks = [
 	"pallet-preimage/runtime-benchmarks",
+	'cumulus-pallet-parachain-system/runtime-benchmarks',
+	'parachains-common/runtime-benchmarks',
 	'frame-benchmarking',
 	'frame-support/runtime-benchmarks',
 	'frame-system-benchmarking',
@@ -55,6 +57,7 @@
 	'pallet-unique/runtime-benchmarks',
 	'pallet-utility/runtime-benchmarks',
 	'pallet-xcm/runtime-benchmarks',
+	'pallet-message-queue/runtime-benchmarks',
 	'polkadot-runtime-common/runtime-benchmarks',
 	'sp-runtime/runtime-benchmarks',
 	'staging-xcm-builder/runtime-benchmarks',
@@ -67,6 +70,7 @@
 	'cumulus-pallet-xcmp-queue/std',
 	'cumulus-primitives-core/std',
 	'cumulus-primitives-utility/std',
+	'parachains-common/std',
 	'frame-executive/std',
 	'frame-support/std',
 	'frame-system-rpc-runtime-api/std',
@@ -125,6 +129,8 @@
 	'pallet-treasury/std',
 	'pallet-unique/std',
 	'pallet-utility/std',
+	'pallet-xcm/std',
+	'pallet-message-queue/std',
 	'polkadot-runtime-common/std',
 	'sp-api/std',
 	'sp-block-builder/std',
@@ -137,6 +143,7 @@
 	'sp-std/std',
 	'sp-transaction-pool/std',
 	'sp-version/std',
+	'sp-genesis-builder/std',
 	'staging-parachain-info/std',
 	'staging-xcm-builder/std',
 	'staging-xcm-executor/std',
@@ -212,6 +219,7 @@
 	'pallet-unique/try-runtime',
 	'pallet-utility/try-runtime',
 	'pallet-xcm/try-runtime',
+	'pallet-message-queue/try-runtime',
 	'polkadot-runtime-common/try-runtime',
 	'staging-parachain-info/try-runtime',
 ]
@@ -239,6 +247,7 @@
 cumulus-primitives-core = { workspace = true }
 cumulus-primitives-timestamp = { workspace = true }
 cumulus-primitives-utility = { workspace = true }
+parachains-common = { workspace = true }
 frame-executive = { workspace = true }
 frame-support = { workspace = true }
 frame-system = { workspace = true }
@@ -260,6 +269,7 @@
 pallet-treasury = { workspace = true }
 pallet-utility = { workspace = true }
 pallet-xcm = { workspace = true }
+pallet-message-queue = { workspace = true }
 parity-scale-codec = { workspace = true }
 polkadot-parachain-primitives = { workspace = true }
 polkadot-runtime-common = { workspace = true }
@@ -278,6 +288,7 @@
 sp-storage = { workspace = true }
 sp-transaction-pool = { workspace = true }
 sp-version = { workspace = true }
+sp-genesis-builder = { workspace = true }
 staging-parachain-info = { workspace = true }
 staging-xcm = { workspace = true }
 staging-xcm-builder = { workspace = true }
modifiedruntime/unique/src/xcm_barrier.rsdiffbeforeafterboth
--- a/runtime/unique/src/xcm_barrier.rs
+++ b/runtime/unique/src/xcm_barrier.rs
@@ -15,7 +15,7 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 use frame_support::{match_types, traits::Everything};
-use staging_xcm::latest::{Junctions::*, MultiLocation};
+use staging_xcm::latest::{Junctions::*, Location};
 use staging_xcm_builder::{
 	AllowExplicitUnpaidExecutionFrom, AllowKnownQueryResponses, AllowSubscriptionsFrom,
 	AllowTopLevelPaidExecutionFrom, TakeWeightCredit, TrailingSetTopicAsId,
@@ -24,13 +24,13 @@
 use crate::PolkadotXcm;
 
 match_types! {
-	pub type ParentOnly: impl Contains<MultiLocation> = {
-		MultiLocation { parents: 1, interior: Here }
+	pub type ParentOnly: impl Contains<Location> = {
+		Location { parents: 1, interior: Here }
 	};
 
-	pub type ParentOrSiblings: impl Contains<MultiLocation> = {
-		MultiLocation { parents: 1, interior: Here } |
-		MultiLocation { parents: 1, interior: X1(_) }
+	pub type ParentOrSiblings: impl Contains<Location> = {
+		Location { parents: 1, interior: Here } |
+		Location { parents: 1, interior: X1(_) }
 	};
 }