123version = 345[[package]]6name = "Inflector"7version = "0.11.4"8source = "registry+https://github.com/rust-lang/crates.io-index"9checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"10dependencies = [11 "lazy_static",12 "regex",13]1415[[package]]16name = "addr2line"17version = "0.16.0"18source = "registry+https://github.com/rust-lang/crates.io-index"19checksum = "3e61f2b7f93d2c7d2b08263acaa4a363b3e276806c68af6134c44f523bf1aacd"20dependencies = [21 "gimli 0.25.0",22]2324[[package]]25name = "addr2line"26version = "0.17.0"27source = "registry+https://github.com/rust-lang/crates.io-index"28checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"29dependencies = [30 "gimli 0.26.1",31]3233[[package]]34name = "adler"35version = "1.0.2"36source = "registry+https://github.com/rust-lang/crates.io-index"37checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"3839[[package]]40name = "aead"41version = "0.4.3"42source = "registry+https://github.com/rust-lang/crates.io-index"43checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"44dependencies = [45 "generic-array 0.14.4",46]4748[[package]]49name = "aes"50version = "0.7.5"51source = "registry+https://github.com/rust-lang/crates.io-index"52checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"53dependencies = [54 "cfg-if 1.0.0",55 "cipher",56 "cpufeatures 0.2.1",57 "opaque-debug 0.3.0",58]5960[[package]]61name = "aes-gcm"62version = "0.9.4"63source = "registry+https://github.com/rust-lang/crates.io-index"64checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"65dependencies = [66 "aead",67 "aes",68 "cipher",69 "ctr",70 "ghash",71 "subtle 2.4.1",72]7374[[package]]75name = "ahash"76version = "0.7.6"77source = "registry+https://github.com/rust-lang/crates.io-index"78checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"79dependencies = [80 "getrandom 0.2.3",81 "once_cell",82 "version_check",83]8485[[package]]86name = "aho-corasick"87version = "0.7.18"88source = "registry+https://github.com/rust-lang/crates.io-index"89checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"90dependencies = [91 "memchr",92]9394[[package]]95name = "always-assert"96version = "0.1.2"97source = "registry+https://github.com/rust-lang/crates.io-index"98checksum = "fbf688625d06217d5b1bb0ea9d9c44a1635fd0ee3534466388d18203174f4d11"99100[[package]]101name = "ansi_term"102version = "0.11.0"103source = "registry+https://github.com/rust-lang/crates.io-index"104checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"105dependencies = [106 "winapi 0.3.9",107]108109[[package]]110name = "ansi_term"111version = "0.12.1"112source = "registry+https://github.com/rust-lang/crates.io-index"113checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"114dependencies = [115 "winapi 0.3.9",116]117118[[package]]119name = "anyhow"120version = "1.0.44"121source = "registry+https://github.com/rust-lang/crates.io-index"122checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1"123124[[package]]125name = "approx"126version = "0.5.0"127source = "registry+https://github.com/rust-lang/crates.io-index"128checksum = "072df7202e63b127ab55acfe16ce97013d5b97bf160489336d3f1840fd78e99e"129dependencies = [130 "num-traits",131]132133[[package]]134name = "arrayref"135version = "0.3.6"136source = "registry+https://github.com/rust-lang/crates.io-index"137checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"138139[[package]]140name = "arrayvec"141version = "0.4.12"142source = "registry+https://github.com/rust-lang/crates.io-index"143checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"144dependencies = [145 "nodrop",146]147148[[package]]149name = "arrayvec"150version = "0.5.2"151source = "registry+https://github.com/rust-lang/crates.io-index"152checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"153154[[package]]155name = "arrayvec"156version = "0.7.2"157source = "registry+https://github.com/rust-lang/crates.io-index"158checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"159160[[package]]161name = "asn1_der"162version = "0.7.5"163source = "registry+https://github.com/rust-lang/crates.io-index"164checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21"165166[[package]]167name = "assert_matches"168version = "1.5.0"169source = "registry+https://github.com/rust-lang/crates.io-index"170checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"171172[[package]]173name = "async-attributes"174version = "1.1.2"175source = "registry+https://github.com/rust-lang/crates.io-index"176checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"177dependencies = [178 "quote",179 "syn",180]181182[[package]]183name = "async-channel"184version = "1.6.1"185source = "registry+https://github.com/rust-lang/crates.io-index"186checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"187dependencies = [188 "concurrent-queue",189 "event-listener",190 "futures-core",191]192193[[package]]194name = "async-executor"195version = "1.4.1"196source = "registry+https://github.com/rust-lang/crates.io-index"197checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"198dependencies = [199 "async-task",200 "concurrent-queue",201 "fastrand",202 "futures-lite",203 "once_cell",204 "slab",205]206207[[package]]208name = "async-global-executor"209version = "2.0.2"210source = "registry+https://github.com/rust-lang/crates.io-index"211checksum = "9586ec52317f36de58453159d48351bc244bc24ced3effc1fce22f3d48664af6"212dependencies = [213 "async-channel",214 "async-executor",215 "async-io",216 "async-mutex",217 "blocking",218 "futures-lite",219 "num_cpus",220 "once_cell",221]222223[[package]]224name = "async-io"225version = "1.6.0"226source = "registry+https://github.com/rust-lang/crates.io-index"227checksum = "a811e6a479f2439f0c04038796b5cfb3d2ad56c230e0f2d3f7b04d68cfee607b"228dependencies = [229 "concurrent-queue",230 "futures-lite",231 "libc",232 "log",233 "once_cell",234 "parking",235 "polling",236 "slab",237 "socket2 0.4.2",238 "waker-fn",239 "winapi 0.3.9",240]241242[[package]]243name = "async-lock"244version = "2.4.0"245source = "registry+https://github.com/rust-lang/crates.io-index"246checksum = "e6a8ea61bf9947a1007c5cada31e647dbc77b103c679858150003ba697ea798b"247dependencies = [248 "event-listener",249]250251[[package]]252name = "async-mutex"253version = "1.4.0"254source = "registry+https://github.com/rust-lang/crates.io-index"255checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"256dependencies = [257 "event-listener",258]259260[[package]]261name = "async-process"262version = "1.2.0"263source = "registry+https://github.com/rust-lang/crates.io-index"264checksum = "b21b63ab5a0db0369deb913540af2892750e42d949faacc7a61495ac418a1692"265dependencies = [266 "async-io",267 "blocking",268 "cfg-if 1.0.0",269 "event-listener",270 "futures-lite",271 "libc",272 "once_cell",273 "signal-hook",274 "winapi 0.3.9",275]276277[[package]]278name = "async-std"279version = "1.10.0"280source = "registry+https://github.com/rust-lang/crates.io-index"281checksum = "f8056f1455169ab86dd47b47391e4ab0cbd25410a70e9fe675544f49bafaf952"282dependencies = [283 "async-attributes",284 "async-channel",285 "async-global-executor",286 "async-io",287 "async-lock",288 "async-process",289 "crossbeam-utils",290 "futures-channel",291 "futures-core",292 "futures-io",293 "futures-lite",294 "gloo-timers",295 "kv-log-macro",296 "log",297 "memchr",298 "num_cpus",299 "once_cell",300 "pin-project-lite 0.2.7",301 "pin-utils",302 "slab",303 "wasm-bindgen-futures",304]305306[[package]]307name = "async-std-resolver"308version = "0.20.3"309source = "registry+https://github.com/rust-lang/crates.io-index"310checksum = "ed4e2c3da14d8ad45acb1e3191db7a918e9505b6f155b218e70a7c9a1a48c638"311dependencies = [312 "async-std",313 "async-trait",314 "futures-io",315 "futures-util",316 "pin-utils",317 "trust-dns-resolver",318]319320[[package]]321name = "async-task"322version = "4.0.3"323source = "registry+https://github.com/rust-lang/crates.io-index"324checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0"325326[[package]]327name = "async-trait"328version = "0.1.51"329source = "registry+https://github.com/rust-lang/crates.io-index"330checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e"331dependencies = [332 "proc-macro2",333 "quote",334 "syn",335]336337[[package]]338name = "asynchronous-codec"339version = "0.5.0"340source = "registry+https://github.com/rust-lang/crates.io-index"341checksum = "fb4401f0a3622dad2e0763fa79e0eb328bc70fb7dccfdd645341f00d671247d6"342dependencies = [343 "bytes 1.1.0",344 "futures-sink",345 "futures-util",346 "memchr",347 "pin-project-lite 0.2.7",348]349350[[package]]351name = "asynchronous-codec"352version = "0.6.0"353source = "registry+https://github.com/rust-lang/crates.io-index"354checksum = "f0de5164e5edbf51c45fb8c2d9664ae1c095cce1b265ecf7569093c0d66ef690"355dependencies = [356 "bytes 1.1.0",357 "futures-sink",358 "futures-util",359 "memchr",360 "pin-project-lite 0.2.7",361]362363[[package]]364name = "atomic"365version = "0.5.0"366source = "registry+https://github.com/rust-lang/crates.io-index"367checksum = "c3410529e8288c463bedb5930f82833bc0c90e5d2fe639a56582a4d09220b281"368dependencies = [369 "autocfg",370]371372[[package]]373name = "atomic-waker"374version = "1.0.0"375source = "registry+https://github.com/rust-lang/crates.io-index"376checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"377378[[package]]379name = "atty"380version = "0.2.14"381source = "registry+https://github.com/rust-lang/crates.io-index"382checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"383dependencies = [384 "hermit-abi",385 "libc",386 "winapi 0.3.9",387]388389[[package]]390name = "autocfg"391version = "1.0.1"392source = "registry+https://github.com/rust-lang/crates.io-index"393checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"394395[[package]]396name = "backtrace"397version = "0.3.63"398source = "registry+https://github.com/rust-lang/crates.io-index"399checksum = "321629d8ba6513061f26707241fa9bc89524ff1cd7a915a97ef0c62c666ce1b6"400dependencies = [401 "addr2line 0.17.0",402 "cc",403 "cfg-if 1.0.0",404 "libc",405 "miniz_oxide",406 "object 0.27.1",407 "rustc-demangle",408]409410[[package]]411name = "bae"412version = "0.1.6"413source = "registry+https://github.com/rust-lang/crates.io-index"414checksum = "ec107f431ee3d8a8e45e6dd117adab769556ef463959e77bf6a4888d5fd500cf"415dependencies = [416 "heck",417 "proc-macro-error 0.4.12",418 "proc-macro2",419 "quote",420 "syn",421]422423[[package]]424name = "base-x"425version = "0.2.8"426source = "registry+https://github.com/rust-lang/crates.io-index"427checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"428429[[package]]430name = "base58"431version = "0.2.0"432source = "registry+https://github.com/rust-lang/crates.io-index"433checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581"434435[[package]]436name = "base64"437version = "0.12.3"438source = "registry+https://github.com/rust-lang/crates.io-index"439checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"440441[[package]]442name = "base64"443version = "0.13.0"444source = "registry+https://github.com/rust-lang/crates.io-index"445checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"446447[[package]]448name = "beef"449version = "0.5.1"450source = "registry+https://github.com/rust-lang/crates.io-index"451checksum = "bed554bd50246729a1ec158d08aa3235d1b69d94ad120ebe187e28894787e736"452dependencies = [453 "serde",454]455456[[package]]457name = "beefy-gadget"458version = "4.0.0-dev"459source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"460dependencies = [461 "beefy-primitives",462 "fnv",463 "futures 0.3.17",464 "log",465 "parity-scale-codec",466 "parking_lot 0.11.2",467 "sc-client-api",468 "sc-keystore",469 "sc-network",470 "sc-network-gossip",471 "sc-utils",472 "sp-api",473 "sp-application-crypto",474 "sp-arithmetic",475 "sp-blockchain",476 "sp-core",477 "sp-keystore",478 "sp-runtime",479 "substrate-prometheus-endpoint",480 "thiserror",481 "wasm-timer",482]483484[[package]]485name = "beefy-gadget-rpc"486version = "4.0.0-dev"487source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"488dependencies = [489 "beefy-gadget",490 "beefy-primitives",491 "futures 0.3.17",492 "jsonrpc-core",493 "jsonrpc-core-client",494 "jsonrpc-derive",495 "jsonrpc-pubsub",496 "log",497 "parity-scale-codec",498 "sc-rpc",499 "serde",500 "sp-core",501 "sp-runtime",502]503504[[package]]505name = "beefy-merkle-tree"506version = "4.0.0-dev"507source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"508509[[package]]510name = "beefy-primitives"511version = "4.0.0-dev"512source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"513dependencies = [514 "parity-scale-codec",515 "scale-info",516 "sp-api",517 "sp-application-crypto",518 "sp-core",519 "sp-runtime",520 "sp-std",521]522523[[package]]524name = "bincode"525version = "1.3.3"526source = "registry+https://github.com/rust-lang/crates.io-index"527checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"528dependencies = [529 "serde",530]531532[[package]]533name = "bindgen"534version = "0.59.1"535source = "registry+https://github.com/rust-lang/crates.io-index"536checksum = "453c49e5950bb0eb63bb3df640e31618846c89d5b7faa54040d76e98e0134375"537dependencies = [538 "bitflags",539 "cexpr",540 "clang-sys",541 "lazy_static",542 "lazycell",543 "peeking_take_while",544 "proc-macro2",545 "quote",546 "regex",547 "rustc-hash",548 "shlex",549]550551[[package]]552name = "bitflags"553version = "1.3.2"554source = "registry+https://github.com/rust-lang/crates.io-index"555checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"556557[[package]]558name = "bitvec"559version = "0.19.5"560source = "registry+https://github.com/rust-lang/crates.io-index"561checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321"562dependencies = [563 "funty",564 "radium 0.5.3",565 "tap",566 "wyz",567]568569[[package]]570name = "bitvec"571version = "0.20.4"572source = "registry+https://github.com/rust-lang/crates.io-index"573checksum = "7774144344a4faa177370406a7ff5f1da24303817368584c6206c8303eb07848"574dependencies = [575 "funty",576 "radium 0.6.2",577 "tap",578 "wyz",579]580581[[package]]582name = "blake2"583version = "0.9.2"584source = "registry+https://github.com/rust-lang/crates.io-index"585checksum = "0a4e37d16930f5459780f5621038b6382b9bb37c19016f39fb6b5808d831f174"586dependencies = [587 "crypto-mac 0.8.0",588 "digest 0.9.0",589 "opaque-debug 0.3.0",590]591592[[package]]593name = "blake2-rfc"594version = "0.2.18"595source = "registry+https://github.com/rust-lang/crates.io-index"596checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"597dependencies = [598 "arrayvec 0.4.12",599 "constant_time_eq",600]601602[[package]]603name = "blake2b_simd"604version = "0.5.11"605source = "registry+https://github.com/rust-lang/crates.io-index"606checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"607dependencies = [608 "arrayref",609 "arrayvec 0.5.2",610 "constant_time_eq",611]612613[[package]]614name = "blake2s_simd"615version = "0.5.11"616source = "registry+https://github.com/rust-lang/crates.io-index"617checksum = "9e461a7034e85b211a4acb57ee2e6730b32912b06c08cc242243c39fc21ae6a2"618dependencies = [619 "arrayref",620 "arrayvec 0.5.2",621 "constant_time_eq",622]623624[[package]]625name = "blake3"626version = "0.3.8"627source = "registry+https://github.com/rust-lang/crates.io-index"628checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3"629dependencies = [630 "arrayref",631 "arrayvec 0.5.2",632 "cc",633 "cfg-if 0.1.10",634 "constant_time_eq",635 "crypto-mac 0.8.0",636 "digest 0.9.0",637]638639[[package]]640name = "block-buffer"641version = "0.7.3"642source = "registry+https://github.com/rust-lang/crates.io-index"643checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"644dependencies = [645 "block-padding 0.1.5",646 "byte-tools",647 "byteorder",648 "generic-array 0.12.4",649]650651[[package]]652name = "block-buffer"653version = "0.9.0"654source = "registry+https://github.com/rust-lang/crates.io-index"655checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"656dependencies = [657 "block-padding 0.2.1",658 "generic-array 0.14.4",659]660661[[package]]662name = "block-padding"663version = "0.1.5"664source = "registry+https://github.com/rust-lang/crates.io-index"665checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"666dependencies = [667 "byte-tools",668]669670[[package]]671name = "block-padding"672version = "0.2.1"673source = "registry+https://github.com/rust-lang/crates.io-index"674checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"675676[[package]]677name = "blocking"678version = "1.0.2"679source = "registry+https://github.com/rust-lang/crates.io-index"680checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9"681dependencies = [682 "async-channel",683 "async-task",684 "atomic-waker",685 "fastrand",686 "futures-lite",687 "once_cell",688]689690[[package]]691name = "bounded-vec"692version = "0.4.0"693source = "registry+https://github.com/rust-lang/crates.io-index"694checksum = "afdd1dffefe5fc66262a524b91087c43b16e478b2e3dc49eb11b0e2fd6b6ec90"695dependencies = [696 "thiserror",697]698699[[package]]700name = "bp-header-chain"701version = "0.1.0"702source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"703dependencies = [704 "finality-grandpa",705 "frame-support",706 "parity-scale-codec",707 "scale-info",708 "serde",709 "sp-core",710 "sp-finality-grandpa",711 "sp-runtime",712 "sp-std",713]714715[[package]]716name = "bp-message-dispatch"717version = "0.1.0"718source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"719dependencies = [720 "bp-runtime",721 "frame-support",722 "parity-scale-codec",723 "scale-info",724 "sp-std",725]726727[[package]]728name = "bp-messages"729version = "0.1.0"730source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"731dependencies = [732 "bitvec 0.20.4",733 "bp-runtime",734 "frame-support",735 "frame-system",736 "impl-trait-for-tuples 0.2.1",737 "parity-scale-codec",738 "scale-info",739 "serde",740 "sp-std",741]742743[[package]]744name = "bp-polkadot-core"745version = "0.1.0"746source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"747dependencies = [748 "bp-messages",749 "bp-runtime",750 "frame-support",751 "frame-system",752 "parity-scale-codec",753 "scale-info",754 "sp-api",755 "sp-core",756 "sp-runtime",757 "sp-std",758 "sp-version",759]760761[[package]]762name = "bp-rialto"763version = "0.1.0"764source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"765dependencies = [766 "bp-messages",767 "bp-runtime",768 "frame-support",769 "frame-system",770 "sp-api",771 "sp-core",772 "sp-runtime",773 "sp-std",774]775776[[package]]777name = "bp-rococo"778version = "0.1.0"779source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"780dependencies = [781 "bp-messages",782 "bp-polkadot-core",783 "bp-runtime",784 "frame-support",785 "parity-scale-codec",786 "smallvec",787 "sp-api",788 "sp-runtime",789 "sp-std",790 "sp-version",791]792793[[package]]794name = "bp-runtime"795version = "0.1.0"796source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"797dependencies = [798 "frame-support",799 "hash-db",800 "num-traits",801 "parity-scale-codec",802 "scale-info",803 "sp-core",804 "sp-io",805 "sp-runtime",806 "sp-state-machine",807 "sp-std",808 "sp-trie",809]810811[[package]]812name = "bp-test-utils"813version = "0.1.0"814source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"815dependencies = [816 "bp-header-chain",817 "ed25519-dalek",818 "finality-grandpa",819 "parity-scale-codec",820 "sp-application-crypto",821 "sp-finality-grandpa",822 "sp-runtime",823 "sp-std",824]825826[[package]]827name = "bp-wococo"828version = "0.1.0"829source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"830dependencies = [831 "bp-messages",832 "bp-polkadot-core",833 "bp-rococo",834 "bp-runtime",835 "parity-scale-codec",836 "sp-api",837 "sp-runtime",838 "sp-std",839]840841[[package]]842name = "bridge-runtime-common"843version = "0.1.0"844source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"845dependencies = [846 "bp-message-dispatch",847 "bp-messages",848 "bp-runtime",849 "frame-support",850 "hash-db",851 "pallet-bridge-dispatch",852 "pallet-bridge-grandpa",853 "pallet-bridge-messages",854 "pallet-transaction-payment",855 "parity-scale-codec",856 "scale-info",857 "sp-core",858 "sp-runtime",859 "sp-state-machine",860 "sp-std",861 "sp-trie",862]863864[[package]]865name = "bs58"866version = "0.4.0"867source = "registry+https://github.com/rust-lang/crates.io-index"868checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"869870[[package]]871name = "bstr"872version = "0.2.17"873source = "registry+https://github.com/rust-lang/crates.io-index"874checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"875dependencies = [876 "memchr",877]878879[[package]]880name = "build-helper"881version = "0.1.1"882source = "registry+https://github.com/rust-lang/crates.io-index"883checksum = "bdce191bf3fa4995ce948c8c83b4640a1745457a149e73c6db75b4ffe36aad5f"884dependencies = [885 "semver 0.6.0",886]887888[[package]]889name = "bumpalo"890version = "3.8.0"891source = "registry+https://github.com/rust-lang/crates.io-index"892checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c"893894[[package]]895name = "byte-slice-cast"896version = "1.2.0"897source = "registry+https://github.com/rust-lang/crates.io-index"898checksum = "1d30c751592b77c499e7bce34d99d67c2c11bdc0574e9a488ddade14150a4698"899900[[package]]901name = "byte-tools"902version = "0.3.1"903source = "registry+https://github.com/rust-lang/crates.io-index"904checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"905906[[package]]907name = "byteorder"908version = "1.4.3"909source = "registry+https://github.com/rust-lang/crates.io-index"910checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"911912[[package]]913name = "bytes"914version = "0.4.12"915source = "registry+https://github.com/rust-lang/crates.io-index"916checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"917dependencies = [918 "byteorder",919 "iovec",920]921922[[package]]923name = "bytes"924version = "0.5.6"925source = "registry+https://github.com/rust-lang/crates.io-index"926checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"927928[[package]]929name = "bytes"930version = "1.1.0"931source = "registry+https://github.com/rust-lang/crates.io-index"932checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"933934[[package]]935name = "cache-padded"936version = "1.1.1"937source = "registry+https://github.com/rust-lang/crates.io-index"938checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"939940[[package]]941name = "camino"942version = "1.0.5"943source = "registry+https://github.com/rust-lang/crates.io-index"944checksum = "52d74260d9bf6944e2208aa46841b4b8f0d7ffc0849a06837b2f510337f86b2b"945dependencies = [946 "serde",947]948949[[package]]950name = "cargo-platform"951version = "0.1.2"952source = "registry+https://github.com/rust-lang/crates.io-index"953checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27"954dependencies = [955 "serde",956]957958[[package]]959name = "cargo_metadata"960version = "0.13.1"961source = "registry+https://github.com/rust-lang/crates.io-index"962checksum = "081e3f0755c1f380c2d010481b6fa2e02973586d5f2b24eebb7a2a1d98b143d8"963dependencies = [964 "camino",965 "cargo-platform",966 "semver 0.11.0",967 "semver-parser 0.10.2",968 "serde",969 "serde_json",970]971972[[package]]973name = "cc"974version = "1.0.71"975source = "registry+https://github.com/rust-lang/crates.io-index"976checksum = "79c2681d6594606957bbb8631c4b90a7fcaaa72cdb714743a437b156d6a7eedd"977dependencies = [978 "jobserver",979]980981[[package]]982name = "cexpr"983version = "0.5.0"984source = "registry+https://github.com/rust-lang/crates.io-index"985checksum = "db507a7679252d2276ed0dd8113c6875ec56d3089f9225b2b42c30cc1f8e5c89"986dependencies = [987 "nom",988]989990[[package]]991name = "cfg-if"992version = "0.1.10"993source = "registry+https://github.com/rust-lang/crates.io-index"994checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"995996[[package]]997name = "cfg-if"998version = "1.0.0"999source = "registry+https://github.com/rust-lang/crates.io-index"1000checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"10011002[[package]]1003name = "cfg_aliases"1004version = "0.1.1"1005source = "registry+https://github.com/rust-lang/crates.io-index"1006checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"10071008[[package]]1009name = "chacha20"1010version = "0.7.1"1011source = "registry+https://github.com/rust-lang/crates.io-index"1012checksum = "fee7ad89dc1128635074c268ee661f90c3f7e83d9fd12910608c36b47d6c3412"1013dependencies = [1014 "cfg-if 1.0.0",1015 "cipher",1016 "cpufeatures 0.1.5",1017 "zeroize",1018]10191020[[package]]1021name = "chacha20poly1305"1022version = "0.8.0"1023source = "registry+https://github.com/rust-lang/crates.io-index"1024checksum = "1580317203210c517b6d44794abfbe600698276db18127e37ad3e69bf5e848e5"1025dependencies = [1026 "aead",1027 "chacha20",1028 "cipher",1029 "poly1305",1030 "zeroize",1031]10321033[[package]]1034name = "chrono"1035version = "0.4.19"1036source = "registry+https://github.com/rust-lang/crates.io-index"1037checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"1038dependencies = [1039 "libc",1040 "num-integer",1041 "num-traits",1042 "time",1043 "winapi 0.3.9",1044]10451046[[package]]1047name = "cid"1048version = "0.6.1"1049source = "registry+https://github.com/rust-lang/crates.io-index"1050checksum = "ff0e3bc0b6446b3f9663c1a6aba6ef06c5aeaa1bc92bd18077be337198ab9768"1051dependencies = [1052 "multibase",1053 "multihash 0.13.2",1054 "unsigned-varint 0.5.1",1055]10561057[[package]]1058name = "cipher"1059version = "0.3.0"1060source = "registry+https://github.com/rust-lang/crates.io-index"1061checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"1062dependencies = [1063 "generic-array 0.14.4",1064]10651066[[package]]1067name = "ckb-merkle-mountain-range"1068version = "0.3.2"1069source = "registry+https://github.com/rust-lang/crates.io-index"1070checksum = "4f061f97d64fd1822664bdfb722f7ae5469a97b77567390f7442be5b5dc82a5b"1071dependencies = [1072 "cfg-if 0.1.10",1073]10741075[[package]]1076name = "clang-sys"1077version = "1.3.0"1078source = "registry+https://github.com/rust-lang/crates.io-index"1079checksum = "fa66045b9cb23c2e9c1520732030608b02ee07e5cfaa5a521ec15ded7fa24c90"1080dependencies = [1081 "glob",1082 "libc",1083 "libloading 0.7.1",1084]10851086[[package]]1087name = "clap"1088version = "2.33.3"1089source = "registry+https://github.com/rust-lang/crates.io-index"1090checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"1091dependencies = [1092 "ansi_term 0.11.0",1093 "atty",1094 "bitflags",1095 "strsim 0.8.0",1096 "textwrap",1097 "unicode-width",1098 "vec_map",1099]11001101[[package]]1102name = "cloudabi"1103version = "0.0.3"1104source = "registry+https://github.com/rust-lang/crates.io-index"1105checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"1106dependencies = [1107 "bitflags",1108]11091110[[package]]1111name = "concurrent-queue"1112version = "1.2.2"1113source = "registry+https://github.com/rust-lang/crates.io-index"1114checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"1115dependencies = [1116 "cache-padded",1117]11181119[[package]]1120name = "constant_time_eq"1121version = "0.1.5"1122source = "registry+https://github.com/rust-lang/crates.io-index"1123checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"11241125[[package]]1126name = "convert_case"1127version = "0.4.0"1128source = "registry+https://github.com/rust-lang/crates.io-index"1129checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"11301131[[package]]1132name = "core-foundation"1133version = "0.9.2"1134source = "registry+https://github.com/rust-lang/crates.io-index"1135checksum = "6888e10551bb93e424d8df1d07f1a8b4fceb0001a3a4b048bfc47554946f47b3"1136dependencies = [1137 "core-foundation-sys",1138 "libc",1139]11401141[[package]]1142name = "core-foundation-sys"1143version = "0.8.3"1144source = "registry+https://github.com/rust-lang/crates.io-index"1145checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"11461147[[package]]1148name = "cpp_demangle"1149version = "0.3.3"1150source = "registry+https://github.com/rust-lang/crates.io-index"1151checksum = "8ea47428dc9d2237f3c6bc134472edfd63ebba0af932e783506dcfd66f10d18a"1152dependencies = [1153 "cfg-if 1.0.0",1154]11551156[[package]]1157name = "cpufeatures"1158version = "0.1.5"1159source = "registry+https://github.com/rust-lang/crates.io-index"1160checksum = "66c99696f6c9dd7f35d486b9d04d7e6e202aa3e8c40d553f2fdf5e7e0c6a71ef"1161dependencies = [1162 "libc",1163]11641165[[package]]1166name = "cpufeatures"1167version = "0.2.1"1168source = "registry+https://github.com/rust-lang/crates.io-index"1169checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"1170dependencies = [1171 "libc",1172]11731174[[package]]1175name = "cranelift-bforest"1176version = "0.77.0"1177source = "registry+https://github.com/rust-lang/crates.io-index"1178checksum = "15013642ddda44eebcf61365b2052a23fd8b7314f90ba44aa059ec02643c5139"1179dependencies = [1180 "cranelift-entity",1181]11821183[[package]]1184name = "cranelift-codegen"1185version = "0.77.0"1186source = "registry+https://github.com/rust-lang/crates.io-index"1187checksum = "298f2a7ed5fdcb062d8e78b7496b0f4b95265d20245f2d0ca88f846dd192a3a3"1188dependencies = [1189 "cranelift-bforest",1190 "cranelift-codegen-meta",1191 "cranelift-codegen-shared",1192 "cranelift-entity",1193 "gimli 0.25.0",1194 "log",1195 "regalloc",1196 "smallvec",1197 "target-lexicon",1198]11991200[[package]]1201name = "cranelift-codegen-meta"1202version = "0.77.0"1203source = "registry+https://github.com/rust-lang/crates.io-index"1204checksum = "5cf504261ac62dfaf4ffb3f41d88fd885e81aba947c1241275043885bc5f0bac"1205dependencies = [1206 "cranelift-codegen-shared",1207 "cranelift-entity",1208]12091210[[package]]1211name = "cranelift-codegen-shared"1212version = "0.77.0"1213source = "registry+https://github.com/rust-lang/crates.io-index"1214checksum = "1cd2a72db4301dbe7e5a4499035eedc1e82720009fb60603e20504d8691fa9cd"12151216[[package]]1217name = "cranelift-entity"1218version = "0.77.0"1219source = "registry+https://github.com/rust-lang/crates.io-index"1220checksum = "48868faa07cacf948dc4a1773648813c0e453ff9467e800ff10f6a78c021b546"1221dependencies = [1222 "serde",1223]12241225[[package]]1226name = "cranelift-frontend"1227version = "0.77.0"1228source = "registry+https://github.com/rust-lang/crates.io-index"1229checksum = "351c9d13b4ecd1a536215ec2fd1c3ee9ee8bc31af172abf1e45ed0adb7a931df"1230dependencies = [1231 "cranelift-codegen",1232 "log",1233 "smallvec",1234 "target-lexicon",1235]12361237[[package]]1238name = "cranelift-native"1239version = "0.77.0"1240source = "registry+https://github.com/rust-lang/crates.io-index"1241checksum = "6df8b556663d7611b137b24db7f6c8d9a8a27d7f29c7ea7835795152c94c1b75"1242dependencies = [1243 "cranelift-codegen",1244 "libc",1245 "target-lexicon",1246]12471248[[package]]1249name = "cranelift-wasm"1250version = "0.77.0"1251source = "registry+https://github.com/rust-lang/crates.io-index"1252checksum = "7a69816d90db694fa79aa39b89dda7208a4ac74b6f2b8f3c4da26ee1c8bdfc5e"1253dependencies = [1254 "cranelift-codegen",1255 "cranelift-entity",1256 "cranelift-frontend",1257 "itertools",1258 "log",1259 "smallvec",1260 "wasmparser",1261 "wasmtime-types",1262]12631264[[package]]1265name = "crc32fast"1266version = "1.2.1"1267source = "registry+https://github.com/rust-lang/crates.io-index"1268checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"1269dependencies = [1270 "cfg-if 1.0.0",1271]12721273[[package]]1274name = "crossbeam-channel"1275version = "0.5.1"1276source = "registry+https://github.com/rust-lang/crates.io-index"1277checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"1278dependencies = [1279 "cfg-if 1.0.0",1280 "crossbeam-utils",1281]12821283[[package]]1284name = "crossbeam-deque"1285version = "0.8.1"1286source = "registry+https://github.com/rust-lang/crates.io-index"1287checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"1288dependencies = [1289 "cfg-if 1.0.0",1290 "crossbeam-epoch",1291 "crossbeam-utils",1292]12931294[[package]]1295name = "crossbeam-epoch"1296version = "0.9.5"1297source = "registry+https://github.com/rust-lang/crates.io-index"1298checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd"1299dependencies = [1300 "cfg-if 1.0.0",1301 "crossbeam-utils",1302 "lazy_static",1303 "memoffset",1304 "scopeguard",1305]13061307[[package]]1308name = "crossbeam-utils"1309version = "0.8.5"1310source = "registry+https://github.com/rust-lang/crates.io-index"1311checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"1312dependencies = [1313 "cfg-if 1.0.0",1314 "lazy_static",1315]13161317[[package]]1318name = "crunchy"1319version = "0.2.2"1320source = "registry+https://github.com/rust-lang/crates.io-index"1321checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"13221323[[package]]1324name = "crypto-mac"1325version = "0.7.0"1326source = "registry+https://github.com/rust-lang/crates.io-index"1327checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"1328dependencies = [1329 "generic-array 0.12.4",1330 "subtle 1.0.0",1331]13321333[[package]]1334name = "crypto-mac"1335version = "0.8.0"1336source = "registry+https://github.com/rust-lang/crates.io-index"1337checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"1338dependencies = [1339 "generic-array 0.14.4",1340 "subtle 2.4.1",1341]13421343[[package]]1344name = "crypto-mac"1345version = "0.11.1"1346source = "registry+https://github.com/rust-lang/crates.io-index"1347checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"1348dependencies = [1349 "generic-array 0.14.4",1350 "subtle 2.4.1",1351]13521353[[package]]1354name = "ct-logs"1355version = "0.8.0"1356source = "registry+https://github.com/rust-lang/crates.io-index"1357checksum = "c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8"1358dependencies = [1359 "sct",1360]13611362[[package]]1363name = "ctor"1364version = "0.1.21"1365source = "registry+https://github.com/rust-lang/crates.io-index"1366checksum = "ccc0a48a9b826acdf4028595adc9db92caea352f7af011a3034acd172a52a0aa"1367dependencies = [1368 "quote",1369 "syn",1370]13711372[[package]]1373name = "ctr"1374version = "0.8.0"1375source = "registry+https://github.com/rust-lang/crates.io-index"1376checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"1377dependencies = [1378 "cipher",1379]13801381[[package]]1382name = "cuckoofilter"1383version = "0.5.0"1384source = "registry+https://github.com/rust-lang/crates.io-index"1385checksum = "b810a8449931679f64cd7eef1bbd0fa315801b6d5d9cdc1ace2804d6529eee18"1386dependencies = [1387 "byteorder",1388 "fnv",1389 "rand 0.7.3",1390]13911392[[package]]1393name = "cumulus-client-cli"1394version = "0.1.0"1395source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1396dependencies = [1397 "sc-cli",1398 "sc-service",1399 "structopt",1400]14011402[[package]]1403name = "cumulus-client-collator"1404version = "0.1.0"1405source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1406dependencies = [1407 "cumulus-client-consensus-common",1408 "cumulus-client-network",1409 "cumulus-primitives-core",1410 "futures 0.3.17",1411 "parity-scale-codec",1412 "parking_lot 0.10.2",1413 "polkadot-node-primitives",1414 "polkadot-node-subsystem",1415 "polkadot-overseer",1416 "polkadot-primitives",1417 "sc-client-api",1418 "sp-api",1419 "sp-consensus",1420 "sp-core",1421 "sp-runtime",1422 "tracing",1423]14241425[[package]]1426name = "cumulus-client-consensus-aura"1427version = "0.1.0"1428source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1429dependencies = [1430 "async-trait",1431 "cumulus-client-consensus-common",1432 "cumulus-primitives-core",1433 "futures 0.3.17",1434 "parity-scale-codec",1435 "polkadot-client",1436 "sc-client-api",1437 "sc-consensus",1438 "sc-consensus-aura",1439 "sc-consensus-slots",1440 "sc-telemetry",1441 "sp-api",1442 "sp-application-crypto",1443 "sp-block-builder",1444 "sp-blockchain",1445 "sp-consensus",1446 "sp-consensus-aura",1447 "sp-core",1448 "sp-inherents",1449 "sp-keystore",1450 "sp-runtime",1451 "substrate-prometheus-endpoint",1452 "tracing",1453]14541455[[package]]1456name = "cumulus-client-consensus-common"1457version = "0.1.0"1458source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1459dependencies = [1460 "async-trait",1461 "dyn-clone",1462 "futures 0.3.17",1463 "parity-scale-codec",1464 "polkadot-primitives",1465 "sc-client-api",1466 "sc-consensus",1467 "sp-api",1468 "sp-blockchain",1469 "sp-consensus",1470 "sp-runtime",1471 "sp-trie",1472 "tracing",1473]14741475[[package]]1476name = "cumulus-client-network"1477version = "0.1.0"1478source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1479dependencies = [1480 "derive_more",1481 "futures 0.3.17",1482 "futures-timer 3.0.2",1483 "parity-scale-codec",1484 "parking_lot 0.10.2",1485 "polkadot-client",1486 "polkadot-node-primitives",1487 "polkadot-parachain",1488 "polkadot-primitives",1489 "sc-client-api",1490 "sp-api",1491 "sp-blockchain",1492 "sp-consensus",1493 "sp-core",1494 "sp-runtime",1495 "tracing",1496]14971498[[package]]1499name = "cumulus-client-pov-recovery"1500version = "0.1.0"1501source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1502dependencies = [1503 "cumulus-primitives-core",1504 "futures 0.3.17",1505 "futures-timer 3.0.2",1506 "parity-scale-codec",1507 "polkadot-node-primitives",1508 "polkadot-node-subsystem",1509 "polkadot-overseer",1510 "polkadot-primitives",1511 "rand 0.8.4",1512 "sc-client-api",1513 "sc-consensus",1514 "sp-api",1515 "sp-consensus",1516 "sp-maybe-compressed-blob",1517 "sp-runtime",1518 "tracing",1519]15201521[[package]]1522name = "cumulus-client-service"1523version = "0.1.0"1524source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1525dependencies = [1526 "cumulus-client-collator",1527 "cumulus-client-consensus-common",1528 "cumulus-client-pov-recovery",1529 "cumulus-primitives-core",1530 "parity-scale-codec",1531 "parking_lot 0.10.2",1532 "polkadot-overseer",1533 "polkadot-primitives",1534 "polkadot-service",1535 "sc-chain-spec",1536 "sc-client-api",1537 "sc-consensus",1538 "sc-consensus-babe",1539 "sc-service",1540 "sc-telemetry",1541 "sc-tracing",1542 "sp-api",1543 "sp-blockchain",1544 "sp-consensus",1545 "sp-core",1546 "sp-runtime",1547 "tracing",1548]15491550[[package]]1551name = "cumulus-pallet-aura-ext"1552version = "0.1.0"1553source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1554dependencies = [1555 "frame-executive",1556 "frame-support",1557 "frame-system",1558 "pallet-aura",1559 "parity-scale-codec",1560 "scale-info",1561 "serde",1562 "sp-application-crypto",1563 "sp-consensus-aura",1564 "sp-runtime",1565 "sp-std",1566]15671568[[package]]1569name = "cumulus-pallet-dmp-queue"1570version = "0.1.0"1571source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1572dependencies = [1573 "cumulus-primitives-core",1574 "frame-support",1575 "frame-system",1576 "log",1577 "parity-scale-codec",1578 "scale-info",1579 "sp-io",1580 "sp-runtime",1581 "sp-std",1582 "xcm",1583 "xcm-executor",1584]15851586[[package]]1587name = "cumulus-pallet-parachain-system"1588version = "0.1.0"1589source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1590dependencies = [1591 "cumulus-pallet-parachain-system-proc-macro",1592 "cumulus-primitives-core",1593 "cumulus-primitives-parachain-inherent",1594 "environmental",1595 "frame-support",1596 "frame-system",1597 "log",1598 "pallet-balances",1599 "parity-scale-codec",1600 "polkadot-parachain",1601 "scale-info",1602 "serde",1603 "sp-core",1604 "sp-externalities",1605 "sp-inherents",1606 "sp-io",1607 "sp-runtime",1608 "sp-state-machine",1609 "sp-std",1610 "sp-trie",1611 "sp-version",1612 "xcm",1613]16141615[[package]]1616name = "cumulus-pallet-parachain-system-proc-macro"1617version = "0.1.0"1618source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1619dependencies = [1620 "proc-macro-crate 1.1.0",1621 "proc-macro2",1622 "quote",1623 "syn",1624]16251626[[package]]1627name = "cumulus-pallet-xcm"1628version = "0.1.0"1629source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1630dependencies = [1631 "cumulus-primitives-core",1632 "frame-support",1633 "frame-system",1634 "parity-scale-codec",1635 "scale-info",1636 "serde",1637 "sp-io",1638 "sp-runtime",1639 "sp-std",1640 "xcm",1641]16421643[[package]]1644name = "cumulus-pallet-xcmp-queue"1645version = "0.1.0"1646source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1647dependencies = [1648 "cumulus-primitives-core",1649 "frame-support",1650 "frame-system",1651 "log",1652 "parity-scale-codec",1653 "rand_chacha 0.3.1",1654 "scale-info",1655 "sp-runtime",1656 "sp-std",1657 "xcm",1658 "xcm-executor",1659]16601661[[package]]1662name = "cumulus-primitives-core"1663version = "0.1.0"1664source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1665dependencies = [1666 "frame-support",1667 "impl-trait-for-tuples 0.2.1",1668 "parity-scale-codec",1669 "polkadot-core-primitives",1670 "polkadot-parachain",1671 "polkadot-primitives",1672 "sp-api",1673 "sp-runtime",1674 "sp-std",1675 "sp-trie",1676]16771678[[package]]1679name = "cumulus-primitives-parachain-inherent"1680version = "0.1.0"1681source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1682dependencies = [1683 "async-trait",1684 "cumulus-primitives-core",1685 "cumulus-test-relay-sproof-builder",1686 "parity-scale-codec",1687 "polkadot-client",1688 "sc-client-api",1689 "scale-info",1690 "sp-api",1691 "sp-core",1692 "sp-inherents",1693 "sp-runtime",1694 "sp-state-machine",1695 "sp-std",1696 "sp-trie",1697 "tracing",1698]16991700[[package]]1701name = "cumulus-primitives-timestamp"1702version = "0.1.0"1703source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1704dependencies = [1705 "cumulus-primitives-core",1706 "sp-inherents",1707 "sp-std",1708 "sp-timestamp",1709]17101711[[package]]1712name = "cumulus-primitives-utility"1713version = "0.1.0"1714source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1715dependencies = [1716 "cumulus-primitives-core",1717 "frame-support",1718 "parity-scale-codec",1719 "polkadot-core-primitives",1720 "polkadot-parachain",1721 "polkadot-primitives",1722 "sp-runtime",1723 "sp-std",1724 "sp-trie",1725 "xcm",1726]17271728[[package]]1729name = "cumulus-test-relay-sproof-builder"1730version = "0.1.0"1731source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"1732dependencies = [1733 "cumulus-primitives-core",1734 "parity-scale-codec",1735 "polkadot-primitives",1736 "sp-runtime",1737 "sp-state-machine",1738 "sp-std",1739]17401741[[package]]1742name = "curve25519-dalek"1743version = "2.1.3"1744source = "registry+https://github.com/rust-lang/crates.io-index"1745checksum = "4a9b85542f99a2dfa2a1b8e192662741c9859a846b296bef1c92ef9b58b5a216"1746dependencies = [1747 "byteorder",1748 "digest 0.8.1",1749 "rand_core 0.5.1",1750 "subtle 2.4.1",1751 "zeroize",1752]17531754[[package]]1755name = "curve25519-dalek"1756version = "3.2.0"1757source = "registry+https://github.com/rust-lang/crates.io-index"1758checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"1759dependencies = [1760 "byteorder",1761 "digest 0.9.0",1762 "rand_core 0.5.1",1763 "subtle 2.4.1",1764 "zeroize",1765]17661767[[package]]1768name = "darling"1769version = "0.13.0"1770source = "registry+https://github.com/rust-lang/crates.io-index"1771checksum = "757c0ded2af11d8e739c4daea1ac623dd1624b06c844cf3f5a39f1bdbd99bb12"1772dependencies = [1773 "darling_core",1774 "darling_macro",1775]17761777[[package]]1778name = "darling_core"1779version = "0.13.0"1780source = "registry+https://github.com/rust-lang/crates.io-index"1781checksum = "2c34d8efb62d0c2d7f60ece80f75e5c63c1588ba68032740494b0b9a996466e3"1782dependencies = [1783 "fnv",1784 "ident_case",1785 "proc-macro2",1786 "quote",1787 "strsim 0.10.0",1788 "syn",1789]17901791[[package]]1792name = "darling_macro"1793version = "0.13.0"1794source = "registry+https://github.com/rust-lang/crates.io-index"1795checksum = "ade7bff147130fe5e6d39f089c6bd49ec0250f35d70b2eebf72afdfc919f15cc"1796dependencies = [1797 "darling_core",1798 "quote",1799 "syn",1800]18011802[[package]]1803name = "data-encoding"1804version = "2.3.2"1805source = "registry+https://github.com/rust-lang/crates.io-index"1806checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"18071808[[package]]1809name = "data-encoding-macro"1810version = "0.1.12"1811source = "registry+https://github.com/rust-lang/crates.io-index"1812checksum = "86927b7cd2fe88fa698b87404b287ab98d1a0063a34071d92e575b72d3029aca"1813dependencies = [1814 "data-encoding",1815 "data-encoding-macro-internal",1816]18171818[[package]]1819name = "data-encoding-macro-internal"1820version = "0.1.10"1821source = "registry+https://github.com/rust-lang/crates.io-index"1822checksum = "a5bbed42daaa95e780b60a50546aa345b8413a1e46f9a40a12907d3598f038db"1823dependencies = [1824 "data-encoding",1825 "syn",1826]18271828[[package]]1829name = "derivative"1830version = "2.2.0"1831source = "registry+https://github.com/rust-lang/crates.io-index"1832checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"1833dependencies = [1834 "proc-macro2",1835 "quote",1836 "syn",1837]18381839[[package]]1840name = "derive_more"1841version = "0.99.16"1842source = "registry+https://github.com/rust-lang/crates.io-index"1843checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df"1844dependencies = [1845 "convert_case",1846 "proc-macro2",1847 "quote",1848 "rustc_version 0.3.3",1849 "syn",1850]18511852[[package]]1853name = "digest"1854version = "0.8.1"1855source = "registry+https://github.com/rust-lang/crates.io-index"1856checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"1857dependencies = [1858 "generic-array 0.12.4",1859]18601861[[package]]1862name = "digest"1863version = "0.9.0"1864source = "registry+https://github.com/rust-lang/crates.io-index"1865checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"1866dependencies = [1867 "generic-array 0.14.4",1868]18691870[[package]]1871name = "directories"1872version = "3.0.2"1873source = "registry+https://github.com/rust-lang/crates.io-index"1874checksum = "e69600ff1703123957937708eb27f7a564e48885c537782722ed0ba3189ce1d7"1875dependencies = [1876 "dirs-sys",1877]18781879[[package]]1880name = "directories-next"1881version = "2.0.0"1882source = "registry+https://github.com/rust-lang/crates.io-index"1883checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"1884dependencies = [1885 "cfg-if 1.0.0",1886 "dirs-sys-next",1887]18881889[[package]]1890name = "dirs-sys"1891version = "0.3.6"1892source = "registry+https://github.com/rust-lang/crates.io-index"1893checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"1894dependencies = [1895 "libc",1896 "redox_users",1897 "winapi 0.3.9",1898]18991900[[package]]1901name = "dirs-sys-next"1902version = "0.1.2"1903source = "registry+https://github.com/rust-lang/crates.io-index"1904checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"1905dependencies = [1906 "libc",1907 "redox_users",1908 "winapi 0.3.9",1909]19101911[[package]]1912name = "dns-parser"1913version = "0.8.0"1914source = "registry+https://github.com/rust-lang/crates.io-index"1915checksum = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea"1916dependencies = [1917 "byteorder",1918 "quick-error 1.2.3",1919]19201921[[package]]1922name = "downcast-rs"1923version = "1.2.0"1924source = "registry+https://github.com/rust-lang/crates.io-index"1925checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"19261927[[package]]1928name = "dyn-clonable"1929version = "0.9.0"1930source = "registry+https://github.com/rust-lang/crates.io-index"1931checksum = "4e9232f0e607a262ceb9bd5141a3dfb3e4db6994b31989bbfd845878cba59fd4"1932dependencies = [1933 "dyn-clonable-impl",1934 "dyn-clone",1935]19361937[[package]]1938name = "dyn-clonable-impl"1939version = "0.9.0"1940source = "registry+https://github.com/rust-lang/crates.io-index"1941checksum = "558e40ea573c374cf53507fd240b7ee2f5477df7cfebdb97323ec61c719399c5"1942dependencies = [1943 "proc-macro2",1944 "quote",1945 "syn",1946]19471948[[package]]1949name = "dyn-clone"1950version = "1.0.4"1951source = "registry+https://github.com/rust-lang/crates.io-index"1952checksum = "ee2626afccd7561a06cf1367e2950c4718ea04565e20fb5029b6c7d8ad09abcf"19531954[[package]]1955name = "ed25519"1956version = "1.2.0"1957source = "registry+https://github.com/rust-lang/crates.io-index"1958checksum = "4620d40f6d2601794401d6dd95a5cf69b6c157852539470eeda433a99b3c0efc"1959dependencies = [1960 "signature",1961]19621963[[package]]1964name = "ed25519-dalek"1965version = "1.0.1"1966source = "registry+https://github.com/rust-lang/crates.io-index"1967checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"1968dependencies = [1969 "curve25519-dalek 3.2.0",1970 "ed25519",1971 "rand 0.7.3",1972 "serde",1973 "sha2 0.9.8",1974 "zeroize",1975]19761977[[package]]1978name = "either"1979version = "1.6.1"1980source = "registry+https://github.com/rust-lang/crates.io-index"1981checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"19821983[[package]]1984name = "enum-as-inner"1985version = "0.3.3"1986source = "registry+https://github.com/rust-lang/crates.io-index"1987checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595"1988dependencies = [1989 "heck",1990 "proc-macro2",1991 "quote",1992 "syn",1993]19941995[[package]]1996name = "enumflags2"1997version = "0.6.4"1998source = "registry+https://github.com/rust-lang/crates.io-index"1999checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0"2000dependencies = [2001 "enumflags2_derive",2002]20032004[[package]]2005name = "enumflags2_derive"2006version = "0.6.4"2007source = "registry+https://github.com/rust-lang/crates.io-index"2008checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce"2009dependencies = [2010 "proc-macro2",2011 "quote",2012 "syn",2013]20142015[[package]]2016name = "enumn"2017version = "0.1.3"2018source = "registry+https://github.com/rust-lang/crates.io-index"2019checksum = "4e58b112d5099aa0857c5d05f0eacab86406dd8c0f85fe5d320a13256d29ecf4"2020dependencies = [2021 "proc-macro2",2022 "quote",2023 "syn",2024]20252026[[package]]2027name = "env_logger"2028version = "0.7.1"2029source = "registry+https://github.com/rust-lang/crates.io-index"2030checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"2031dependencies = [2032 "atty",2033 "humantime 1.3.0",2034 "log",2035 "regex",2036 "termcolor",2037]20382039[[package]]2040name = "env_logger"2041version = "0.9.0"2042source = "registry+https://github.com/rust-lang/crates.io-index"2043checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"2044dependencies = [2045 "atty",2046 "humantime 2.1.0",2047 "log",2048 "regex",2049 "termcolor",2050]20512052[[package]]2053name = "environmental"2054version = "1.1.3"2055source = "registry+https://github.com/rust-lang/crates.io-index"2056checksum = "68b91989ae21441195d7d9b9993a2f9295c7e1a8c96255d8b729accddc124797"20572058[[package]]2059name = "errno"2060version = "0.2.8"2061source = "registry+https://github.com/rust-lang/crates.io-index"2062checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"2063dependencies = [2064 "errno-dragonfly",2065 "libc",2066 "winapi 0.3.9",2067]20682069[[package]]2070name = "errno-dragonfly"2071version = "0.1.2"2072source = "registry+https://github.com/rust-lang/crates.io-index"2073checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"2074dependencies = [2075 "cc",2076 "libc",2077]20782079[[package]]2080name = "ethbloom"2081version = "0.11.1"2082source = "registry+https://github.com/rust-lang/crates.io-index"2083checksum = "bfb684ac8fa8f6c5759f788862bb22ec6fe3cb392f6bfd08e3c64b603661e3f8"2084dependencies = [2085 "crunchy",2086 "fixed-hash",2087 "impl-codec",2088 "impl-rlp",2089 "impl-serde",2090 "scale-info",2091 "tiny-keccak",2092]20932094[[package]]2095name = "ethereum"2096version = "0.9.0"2097source = "registry+https://github.com/rust-lang/crates.io-index"2098checksum = "4a67be3eaf296ef668733f54c637e84d0ca34eaf194f0077455135981ad464c3"2099dependencies = [2100 "bytes 1.1.0",2101 "ethereum-types",2102 "hash-db",2103 "hash256-std-hasher",2104 "parity-scale-codec",2105 "rlp",2106 "rlp-derive",2107 "serde",2108 "sha3 0.9.1",2109 "triehash",2110]21112112[[package]]2113name = "ethereum"2114version = "0.9.0"2115source = "git+https://github.com/purestake/ethereum?branch=joshy-scale-info#2b98173bd88c05bfeefad421d260101b9008497b"2116dependencies = [2117 "bytes 1.1.0",2118 "ethereum-types",2119 "hash-db",2120 "hash256-std-hasher",2121 "parity-scale-codec",2122 "rlp",2123 "rlp-derive",2124 "scale-info",2125 "serde",2126 "sha3 0.9.1",2127 "triehash",2128]21292130[[package]]2131name = "ethereum-types"2132version = "0.12.1"2133source = "registry+https://github.com/rust-lang/crates.io-index"2134checksum = "05136f7057fe789f06e6d41d07b34e6f70d8c86e5693b60f97aaa6553553bdaf"2135dependencies = [2136 "ethbloom",2137 "fixed-hash",2138 "impl-codec",2139 "impl-rlp",2140 "impl-serde",2141 "primitive-types 0.10.1",2142 "scale-info",2143 "uint",2144]21452146[[package]]2147name = "event-listener"2148version = "2.5.1"2149source = "registry+https://github.com/rust-lang/crates.io-index"2150checksum = "f7531096570974c3a9dcf9e4b8e1cede1ec26cf5046219fb3b9d897503b9be59"21512152[[package]]2153name = "evm"2154version = "0.30.0"2155source = "git+https://github.com/uniquenetwork/evm.git?branch=precompile-output-parachain#bed08923a76339880e05df25a52c5334e9997bb2"2156dependencies = [2157 "environmental",2158 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",2159 "evm-core",2160 "evm-gasometer",2161 "evm-runtime",2162 "log",2163 "parity-scale-codec",2164 "primitive-types 0.10.1",2165 "rlp",2166 "scale-info",2167 "serde",2168 "sha3 0.8.2",2169]21702171[[package]]2172name = "evm-coder"2173version = "0.1.0"2174dependencies = [2175 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",2176 "evm-coder-macros",2177 "evm-core",2178 "hex",2179 "hex-literal",2180 "impl-trait-for-tuples 0.2.1",2181 "primitive-types 0.10.1",2182]21832184[[package]]2185name = "evm-coder-macros"2186version = "0.1.0"2187dependencies = [2188 "Inflector",2189 "darling",2190 "hex",2191 "proc-macro2",2192 "quote",2193 "sha3 0.9.1",2194 "syn",2195]21962197[[package]]2198name = "evm-core"2199version = "0.30.0"2200source = "git+https://github.com/uniquenetwork/evm.git?branch=precompile-output-parachain#bed08923a76339880e05df25a52c5334e9997bb2"2201dependencies = [2202 "funty",2203 "parity-scale-codec",2204 "primitive-types 0.10.1",2205 "scale-info",2206 "serde",2207]22082209[[package]]2210name = "evm-gasometer"2211version = "0.30.0"2212source = "git+https://github.com/uniquenetwork/evm.git?branch=precompile-output-parachain#bed08923a76339880e05df25a52c5334e9997bb2"2213dependencies = [2214 "environmental",2215 "evm-core",2216 "evm-runtime",2217 "primitive-types 0.10.1",2218]22192220[[package]]2221name = "evm-runtime"2222version = "0.30.0"2223source = "git+https://github.com/uniquenetwork/evm.git?branch=precompile-output-parachain#bed08923a76339880e05df25a52c5334e9997bb2"2224dependencies = [2225 "environmental",2226 "evm-core",2227 "primitive-types 0.10.1",2228 "sha3 0.8.2",2229]22302231[[package]]2232name = "exit-future"2233version = "0.2.0"2234source = "registry+https://github.com/rust-lang/crates.io-index"2235checksum = "e43f2f1833d64e33f15592464d6fdd70f349dda7b1a53088eb83cd94014008c5"2236dependencies = [2237 "futures 0.3.17",2238]22392240[[package]]2241name = "fake-simd"2242version = "0.1.2"2243source = "registry+https://github.com/rust-lang/crates.io-index"2244checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"22452246[[package]]2247name = "fallible-iterator"2248version = "0.2.0"2249source = "registry+https://github.com/rust-lang/crates.io-index"2250checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"22512252[[package]]2253name = "fastrand"2254version = "1.5.0"2255source = "registry+https://github.com/rust-lang/crates.io-index"2256checksum = "b394ed3d285a429378d3b384b9eb1285267e7df4b166df24b7a6939a04dc392e"2257dependencies = [2258 "instant",2259]22602261[[package]]2262name = "fc-consensus"2263version = "2.0.0-dev"2264source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2265dependencies = [2266 "async-trait",2267 "derive_more",2268 "fc-db",2269 "fp-consensus",2270 "fp-rpc",2271 "futures 0.3.17",2272 "log",2273 "parity-scale-codec",2274 "sc-client-api",2275 "sc-consensus",2276 "sc-transaction-pool-api",2277 "sp-api",2278 "sp-block-builder",2279 "sp-blockchain",2280 "sp-consensus",2281 "sp-core",2282 "sp-inherents",2283 "sp-runtime",2284 "sp-timestamp",2285 "substrate-prometheus-endpoint",2286]22872288[[package]]2289name = "fc-db"2290version = "2.0.0-dev"2291source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2292dependencies = [2293 "fp-storage",2294 "kvdb",2295 "kvdb-rocksdb",2296 "pallet-ethereum",2297 "parity-scale-codec",2298 "parking_lot 0.11.2",2299 "sp-core",2300 "sp-database",2301 "sp-runtime",2302]23032304[[package]]2305name = "fc-mapping-sync"2306version = "2.0.0-dev"2307source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2308dependencies = [2309 "fc-consensus",2310 "fc-db",2311 "fp-consensus",2312 "fp-rpc",2313 "futures 0.3.17",2314 "futures-timer 3.0.2",2315 "log",2316 "sc-client-api",2317 "sp-api",2318 "sp-blockchain",2319 "sp-runtime",2320]23212322[[package]]2323name = "fc-rpc"2324version = "2.0.0-dev"2325source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2326dependencies = [2327 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",2328 "ethereum-types",2329 "evm",2330 "fc-consensus",2331 "fc-db",2332 "fc-rpc-core",2333 "fp-consensus",2334 "fp-evm",2335 "fp-rpc",2336 "fp-storage",2337 "futures 0.3.17",2338 "futures-util",2339 "jsonrpc-core",2340 "jsonrpc-pubsub",2341 "libsecp256k1 0.3.5",2342 "log",2343 "lru 0.6.6",2344 "pallet-ethereum",2345 "pallet-evm",2346 "parity-scale-codec",2347 "parking_lot 0.11.2",2348 "rand 0.7.3",2349 "rlp",2350 "rustc-hex",2351 "sc-client-api",2352 "sc-network",2353 "sc-rpc",2354 "sc-service",2355 "sc-transaction-pool",2356 "sc-transaction-pool-api",2357 "sha3 0.8.2",2358 "sp-api",2359 "sp-blockchain",2360 "sp-io",2361 "sp-runtime",2362 "sp-storage",2363 "sp-transaction-pool",2364]23652366[[package]]2367name = "fc-rpc-core"2368version = "1.1.0-dev"2369source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2370dependencies = [2371 "ethereum-types",2372 "jsonrpc-core",2373 "jsonrpc-core-client",2374 "jsonrpc-derive",2375 "jsonrpc-pubsub",2376 "rustc-hex",2377 "serde",2378 "serde_json",2379]23802381[[package]]2382name = "fdlimit"2383version = "0.2.1"2384source = "registry+https://github.com/rust-lang/crates.io-index"2385checksum = "2c4c9e43643f5a3be4ca5b67d26b98031ff9db6806c3440ae32e02e3ceac3f1b"2386dependencies = [2387 "libc",2388]23892390[[package]]2391name = "file-per-thread-logger"2392version = "0.1.4"2393source = "registry+https://github.com/rust-lang/crates.io-index"2394checksum = "4fdbe0d94371f9ce939b555dd342d0686cc4c0cadbcd4b61d70af5ff97eb4126"2395dependencies = [2396 "env_logger 0.7.1",2397 "log",2398]23992400[[package]]2401name = "finality-grandpa"2402version = "0.14.4"2403source = "registry+https://github.com/rust-lang/crates.io-index"2404checksum = "e8ac3ff5224ef91f3c97e03eb1de2db82743427e91aaa5ac635f454f0b164f5a"2405dependencies = [2406 "either",2407 "futures 0.3.17",2408 "futures-timer 3.0.2",2409 "log",2410 "num-traits",2411 "parity-scale-codec",2412 "parking_lot 0.11.2",2413 "scale-info",2414]24152416[[package]]2417name = "fixed-hash"2418version = "0.7.0"2419source = "registry+https://github.com/rust-lang/crates.io-index"2420checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c"2421dependencies = [2422 "byteorder",2423 "rand 0.8.4",2424 "rustc-hex",2425 "static_assertions",2426]24272428[[package]]2429name = "fixedbitset"2430version = "0.2.0"2431source = "registry+https://github.com/rust-lang/crates.io-index"2432checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d"24332434[[package]]2435name = "flate2"2436version = "1.0.22"2437source = "registry+https://github.com/rust-lang/crates.io-index"2438checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"2439dependencies = [2440 "cfg-if 1.0.0",2441 "crc32fast",2442 "libc",2443 "libz-sys",2444 "miniz_oxide",2445]24462447[[package]]2448name = "flexi_logger"2449version = "0.15.12"2450source = "registry+https://github.com/rust-lang/crates.io-index"2451checksum = "aaab3caedb4149800f91e8e4899f29cd9ddf3b569b04c365ca9334f92f7542bf"2452dependencies = [2453 "atty",2454 "chrono",2455 "glob",2456 "lazy_static",2457 "log",2458 "regex",2459 "thiserror",2460 "yansi",2461]24622463[[package]]2464name = "fnv"2465version = "1.0.7"2466source = "registry+https://github.com/rust-lang/crates.io-index"2467checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"24682469[[package]]2470name = "fork-tree"2471version = "3.0.0"2472source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2473dependencies = [2474 "parity-scale-codec",2475]24762477[[package]]2478name = "form_urlencoded"2479version = "1.0.1"2480source = "registry+https://github.com/rust-lang/crates.io-index"2481checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"2482dependencies = [2483 "matches",2484 "percent-encoding 2.1.0",2485]24862487[[package]]2488name = "fp-consensus"2489version = "2.0.0-dev"2490source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2491dependencies = [2492 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",2493 "parity-scale-codec",2494 "rlp",2495 "sha3 0.8.2",2496 "sp-core",2497 "sp-runtime",2498 "sp-std",2499]25002501[[package]]2502name = "fp-evm"2503version = "3.0.0-dev"2504source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2505dependencies = [2506 "evm",2507 "impl-trait-for-tuples 0.1.3",2508 "parity-scale-codec",2509 "scale-info",2510 "serde",2511 "sp-core",2512 "sp-std",2513]25142515[[package]]2516name = "fp-rpc"2517version = "3.0.0-dev"2518source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2519dependencies = [2520 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",2521 "ethereum-types",2522 "fp-evm",2523 "parity-scale-codec",2524 "scale-info",2525 "sp-api",2526 "sp-core",2527 "sp-io",2528 "sp-runtime",2529 "sp-std",2530]25312532[[package]]2533name = "fp-self-contained"2534version = "1.0.0-dev"2535source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"2536dependencies = [2537 "ethereum 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",2538 "frame-support",2539 "parity-scale-codec",2540 "parity-util-mem",2541 "scale-info",2542 "serde",2543 "sha3 0.8.2",2544 "sp-core",2545 "sp-io",2546 "sp-runtime",2547]25482549[[package]]2550name = "fp-storage"2551version = "2.0.0"2552source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"25532554[[package]]2555name = "frame-benchmarking"2556version = "4.0.0-dev"2557source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2558dependencies = [2559 "frame-support",2560 "frame-system",2561 "linregress",2562 "log",2563 "parity-scale-codec",2564 "paste",2565 "scale-info",2566 "sp-api",2567 "sp-io",2568 "sp-runtime",2569 "sp-runtime-interface",2570 "sp-std",2571 "sp-storage",2572]25732574[[package]]2575name = "frame-benchmarking-cli"2576version = "4.0.0-dev"2577source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2578dependencies = [2579 "Inflector",2580 "chrono",2581 "frame-benchmarking",2582 "frame-support",2583 "handlebars",2584 "linked-hash-map",2585 "log",2586 "parity-scale-codec",2587 "sc-cli",2588 "sc-client-db",2589 "sc-executor",2590 "sc-service",2591 "serde",2592 "sp-core",2593 "sp-externalities",2594 "sp-keystore",2595 "sp-runtime",2596 "sp-state-machine",2597 "structopt",2598]25992600[[package]]2601name = "frame-election-provider-support"2602version = "4.0.0-dev"2603source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2604dependencies = [2605 "frame-support",2606 "frame-system",2607 "parity-scale-codec",2608 "scale-info",2609 "sp-arithmetic",2610 "sp-npos-elections",2611 "sp-std",2612]26132614[[package]]2615name = "frame-executive"2616version = "4.0.0-dev"2617source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2618dependencies = [2619 "frame-support",2620 "frame-system",2621 "parity-scale-codec",2622 "scale-info",2623 "sp-core",2624 "sp-io",2625 "sp-runtime",2626 "sp-std",2627 "sp-tracing",2628]26292630[[package]]2631name = "frame-metadata"2632version = "14.0.0"2633source = "registry+https://github.com/rust-lang/crates.io-index"2634checksum = "96616f82e069102b95a72c87de4c84d2f87ef7f0f20630e78ce3824436483110"2635dependencies = [2636 "cfg-if 1.0.0",2637 "parity-scale-codec",2638 "scale-info",2639 "serde",2640]26412642[[package]]2643name = "frame-support"2644version = "4.0.0-dev"2645source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2646dependencies = [2647 "bitflags",2648 "frame-metadata",2649 "frame-support-procedural",2650 "impl-trait-for-tuples 0.2.1",2651 "log",2652 "once_cell",2653 "parity-scale-codec",2654 "paste",2655 "scale-info",2656 "serde",2657 "smallvec",2658 "sp-arithmetic",2659 "sp-core",2660 "sp-inherents",2661 "sp-io",2662 "sp-runtime",2663 "sp-staking",2664 "sp-state-machine",2665 "sp-std",2666 "sp-tracing",2667]26682669[[package]]2670name = "frame-support-procedural"2671version = "4.0.0-dev"2672source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2673dependencies = [2674 "Inflector",2675 "frame-support-procedural-tools",2676 "proc-macro2",2677 "quote",2678 "syn",2679]26802681[[package]]2682name = "frame-support-procedural-tools"2683version = "4.0.0-dev"2684source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2685dependencies = [2686 "frame-support-procedural-tools-derive",2687 "proc-macro-crate 1.1.0",2688 "proc-macro2",2689 "quote",2690 "syn",2691]26922693[[package]]2694name = "frame-support-procedural-tools-derive"2695version = "3.0.0"2696source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2697dependencies = [2698 "proc-macro2",2699 "quote",2700 "syn",2701]27022703[[package]]2704name = "frame-system"2705version = "4.0.0-dev"2706source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2707dependencies = [2708 "frame-support",2709 "log",2710 "parity-scale-codec",2711 "scale-info",2712 "serde",2713 "sp-core",2714 "sp-io",2715 "sp-runtime",2716 "sp-std",2717 "sp-version",2718]27192720[[package]]2721name = "frame-system-benchmarking"2722version = "4.0.0-dev"2723source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2724dependencies = [2725 "frame-benchmarking",2726 "frame-support",2727 "frame-system",2728 "parity-scale-codec",2729 "scale-info",2730 "sp-core",2731 "sp-runtime",2732 "sp-std",2733]27342735[[package]]2736name = "frame-system-rpc-runtime-api"2737version = "4.0.0-dev"2738source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2739dependencies = [2740 "parity-scale-codec",2741 "sp-api",2742]27432744[[package]]2745name = "frame-try-runtime"2746version = "0.10.0-dev"2747source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"2748dependencies = [2749 "frame-support",2750 "sp-api",2751 "sp-runtime",2752 "sp-std",2753]27542755[[package]]2756name = "fs-err"2757version = "2.6.0"2758source = "registry+https://github.com/rust-lang/crates.io-index"2759checksum = "5ebd3504ad6116843b8375ad70df74e7bfe83cac77a1f3fe73200c844d43bfe0"27602761[[package]]2762name = "fs-swap"2763version = "0.2.6"2764source = "registry+https://github.com/rust-lang/crates.io-index"2765checksum = "03d47dad3685eceed8488986cad3d5027165ea5edb164331770e2059555f10a5"2766dependencies = [2767 "lazy_static",2768 "libc",2769 "libloading 0.5.2",2770 "winapi 0.3.9",2771]27722773[[package]]2774name = "fs2"2775version = "0.4.3"2776source = "registry+https://github.com/rust-lang/crates.io-index"2777checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"2778dependencies = [2779 "libc",2780 "winapi 0.3.9",2781]27822783[[package]]2784name = "fuchsia-zircon"2785version = "0.3.3"2786source = "registry+https://github.com/rust-lang/crates.io-index"2787checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"2788dependencies = [2789 "bitflags",2790 "fuchsia-zircon-sys",2791]27922793[[package]]2794name = "fuchsia-zircon-sys"2795version = "0.3.3"2796source = "registry+https://github.com/rust-lang/crates.io-index"2797checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"27982799[[package]]2800name = "funty"2801version = "1.1.0"2802source = "registry+https://github.com/rust-lang/crates.io-index"2803checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"28042805[[package]]2806name = "futures"2807version = "0.1.31"2808source = "registry+https://github.com/rust-lang/crates.io-index"2809checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"28102811[[package]]2812name = "futures"2813version = "0.3.17"2814source = "registry+https://github.com/rust-lang/crates.io-index"2815checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca"2816dependencies = [2817 "futures-channel",2818 "futures-core",2819 "futures-executor",2820 "futures-io",2821 "futures-sink",2822 "futures-task",2823 "futures-util",2824]28252826[[package]]2827name = "futures-channel"2828version = "0.3.17"2829source = "registry+https://github.com/rust-lang/crates.io-index"2830checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"2831dependencies = [2832 "futures-core",2833 "futures-sink",2834]28352836[[package]]2837name = "futures-core"2838version = "0.3.17"2839source = "registry+https://github.com/rust-lang/crates.io-index"2840checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"28412842[[package]]2843name = "futures-executor"2844version = "0.3.17"2845source = "registry+https://github.com/rust-lang/crates.io-index"2846checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c"2847dependencies = [2848 "futures-core",2849 "futures-task",2850 "futures-util",2851 "num_cpus",2852]28532854[[package]]2855name = "futures-io"2856version = "0.3.17"2857source = "registry+https://github.com/rust-lang/crates.io-index"2858checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377"28592860[[package]]2861name = "futures-lite"2862version = "1.12.0"2863source = "registry+https://github.com/rust-lang/crates.io-index"2864checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"2865dependencies = [2866 "fastrand",2867 "futures-core",2868 "futures-io",2869 "memchr",2870 "parking",2871 "pin-project-lite 0.2.7",2872 "waker-fn",2873]28742875[[package]]2876name = "futures-macro"2877version = "0.3.17"2878source = "registry+https://github.com/rust-lang/crates.io-index"2879checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb"2880dependencies = [2881 "autocfg",2882 "proc-macro-hack",2883 "proc-macro2",2884 "quote",2885 "syn",2886]28872888[[package]]2889name = "futures-rustls"2890version = "0.21.1"2891source = "registry+https://github.com/rust-lang/crates.io-index"2892checksum = "3a1387e07917c711fb4ee4f48ea0adb04a3c9739e53ef85bf43ae1edc2937a8b"2893dependencies = [2894 "futures-io",2895 "rustls",2896 "webpki",2897]28982899[[package]]2900name = "futures-sink"2901version = "0.3.17"2902source = "registry+https://github.com/rust-lang/crates.io-index"2903checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11"29042905[[package]]2906name = "futures-task"2907version = "0.3.17"2908source = "registry+https://github.com/rust-lang/crates.io-index"2909checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"29102911[[package]]2912name = "futures-timer"2913version = "2.0.2"2914source = "registry+https://github.com/rust-lang/crates.io-index"2915checksum = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6"29162917[[package]]2918name = "futures-timer"2919version = "3.0.2"2920source = "registry+https://github.com/rust-lang/crates.io-index"2921checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"29222923[[package]]2924name = "futures-util"2925version = "0.3.17"2926source = "registry+https://github.com/rust-lang/crates.io-index"2927checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"2928dependencies = [2929 "autocfg",2930 "futures 0.1.31",2931 "futures-channel",2932 "futures-core",2933 "futures-io",2934 "futures-macro",2935 "futures-sink",2936 "futures-task",2937 "memchr",2938 "pin-project-lite 0.2.7",2939 "pin-utils",2940 "proc-macro-hack",2941 "proc-macro-nested",2942 "slab",2943]29442945[[package]]2946name = "generic-array"2947version = "0.12.4"2948source = "registry+https://github.com/rust-lang/crates.io-index"2949checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"2950dependencies = [2951 "typenum",2952]29532954[[package]]2955name = "generic-array"2956version = "0.14.4"2957source = "registry+https://github.com/rust-lang/crates.io-index"2958checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"2959dependencies = [2960 "typenum",2961 "version_check",2962]29632964[[package]]2965name = "getrandom"2966version = "0.1.16"2967source = "registry+https://github.com/rust-lang/crates.io-index"2968checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"2969dependencies = [2970 "cfg-if 1.0.0",2971 "js-sys",2972 "libc",2973 "wasi 0.9.0+wasi-snapshot-preview1",2974 "wasm-bindgen",2975]29762977[[package]]2978name = "getrandom"2979version = "0.2.3"2980source = "registry+https://github.com/rust-lang/crates.io-index"2981checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"2982dependencies = [2983 "cfg-if 1.0.0",2984 "libc",2985 "wasi 0.10.0+wasi-snapshot-preview1",2986]29872988[[package]]2989name = "ghash"2990version = "0.4.4"2991source = "registry+https://github.com/rust-lang/crates.io-index"2992checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"2993dependencies = [2994 "opaque-debug 0.3.0",2995 "polyval",2996]29972998[[package]]2999name = "gimli"3000version = "0.25.0"3001source = "registry+https://github.com/rust-lang/crates.io-index"3002checksum = "f0a01e0497841a3b2db4f8afa483cce65f7e96a3498bd6c541734792aeac8fe7"3003dependencies = [3004 "fallible-iterator",3005 "indexmap",3006 "stable_deref_trait",3007]30083009[[package]]3010name = "gimli"3011version = "0.26.1"3012source = "registry+https://github.com/rust-lang/crates.io-index"3013checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"30143015[[package]]3016name = "glob"3017version = "0.3.0"3018source = "registry+https://github.com/rust-lang/crates.io-index"3019checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"30203021[[package]]3022name = "globset"3023version = "0.4.8"3024source = "registry+https://github.com/rust-lang/crates.io-index"3025checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"3026dependencies = [3027 "aho-corasick",3028 "bstr",3029 "fnv",3030 "log",3031 "regex",3032]30333034[[package]]3035name = "gloo-timers"3036version = "0.2.1"3037source = "registry+https://github.com/rust-lang/crates.io-index"3038checksum = "47204a46aaff920a1ea58b11d03dec6f704287d27561724a4631e450654a891f"3039dependencies = [3040 "futures-channel",3041 "futures-core",3042 "js-sys",3043 "wasm-bindgen",3044 "web-sys",3045]30463047[[package]]3048name = "handlebars"3049version = "3.5.5"3050source = "registry+https://github.com/rust-lang/crates.io-index"3051checksum = "4498fc115fa7d34de968184e473529abb40eeb6be8bc5f7faba3d08c316cb3e3"3052dependencies = [3053 "log",3054 "pest",3055 "pest_derive",3056 "quick-error 2.0.1",3057 "serde",3058 "serde_json",3059]30603061[[package]]3062name = "hash-db"3063version = "0.15.2"3064source = "registry+https://github.com/rust-lang/crates.io-index"3065checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a"30663067[[package]]3068name = "hash256-std-hasher"3069version = "0.15.2"3070source = "registry+https://github.com/rust-lang/crates.io-index"3071checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2"3072dependencies = [3073 "crunchy",3074]30753076[[package]]3077name = "hashbrown"3078version = "0.11.2"3079source = "registry+https://github.com/rust-lang/crates.io-index"3080checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"3081dependencies = [3082 "ahash",3083]30843085[[package]]3086name = "heck"3087version = "0.3.3"3088source = "registry+https://github.com/rust-lang/crates.io-index"3089checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"3090dependencies = [3091 "unicode-segmentation",3092]30933094[[package]]3095name = "hermit-abi"3096version = "0.1.19"3097source = "registry+https://github.com/rust-lang/crates.io-index"3098checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"3099dependencies = [3100 "libc",3101]31023103[[package]]3104name = "hex"3105version = "0.4.3"3106source = "registry+https://github.com/rust-lang/crates.io-index"3107checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"31083109[[package]]3110name = "hex-literal"3111version = "0.3.3"3112source = "registry+https://github.com/rust-lang/crates.io-index"3113checksum = "21e4590e13640f19f249fe3e4eca5113bc4289f2497710378190e7f4bd96f45b"31143115[[package]]3116name = "hex_fmt"3117version = "0.3.0"3118source = "registry+https://github.com/rust-lang/crates.io-index"3119checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"31203121[[package]]3122name = "hmac"3123version = "0.7.1"3124source = "registry+https://github.com/rust-lang/crates.io-index"3125checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"3126dependencies = [3127 "crypto-mac 0.7.0",3128 "digest 0.8.1",3129]31303131[[package]]3132name = "hmac"3133version = "0.8.1"3134source = "registry+https://github.com/rust-lang/crates.io-index"3135checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"3136dependencies = [3137 "crypto-mac 0.8.0",3138 "digest 0.9.0",3139]31403141[[package]]3142name = "hmac"3143version = "0.11.0"3144source = "registry+https://github.com/rust-lang/crates.io-index"3145checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"3146dependencies = [3147 "crypto-mac 0.11.1",3148 "digest 0.9.0",3149]31503151[[package]]3152name = "hmac-drbg"3153version = "0.2.0"3154source = "registry+https://github.com/rust-lang/crates.io-index"3155checksum = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b"3156dependencies = [3157 "digest 0.8.1",3158 "generic-array 0.12.4",3159 "hmac 0.7.1",3160]31613162[[package]]3163name = "hmac-drbg"3164version = "0.3.0"3165source = "registry+https://github.com/rust-lang/crates.io-index"3166checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1"3167dependencies = [3168 "digest 0.9.0",3169 "generic-array 0.14.4",3170 "hmac 0.8.1",3171]31723173[[package]]3174name = "hostname"3175version = "0.3.1"3176source = "registry+https://github.com/rust-lang/crates.io-index"3177checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"3178dependencies = [3179 "libc",3180 "match_cfg",3181 "winapi 0.3.9",3182]31833184[[package]]3185name = "http"3186version = "0.2.5"3187source = "registry+https://github.com/rust-lang/crates.io-index"3188checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"3189dependencies = [3190 "bytes 1.1.0",3191 "fnv",3192 "itoa",3193]31943195[[package]]3196name = "http-body"3197version = "0.4.4"3198source = "registry+https://github.com/rust-lang/crates.io-index"3199checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"3200dependencies = [3201 "bytes 1.1.0",3202 "http",3203 "pin-project-lite 0.2.7",3204]32053206[[package]]3207name = "httparse"3208version = "1.5.1"3209source = "registry+https://github.com/rust-lang/crates.io-index"3210checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"32113212[[package]]3213name = "httpdate"3214version = "1.0.1"3215source = "registry+https://github.com/rust-lang/crates.io-index"3216checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"32173218[[package]]3219name = "humantime"3220version = "1.3.0"3221source = "registry+https://github.com/rust-lang/crates.io-index"3222checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"3223dependencies = [3224 "quick-error 1.2.3",3225]32263227[[package]]3228name = "humantime"3229version = "2.1.0"3230source = "registry+https://github.com/rust-lang/crates.io-index"3231checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"32323233[[package]]3234name = "hyper"3235version = "0.14.14"3236source = "registry+https://github.com/rust-lang/crates.io-index"3237checksum = "2b91bb1f221b6ea1f1e4371216b70f40748774c2fb5971b450c07773fb92d26b"3238dependencies = [3239 "bytes 1.1.0",3240 "futures-channel",3241 "futures-core",3242 "futures-util",3243 "http",3244 "http-body",3245 "httparse",3246 "httpdate",3247 "itoa",3248 "pin-project-lite 0.2.7",3249 "socket2 0.4.2",3250 "tokio 1.13.0",3251 "tower-service",3252 "tracing",3253 "want",3254]32553256[[package]]3257name = "hyper-rustls"3258version = "0.22.1"3259source = "registry+https://github.com/rust-lang/crates.io-index"3260checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64"3261dependencies = [3262 "ct-logs",3263 "futures-util",3264 "hyper",3265 "log",3266 "rustls",3267 "rustls-native-certs",3268 "tokio 1.13.0",3269 "tokio-rustls",3270 "webpki",3271]32723273[[package]]3274name = "ident_case"3275version = "1.0.1"3276source = "registry+https://github.com/rust-lang/crates.io-index"3277checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"32783279[[package]]3280name = "idna"3281version = "0.1.5"3282source = "registry+https://github.com/rust-lang/crates.io-index"3283checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"3284dependencies = [3285 "matches",3286 "unicode-bidi",3287 "unicode-normalization",3288]32893290[[package]]3291name = "idna"3292version = "0.2.3"3293source = "registry+https://github.com/rust-lang/crates.io-index"3294checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"3295dependencies = [3296 "matches",3297 "unicode-bidi",3298 "unicode-normalization",3299]33003301[[package]]3302name = "if-addrs"3303version = "0.6.6"3304source = "registry+https://github.com/rust-lang/crates.io-index"3305checksum = "c9a83ec4af652890ac713ffd8dc859e650420a5ef47f7b9be29b6664ab50fbc8"3306dependencies = [3307 "if-addrs-sys",3308 "libc",3309 "winapi 0.3.9",3310]33113312[[package]]3313name = "if-addrs-sys"3314version = "0.3.2"3315source = "registry+https://github.com/rust-lang/crates.io-index"3316checksum = "de74b9dd780476e837e5eb5ab7c88b49ed304126e412030a0adba99c8efe79ea"3317dependencies = [3318 "cc",3319 "libc",3320]33213322[[package]]3323name = "if-watch"3324version = "0.2.2"3325source = "registry+https://github.com/rust-lang/crates.io-index"3326checksum = "ae8ab7f67bad3240049cb24fb9cb0b4c2c6af4c245840917fbbdededeee91179"3327dependencies = [3328 "async-io",3329 "futures 0.3.17",3330 "futures-lite",3331 "if-addrs",3332 "ipnet",3333 "libc",3334 "log",3335 "winapi 0.3.9",3336]33373338[[package]]3339name = "impl-codec"3340version = "0.5.1"3341source = "registry+https://github.com/rust-lang/crates.io-index"3342checksum = "161ebdfec3c8e3b52bf61c4f3550a1eea4f9579d10dc1b936f3171ebdcd6c443"3343dependencies = [3344 "parity-scale-codec",3345]33463347[[package]]3348name = "impl-rlp"3349version = "0.3.0"3350source = "registry+https://github.com/rust-lang/crates.io-index"3351checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808"3352dependencies = [3353 "rlp",3354]33553356[[package]]3357name = "impl-serde"3358version = "0.3.1"3359source = "registry+https://github.com/rust-lang/crates.io-index"3360checksum = "b47ca4d2b6931707a55fce5cf66aff80e2178c8b63bbb4ecb5695cbc870ddf6f"3361dependencies = [3362 "serde",3363]33643365[[package]]3366name = "impl-trait-for-tuples"3367version = "0.1.3"3368source = "registry+https://github.com/rust-lang/crates.io-index"3369checksum = "7ef5550a42e3740a0e71f909d4c861056a284060af885ae7aa6242820f920d9d"3370dependencies = [3371 "proc-macro2",3372 "quote",3373 "syn",3374]33753376[[package]]3377name = "impl-trait-for-tuples"3378version = "0.2.1"3379source = "registry+https://github.com/rust-lang/crates.io-index"3380checksum = "d5dacb10c5b3bb92d46ba347505a9041e676bb20ad220101326bffb0c93031ee"3381dependencies = [3382 "proc-macro2",3383 "quote",3384 "syn",3385]33863387[[package]]3388name = "indexmap"3389version = "1.7.0"3390source = "registry+https://github.com/rust-lang/crates.io-index"3391checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"3392dependencies = [3393 "autocfg",3394 "hashbrown",3395 "serde",3396]33973398[[package]]3399name = "instant"3400version = "0.1.12"3401source = "registry+https://github.com/rust-lang/crates.io-index"3402checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"3403dependencies = [3404 "cfg-if 1.0.0",3405]34063407[[package]]3408name = "integer-encoding"3409version = "1.1.7"3410source = "registry+https://github.com/rust-lang/crates.io-index"3411checksum = "48dc51180a9b377fd75814d0cc02199c20f8e99433d6762f650d39cdbbd3b56f"34123413[[package]]3414name = "integer-sqrt"3415version = "0.1.5"3416source = "registry+https://github.com/rust-lang/crates.io-index"3417checksum = "276ec31bcb4a9ee45f58bec6f9ec700ae4cf4f4f8f2fa7e06cb406bd5ffdd770"3418dependencies = [3419 "num-traits",3420]34213422[[package]]3423name = "intervalier"3424version = "0.4.0"3425source = "registry+https://github.com/rust-lang/crates.io-index"3426checksum = "64fa110ec7b8f493f416eed552740d10e7030ad5f63b2308f82c9608ec2df275"3427dependencies = [3428 "futures 0.3.17",3429 "futures-timer 2.0.2",3430]34313432[[package]]3433name = "iovec"3434version = "0.1.4"3435source = "registry+https://github.com/rust-lang/crates.io-index"3436checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"3437dependencies = [3438 "libc",3439]34403441[[package]]3442name = "ip_network"3443version = "0.4.0"3444source = "registry+https://github.com/rust-lang/crates.io-index"3445checksum = "09b746553d2f4a1ca26fab939943ddfb217a091f34f53571620a8e3d30691303"34463447[[package]]3448name = "ipconfig"3449version = "0.2.2"3450source = "registry+https://github.com/rust-lang/crates.io-index"3451checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"3452dependencies = [3453 "socket2 0.3.19",3454 "widestring",3455 "winapi 0.3.9",3456 "winreg",3457]34583459[[package]]3460name = "ipnet"3461version = "2.3.1"3462source = "registry+https://github.com/rust-lang/crates.io-index"3463checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"34643465[[package]]3466name = "itertools"3467version = "0.10.1"3468source = "registry+https://github.com/rust-lang/crates.io-index"3469checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"3470dependencies = [3471 "either",3472]34733474[[package]]3475name = "itoa"3476version = "0.4.8"3477source = "registry+https://github.com/rust-lang/crates.io-index"3478checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"34793480[[package]]3481name = "jobserver"3482version = "0.1.24"3483source = "registry+https://github.com/rust-lang/crates.io-index"3484checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"3485dependencies = [3486 "libc",3487]34883489[[package]]3490name = "js-sys"3491version = "0.3.55"3492source = "registry+https://github.com/rust-lang/crates.io-index"3493checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"3494dependencies = [3495 "wasm-bindgen",3496]34973498[[package]]3499name = "jsonrpc-client-transports"3500version = "18.0.0"3501source = "registry+https://github.com/rust-lang/crates.io-index"3502checksum = "d2b99d4207e2a04fb4581746903c2bb7eb376f88de9c699d0f3e10feeac0cd3a"3503dependencies = [3504 "derive_more",3505 "futures 0.3.17",3506 "jsonrpc-core",3507 "jsonrpc-pubsub",3508 "log",3509 "serde",3510 "serde_json",3511 "url 1.7.2",3512]35133514[[package]]3515name = "jsonrpc-core"3516version = "18.0.0"3517source = "registry+https://github.com/rust-lang/crates.io-index"3518checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb"3519dependencies = [3520 "futures 0.3.17",3521 "futures-executor",3522 "futures-util",3523 "log",3524 "serde",3525 "serde_derive",3526 "serde_json",3527]35283529[[package]]3530name = "jsonrpc-core-client"3531version = "18.0.0"3532source = "registry+https://github.com/rust-lang/crates.io-index"3533checksum = "b51da17abecbdab3e3d4f26b01c5ec075e88d3abe3ab3b05dc9aa69392764ec0"3534dependencies = [3535 "futures 0.3.17",3536 "jsonrpc-client-transports",3537]35383539[[package]]3540name = "jsonrpc-derive"3541version = "18.0.0"3542source = "registry+https://github.com/rust-lang/crates.io-index"3543checksum = "5b939a78fa820cdfcb7ee7484466746a7377760970f6f9c6fe19f9edcc8a38d2"3544dependencies = [3545 "proc-macro-crate 0.1.5",3546 "proc-macro2",3547 "quote",3548 "syn",3549]35503551[[package]]3552name = "jsonrpc-http-server"3553version = "18.0.0"3554source = "registry+https://github.com/rust-lang/crates.io-index"3555checksum = "e1dea6e07251d9ce6a552abfb5d7ad6bc290a4596c8dcc3d795fae2bbdc1f3ff"3556dependencies = [3557 "futures 0.3.17",3558 "hyper",3559 "jsonrpc-core",3560 "jsonrpc-server-utils",3561 "log",3562 "net2",3563 "parking_lot 0.11.2",3564 "unicase",3565]35663567[[package]]3568name = "jsonrpc-ipc-server"3569version = "18.0.0"3570source = "registry+https://github.com/rust-lang/crates.io-index"3571checksum = "382bb0206323ca7cda3dcd7e245cea86d37d02457a02a975e3378fb149a48845"3572dependencies = [3573 "futures 0.3.17",3574 "jsonrpc-core",3575 "jsonrpc-server-utils",3576 "log",3577 "parity-tokio-ipc",3578 "parking_lot 0.11.2",3579 "tower-service",3580]35813582[[package]]3583name = "jsonrpc-pubsub"3584version = "18.0.0"3585source = "registry+https://github.com/rust-lang/crates.io-index"3586checksum = "240f87695e6c6f62fb37f05c02c04953cf68d6408b8c1c89de85c7a0125b1011"3587dependencies = [3588 "futures 0.3.17",3589 "jsonrpc-core",3590 "lazy_static",3591 "log",3592 "parking_lot 0.11.2",3593 "rand 0.7.3",3594 "serde",3595]35963597[[package]]3598name = "jsonrpc-server-utils"3599version = "18.0.0"3600source = "registry+https://github.com/rust-lang/crates.io-index"3601checksum = "fa4fdea130485b572c39a460d50888beb00afb3e35de23ccd7fad8ff19f0e0d4"3602dependencies = [3603 "bytes 1.1.0",3604 "futures 0.3.17",3605 "globset",3606 "jsonrpc-core",3607 "lazy_static",3608 "log",3609 "tokio 1.13.0",3610 "tokio-stream",3611 "tokio-util",3612 "unicase",3613]36143615[[package]]3616name = "jsonrpc-ws-server"3617version = "18.0.0"3618source = "registry+https://github.com/rust-lang/crates.io-index"3619checksum = "f892c7d766369475ab7b0669f417906302d7c0fb521285c0a0c92e52e7c8e946"3620dependencies = [3621 "futures 0.3.17",3622 "jsonrpc-core",3623 "jsonrpc-server-utils",3624 "log",3625 "parity-ws",3626 "parking_lot 0.11.2",3627 "slab",3628]36293630[[package]]3631name = "jsonrpsee-proc-macros"3632version = "0.3.1"3633source = "registry+https://github.com/rust-lang/crates.io-index"3634checksum = "8edb341d35279b59c79d7fe9e060a51aec29d45af99cc7c72ea7caa350fa71a4"3635dependencies = [3636 "Inflector",3637 "bae",3638 "proc-macro-crate 1.1.0",3639 "proc-macro2",3640 "quote",3641 "syn",3642]36433644[[package]]3645name = "jsonrpsee-types"3646version = "0.3.1"3647source = "registry+https://github.com/rust-lang/crates.io-index"3648checksum = "4cc738fd55b676ada3271ef7c383a14a0867a2a88b0fa941311bf5fc0a29d498"3649dependencies = [3650 "async-trait",3651 "beef",3652 "futures-channel",3653 "futures-util",3654 "hyper",3655 "log",3656 "serde",3657 "serde_json",3658 "soketto 0.6.0",3659 "thiserror",3660]36613662[[package]]3663name = "jsonrpsee-ws-client"3664version = "0.3.1"3665source = "registry+https://github.com/rust-lang/crates.io-index"3666checksum = "9841352dbecf4c2ed5dc71698df9f1660262ae4e0b610e968602529bdbcf7b30"3667dependencies = [3668 "async-trait",3669 "fnv",3670 "futures 0.3.17",3671 "jsonrpsee-types",3672 "log",3673 "pin-project 1.0.8",3674 "rustls",3675 "rustls-native-certs",3676 "serde",3677 "serde_json",3678 "soketto 0.6.0",3679 "thiserror",3680 "tokio 1.13.0",3681 "tokio-rustls",3682 "tokio-util",3683 "url 2.2.2",3684]36853686[[package]]3687name = "keccak"3688version = "0.1.0"3689source = "registry+https://github.com/rust-lang/crates.io-index"3690checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"36913692[[package]]3693name = "kernel32-sys"3694version = "0.2.2"3695source = "registry+https://github.com/rust-lang/crates.io-index"3696checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"3697dependencies = [3698 "winapi 0.2.8",3699 "winapi-build",3700]37013702[[package]]3703name = "kusama-runtime"3704version = "0.9.12"3705source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"3706dependencies = [3707 "beefy-primitives",3708 "bitvec 0.20.4",3709 "frame-benchmarking",3710 "frame-election-provider-support",3711 "frame-executive",3712 "frame-support",3713 "frame-system",3714 "frame-system-benchmarking",3715 "frame-system-rpc-runtime-api",3716 "frame-try-runtime",3717 "hex-literal",3718 "log",3719 "pallet-authority-discovery",3720 "pallet-authorship",3721 "pallet-babe",3722 "pallet-bags-list",3723 "pallet-balances",3724 "pallet-bounties",3725 "pallet-collective",3726 "pallet-democracy",3727 "pallet-election-provider-multi-phase",3728 "pallet-elections-phragmen",3729 "pallet-gilt",3730 "pallet-grandpa",3731 "pallet-identity",3732 "pallet-im-online",3733 "pallet-indices",3734 "pallet-membership",3735 "pallet-mmr-primitives",3736 "pallet-multisig",3737 "pallet-nicks",3738 "pallet-offences",3739 "pallet-offences-benchmarking",3740 "pallet-proxy",3741 "pallet-recovery",3742 "pallet-scheduler",3743 "pallet-session",3744 "pallet-session-benchmarking",3745 "pallet-society",3746 "pallet-staking",3747 "pallet-staking-reward-fn",3748 "pallet-timestamp",3749 "pallet-tips",3750 "pallet-transaction-payment",3751 "pallet-transaction-payment-rpc-runtime-api",3752 "pallet-treasury",3753 "pallet-utility",3754 "pallet-vesting",3755 "pallet-xcm",3756 "parity-scale-codec",3757 "polkadot-primitives",3758 "polkadot-runtime-common",3759 "polkadot-runtime-parachains",3760 "rustc-hex",3761 "scale-info",3762 "serde",3763 "serde_derive",3764 "smallvec",3765 "sp-api",3766 "sp-arithmetic",3767 "sp-authority-discovery",3768 "sp-block-builder",3769 "sp-consensus-babe",3770 "sp-core",3771 "sp-inherents",3772 "sp-io",3773 "sp-npos-elections",3774 "sp-offchain",3775 "sp-runtime",3776 "sp-session",3777 "sp-staking",3778 "sp-std",3779 "sp-transaction-pool",3780 "sp-version",3781 "static_assertions",3782 "substrate-wasm-builder",3783 "xcm",3784 "xcm-builder",3785 "xcm-executor",3786]37873788[[package]]3789name = "kv-log-macro"3790version = "1.0.7"3791source = "registry+https://github.com/rust-lang/crates.io-index"3792checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"3793dependencies = [3794 "log",3795]37963797[[package]]3798name = "kvdb"3799version = "0.10.0"3800source = "registry+https://github.com/rust-lang/crates.io-index"3801checksum = "45a3f58dc069ec0e205a27f5b45920722a46faed802a0541538241af6228f512"3802dependencies = [3803 "parity-util-mem",3804 "smallvec",3805]38063807[[package]]3808name = "kvdb-memorydb"3809version = "0.10.0"3810source = "registry+https://github.com/rust-lang/crates.io-index"3811checksum = "c3b6b85fc643f5acd0bffb2cc8a6d150209379267af0d41db72170021841f9f5"3812dependencies = [3813 "kvdb",3814 "parity-util-mem",3815 "parking_lot 0.11.2",3816]38173818[[package]]3819name = "kvdb-rocksdb"3820version = "0.14.0"3821source = "registry+https://github.com/rust-lang/crates.io-index"3822checksum = "9b1b6ea8f2536f504b645ad78419c8246550e19d2c3419a167080ce08edee35a"3823dependencies = [3824 "fs-swap",3825 "kvdb",3826 "log",3827 "num_cpus",3828 "owning_ref",3829 "parity-util-mem",3830 "parking_lot 0.11.2",3831 "regex",3832 "rocksdb",3833 "smallvec",3834]38353836[[package]]3837name = "lazy_static"3838version = "1.4.0"3839source = "registry+https://github.com/rust-lang/crates.io-index"3840checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"38413842[[package]]3843name = "lazycell"3844version = "1.3.0"3845source = "registry+https://github.com/rust-lang/crates.io-index"3846checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"38473848[[package]]3849name = "libc"3850version = "0.2.106"3851source = "registry+https://github.com/rust-lang/crates.io-index"3852checksum = "a60553f9a9e039a333b4e9b20573b9e9b9c0bb3a11e201ccc48ef4283456d673"38533854[[package]]3855name = "libloading"3856version = "0.5.2"3857source = "registry+https://github.com/rust-lang/crates.io-index"3858checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"3859dependencies = [3860 "cc",3861 "winapi 0.3.9",3862]38633864[[package]]3865name = "libloading"3866version = "0.7.1"3867source = "registry+https://github.com/rust-lang/crates.io-index"3868checksum = "c0cf036d15402bea3c5d4de17b3fce76b3e4a56ebc1f577be0e7a72f7c607cf0"3869dependencies = [3870 "cfg-if 1.0.0",3871 "winapi 0.3.9",3872]38733874[[package]]3875name = "libm"3876version = "0.2.1"3877source = "registry+https://github.com/rust-lang/crates.io-index"3878checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"38793880[[package]]3881name = "libp2p"3882version = "0.39.1"3883source = "registry+https://github.com/rust-lang/crates.io-index"3884checksum = "9004c06878ef8f3b4b4067e69a140d87ed20bf777287f82223e49713b36ee433"3885dependencies = [3886 "atomic",3887 "bytes 1.1.0",3888 "futures 0.3.17",3889 "lazy_static",3890 "libp2p-core",3891 "libp2p-deflate",3892 "libp2p-dns",3893 "libp2p-floodsub",3894 "libp2p-gossipsub",3895 "libp2p-identify",3896 "libp2p-kad",3897 "libp2p-mdns",3898 "libp2p-mplex",3899 "libp2p-noise",3900 "libp2p-ping",3901 "libp2p-plaintext",3902 "libp2p-pnet",3903 "libp2p-relay",3904 "libp2p-request-response",3905 "libp2p-swarm",3906 "libp2p-swarm-derive",3907 "libp2p-tcp",3908 "libp2p-uds",3909 "libp2p-wasm-ext",3910 "libp2p-websocket",3911 "libp2p-yamux",3912 "multiaddr",3913 "parking_lot 0.11.2",3914 "pin-project 1.0.8",3915 "smallvec",3916 "wasm-timer",3917]39183919[[package]]3920name = "libp2p-core"3921version = "0.29.0"3922source = "registry+https://github.com/rust-lang/crates.io-index"3923checksum = "af9b4abdeaa420593a297c8592f63fad4234f4b88dc9343b8fd8e736c35faa59"3924dependencies = [3925 "asn1_der",3926 "bs58",3927 "ed25519-dalek",3928 "either",3929 "fnv",3930 "futures 0.3.17",3931 "futures-timer 3.0.2",3932 "lazy_static",3933 "libsecp256k1 0.5.0",3934 "log",3935 "multiaddr",3936 "multihash 0.14.0",3937 "multistream-select",3938 "parking_lot 0.11.2",3939 "pin-project 1.0.8",3940 "prost",3941 "prost-build",3942 "rand 0.7.3",3943 "ring",3944 "rw-stream-sink",3945 "sha2 0.9.8",3946 "smallvec",3947 "thiserror",3948 "unsigned-varint 0.7.0",3949 "void",3950 "zeroize",3951]39523953[[package]]3954name = "libp2p-deflate"3955version = "0.29.0"3956source = "registry+https://github.com/rust-lang/crates.io-index"3957checksum = "66097fccc0b7f8579f90a03ea76ba6196332ea049fd07fd969490a06819dcdc8"3958dependencies = [3959 "flate2",3960 "futures 0.3.17",3961 "libp2p-core",3962]39633964[[package]]3965name = "libp2p-dns"3966version = "0.29.0"3967source = "registry+https://github.com/rust-lang/crates.io-index"3968checksum = "58ff08b3196b85a17f202d80589e93b1660a574af67275706657fdc762e42c32"3969dependencies = [3970 "async-std-resolver",3971 "futures 0.3.17",3972 "libp2p-core",3973 "log",3974 "smallvec",3975 "trust-dns-resolver",3976]39773978[[package]]3979name = "libp2p-floodsub"3980version = "0.30.0"3981source = "registry+https://github.com/rust-lang/crates.io-index"3982checksum = "404eca8720967179dac7a5b4275eb91f904a53859c69ca8d018560ad6beb214f"3983dependencies = [3984 "cuckoofilter",3985 "fnv",3986 "futures 0.3.17",3987 "libp2p-core",3988 "libp2p-swarm",3989 "log",3990 "prost",3991 "prost-build",3992 "rand 0.7.3",3993 "smallvec",3994]39953996[[package]]3997name = "libp2p-gossipsub"3998version = "0.32.0"3999source = "registry+https://github.com/rust-lang/crates.io-index"4000checksum = "b1cc48709bcbc3a3321f08a73560b4bbb4166a7d56f6fdb615bc775f4f91058e"4001dependencies = [4002 "asynchronous-codec 0.6.0",4003 "base64 0.13.0",4004 "byteorder",4005 "bytes 1.1.0",4006 "fnv",4007 "futures 0.3.17",4008 "hex_fmt",4009 "libp2p-core",4010 "libp2p-swarm",4011 "log",4012 "prost",4013 "prost-build",4014 "rand 0.7.3",4015 "regex",4016 "sha2 0.9.8",4017 "smallvec",4018 "unsigned-varint 0.7.0",4019 "wasm-timer",4020]40214022[[package]]4023name = "libp2p-identify"4024version = "0.30.0"4025source = "registry+https://github.com/rust-lang/crates.io-index"4026checksum = "a7b61f6cf07664fb97016c318c4d4512b3dd4cc07238607f3f0163245f99008e"4027dependencies = [4028 "futures 0.3.17",4029 "libp2p-core",4030 "libp2p-swarm",4031 "log",4032 "prost",4033 "prost-build",4034 "smallvec",4035 "wasm-timer",4036]40374038[[package]]4039name = "libp2p-kad"4040version = "0.31.0"4041source = "registry+https://github.com/rust-lang/crates.io-index"4042checksum = "50ed78489c87924235665a0ab345b298ee34dff0f7ad62c0ba6608b2144fb75e"4043dependencies = [4044 "arrayvec 0.5.2",4045 "asynchronous-codec 0.6.0",4046 "bytes 1.1.0",4047 "either",4048 "fnv",4049 "futures 0.3.17",4050 "libp2p-core",4051 "libp2p-swarm",4052 "log",4053 "prost",4054 "prost-build",4055 "rand 0.7.3",4056 "sha2 0.9.8",4057 "smallvec",4058 "uint",4059 "unsigned-varint 0.7.0",4060 "void",4061 "wasm-timer",4062]40634064[[package]]4065name = "libp2p-mdns"4066version = "0.31.0"4067source = "registry+https://github.com/rust-lang/crates.io-index"4068checksum = "a29e6cbc2a24b8471b6567e580a0e8e7b70a6d0f0ea2be0844d1e842d7d4fa33"4069dependencies = [4070 "async-io",4071 "data-encoding",4072 "dns-parser",4073 "futures 0.3.17",4074 "if-watch",4075 "lazy_static",4076 "libp2p-core",4077 "libp2p-swarm",4078 "log",4079 "rand 0.8.4",4080 "smallvec",4081 "socket2 0.4.2",4082 "void",4083]40844085[[package]]4086name = "libp2p-mplex"4087version = "0.29.0"4088source = "registry+https://github.com/rust-lang/crates.io-index"4089checksum = "313d9ea526c68df4425f580024e67a9d3ffd49f2c33de5154b1f5019816f7a99"4090dependencies = [4091 "asynchronous-codec 0.6.0",4092 "bytes 1.1.0",4093 "futures 0.3.17",4094 "libp2p-core",4095 "log",4096 "nohash-hasher",4097 "parking_lot 0.11.2",4098 "rand 0.7.3",4099 "smallvec",4100 "unsigned-varint 0.7.0",4101]41024103[[package]]4104name = "libp2p-noise"4105version = "0.32.0"4106source = "registry+https://github.com/rust-lang/crates.io-index"4107checksum = "3f1db7212f342b6ba7c981cc40e31f76e9e56cb48e65fa4c142ecaca5839523e"4108dependencies = [4109 "bytes 1.1.0",4110 "curve25519-dalek 3.2.0",4111 "futures 0.3.17",4112 "lazy_static",4113 "libp2p-core",4114 "log",4115 "prost",4116 "prost-build",4117 "rand 0.8.4",4118 "sha2 0.9.8",4119 "snow",4120 "static_assertions",4121 "x25519-dalek",4122 "zeroize",4123]41244125[[package]]4126name = "libp2p-ping"4127version = "0.30.0"4128source = "registry+https://github.com/rust-lang/crates.io-index"4129checksum = "2482cfd9eb0b7a0baaf3e7b329dc4f2785181a161b1a47b7192f8d758f54a439"4130dependencies = [4131 "futures 0.3.17",4132 "libp2p-core",4133 "libp2p-swarm",4134 "log",4135 "rand 0.7.3",4136 "void",4137 "wasm-timer",4138]41394140[[package]]4141name = "libp2p-plaintext"4142version = "0.29.0"4143source = "registry+https://github.com/rust-lang/crates.io-index"4144checksum = "13b4783e5423870b9a5c199f65a7a3bc66d86ab56b2b9beebf3c338d889cf8e4"4145dependencies = [4146 "asynchronous-codec 0.6.0",4147 "bytes 1.1.0",4148 "futures 0.3.17",4149 "libp2p-core",4150 "log",4151 "prost",4152 "prost-build",4153 "unsigned-varint 0.7.0",4154 "void",4155]41564157[[package]]4158name = "libp2p-pnet"4159version = "0.21.0"4160source = "registry+https://github.com/rust-lang/crates.io-index"4161checksum = "07cb4dd4b917e5b40ddefe49b96b07adcd8d342e0317011d175b7b2bb1dcc974"4162dependencies = [4163 "futures 0.3.17",4164 "log",4165 "pin-project 1.0.8",4166 "rand 0.7.3",4167 "salsa20",4168 "sha3 0.9.1",4169]41704171[[package]]4172name = "libp2p-relay"4173version = "0.3.0"4174source = "registry+https://github.com/rust-lang/crates.io-index"4175checksum = "0133f6cfd81cdc16e716de2982e012c62e6b9d4f12e41967b3ee361051c622aa"4176dependencies = [4177 "asynchronous-codec 0.6.0",4178 "bytes 1.1.0",4179 "futures 0.3.17",4180 "futures-timer 3.0.2",4181 "libp2p-core",4182 "libp2p-swarm",4183 "log",4184 "pin-project 1.0.8",4185 "prost",4186 "prost-build",4187 "rand 0.7.3",4188 "smallvec",4189 "unsigned-varint 0.7.0",4190 "void",4191 "wasm-timer",4192]41934194[[package]]4195name = "libp2p-request-response"4196version = "0.12.0"4197source = "registry+https://github.com/rust-lang/crates.io-index"4198checksum = "06cdae44b6821466123af93cbcdec7c9e6ba9534a8af9cdc296446d39416d241"4199dependencies = [4200 "async-trait",4201 "bytes 1.1.0",4202 "futures 0.3.17",4203 "libp2p-core",4204 "libp2p-swarm",4205 "log",4206 "lru 0.6.6",4207 "minicbor",4208 "rand 0.7.3",4209 "smallvec",4210 "unsigned-varint 0.7.0",4211 "wasm-timer",4212]42134214[[package]]4215name = "libp2p-swarm"4216version = "0.30.0"4217source = "registry+https://github.com/rust-lang/crates.io-index"4218checksum = "7083861341e1555467863b4cd802bea1e8c4787c0f7b5110097d0f1f3248f9a9"4219dependencies = [4220 "either",4221 "futures 0.3.17",4222 "libp2p-core",4223 "log",4224 "rand 0.7.3",4225 "smallvec",4226 "void",4227 "wasm-timer",4228]42294230[[package]]4231name = "libp2p-swarm-derive"4232version = "0.24.0"4233source = "registry+https://github.com/rust-lang/crates.io-index"4234checksum = "ab8cb308d4fc854869f5abb54fdab0833d2cf670d407c745849dc47e6e08d79c"4235dependencies = [4236 "quote",4237 "syn",4238]42394240[[package]]4241name = "libp2p-tcp"4242version = "0.29.0"4243source = "registry+https://github.com/rust-lang/crates.io-index"4244checksum = "79edd26b6b4bb5feee210dcda562dca186940dfecb0024b979c3f50824b3bf28"4245dependencies = [4246 "async-io",4247 "futures 0.3.17",4248 "futures-timer 3.0.2",4249 "if-watch",4250 "ipnet",4251 "libc",4252 "libp2p-core",4253 "log",4254 "socket2 0.4.2",4255]42564257[[package]]4258name = "libp2p-uds"4259version = "0.29.0"4260source = "registry+https://github.com/rust-lang/crates.io-index"4261checksum = "280e793440dd4e9f273d714f4497325c72cddb0fe85a49f9a03c88f41dd20182"4262dependencies = [4263 "async-std",4264 "futures 0.3.17",4265 "libp2p-core",4266 "log",4267]42684269[[package]]4270name = "libp2p-wasm-ext"4271version = "0.29.0"4272source = "registry+https://github.com/rust-lang/crates.io-index"4273checksum = "f553b7140fad3d7a76f50497b0ea591e26737d9607428a75509fc191e4d1b1f6"4274dependencies = [4275 "futures 0.3.17",4276 "js-sys",4277 "libp2p-core",4278 "parity-send-wrapper",4279 "wasm-bindgen",4280 "wasm-bindgen-futures",4281]42824283[[package]]4284name = "libp2p-websocket"4285version = "0.30.0"4286source = "registry+https://github.com/rust-lang/crates.io-index"4287checksum = "ddf99dcbf5063e9d59087f61b1e85c686ceab2f5abedb472d32288065c0e5e27"4288dependencies = [4289 "either",4290 "futures 0.3.17",4291 "futures-rustls",4292 "libp2p-core",4293 "log",4294 "quicksink",4295 "rw-stream-sink",4296 "soketto 0.4.2",4297 "url 2.2.2",4298 "webpki-roots",4299]43004301[[package]]4302name = "libp2p-yamux"4303version = "0.33.0"4304source = "registry+https://github.com/rust-lang/crates.io-index"4305checksum = "214cc0dd9c37cbed27f0bb1eba0c41bbafdb93a8be5e9d6ae1e6b4b42cd044bf"4306dependencies = [4307 "futures 0.3.17",4308 "libp2p-core",4309 "parking_lot 0.11.2",4310 "thiserror",4311 "yamux",4312]43134314[[package]]4315name = "librocksdb-sys"4316version = "6.20.3"4317source = "registry+https://github.com/rust-lang/crates.io-index"4318checksum = "c309a9d2470844aceb9a4a098cf5286154d20596868b75a6b36357d2bb9ca25d"4319dependencies = [4320 "bindgen",4321 "cc",4322 "glob",4323 "libc",4324]43254326[[package]]4327name = "libsecp256k1"4328version = "0.3.5"4329source = "registry+https://github.com/rust-lang/crates.io-index"4330checksum = "1fc1e2c808481a63dc6da2074752fdd4336a3c8fcc68b83db6f1fd5224ae7962"4331dependencies = [4332 "arrayref",4333 "crunchy",4334 "digest 0.8.1",4335 "hmac-drbg 0.2.0",4336 "rand 0.7.3",4337 "sha2 0.8.2",4338 "subtle 2.4.1",4339 "typenum",4340]43414342[[package]]4343name = "libsecp256k1"4344version = "0.5.0"4345source = "registry+https://github.com/rust-lang/crates.io-index"4346checksum = "bd1137239ab33b41aa9637a88a28249e5e70c40a42ccc92db7f12cc356c1fcd7"4347dependencies = [4348 "arrayref",4349 "base64 0.12.3",4350 "digest 0.9.0",4351 "hmac-drbg 0.3.0",4352 "libsecp256k1-core 0.2.2",4353 "libsecp256k1-gen-ecmult 0.2.1",4354 "libsecp256k1-gen-genmult 0.2.1",4355 "rand 0.7.3",4356 "serde",4357 "sha2 0.9.8",4358 "typenum",4359]43604361[[package]]4362name = "libsecp256k1"4363version = "0.6.0"4364source = "registry+https://github.com/rust-lang/crates.io-index"4365checksum = "c9d220bc1feda2ac231cb78c3d26f27676b8cf82c96971f7aeef3d0cf2797c73"4366dependencies = [4367 "arrayref",4368 "base64 0.12.3",4369 "digest 0.9.0",4370 "hmac-drbg 0.3.0",4371 "libsecp256k1-core 0.2.2",4372 "libsecp256k1-gen-ecmult 0.2.1",4373 "libsecp256k1-gen-genmult 0.2.1",4374 "rand 0.7.3",4375 "serde",4376 "sha2 0.9.8",4377 "typenum",4378]43794380[[package]]4381name = "libsecp256k1"4382version = "0.7.0"4383source = "registry+https://github.com/rust-lang/crates.io-index"4384checksum = "b0452aac8bab02242429380e9b2f94ea20cea2b37e2c1777a1358799bbe97f37"4385dependencies = [4386 "arrayref",4387 "base64 0.13.0",4388 "digest 0.9.0",4389 "hmac-drbg 0.3.0",4390 "libsecp256k1-core 0.3.0",4391 "libsecp256k1-gen-ecmult 0.3.0",4392 "libsecp256k1-gen-genmult 0.3.0",4393 "rand 0.8.4",4394 "serde",4395 "sha2 0.9.8",4396 "typenum",4397]43984399[[package]]4400name = "libsecp256k1-core"4401version = "0.2.2"4402source = "registry+https://github.com/rust-lang/crates.io-index"4403checksum = "d0f6ab710cec28cef759c5f18671a27dae2a5f952cdaaee1d8e2908cb2478a80"4404dependencies = [4405 "crunchy",4406 "digest 0.9.0",4407 "subtle 2.4.1",4408]44094410[[package]]4411name = "libsecp256k1-core"4412version = "0.3.0"4413source = "registry+https://github.com/rust-lang/crates.io-index"4414checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451"4415dependencies = [4416 "crunchy",4417 "digest 0.9.0",4418 "subtle 2.4.1",4419]44204421[[package]]4422name = "libsecp256k1-gen-ecmult"4423version = "0.2.1"4424source = "registry+https://github.com/rust-lang/crates.io-index"4425checksum = "ccab96b584d38fac86a83f07e659f0deafd0253dc096dab5a36d53efe653c5c3"4426dependencies = [4427 "libsecp256k1-core 0.2.2",4428]44294430[[package]]4431name = "libsecp256k1-gen-ecmult"4432version = "0.3.0"4433source = "registry+https://github.com/rust-lang/crates.io-index"4434checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809"4435dependencies = [4436 "libsecp256k1-core 0.3.0",4437]44384439[[package]]4440name = "libsecp256k1-gen-genmult"4441version = "0.2.1"4442source = "registry+https://github.com/rust-lang/crates.io-index"4443checksum = "67abfe149395e3aa1c48a2beb32b068e2334402df8181f818d3aee2b304c4f5d"4444dependencies = [4445 "libsecp256k1-core 0.2.2",4446]44474448[[package]]4449name = "libsecp256k1-gen-genmult"4450version = "0.3.0"4451source = "registry+https://github.com/rust-lang/crates.io-index"4452checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c"4453dependencies = [4454 "libsecp256k1-core 0.3.0",4455]44564457[[package]]4458name = "libz-sys"4459version = "1.1.3"4460source = "registry+https://github.com/rust-lang/crates.io-index"4461checksum = "de5435b8549c16d423ed0c03dbaafe57cf6c3344744f1242520d59c9d8ecec66"4462dependencies = [4463 "cc",4464 "pkg-config",4465 "vcpkg",4466]44674468[[package]]4469name = "linked-hash-map"4470version = "0.5.4"4471source = "registry+https://github.com/rust-lang/crates.io-index"4472checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"44734474[[package]]4475name = "linked_hash_set"4476version = "0.1.4"4477source = "registry+https://github.com/rust-lang/crates.io-index"4478checksum = "47186c6da4d81ca383c7c47c1bfc80f4b95f4720514d860a5407aaf4233f9588"4479dependencies = [4480 "linked-hash-map",4481]44824483[[package]]4484name = "linregress"4485version = "0.4.4"4486source = "registry+https://github.com/rust-lang/crates.io-index"4487checksum = "d6c601a85f5ecd1aba625247bca0031585fb1c446461b142878a16f8245ddeb8"4488dependencies = [4489 "nalgebra",4490 "statrs",4491]44924493[[package]]4494name = "lock_api"4495version = "0.3.4"4496source = "registry+https://github.com/rust-lang/crates.io-index"4497checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"4498dependencies = [4499 "scopeguard",4500]45014502[[package]]4503name = "lock_api"4504version = "0.4.5"4505source = "registry+https://github.com/rust-lang/crates.io-index"4506checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"4507dependencies = [4508 "scopeguard",4509]45104511[[package]]4512name = "log"4513version = "0.4.14"4514source = "registry+https://github.com/rust-lang/crates.io-index"4515checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"4516dependencies = [4517 "cfg-if 1.0.0",4518 "value-bag",4519]45204521[[package]]4522name = "lru"4523version = "0.6.6"4524source = "registry+https://github.com/rust-lang/crates.io-index"4525checksum = "7ea2d928b485416e8908cff2d97d621db22b27f7b3b6729e438bcf42c671ba91"4526dependencies = [4527 "hashbrown",4528]45294530[[package]]4531name = "lru"4532version = "0.7.0"4533source = "registry+https://github.com/rust-lang/crates.io-index"4534checksum = "6c748cfe47cb8da225c37595b3108bea1c198c84aaae8ea0ba76d01dda9fc803"4535dependencies = [4536 "hashbrown",4537]45384539[[package]]4540name = "lru-cache"4541version = "0.1.2"4542source = "registry+https://github.com/rust-lang/crates.io-index"4543checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"4544dependencies = [4545 "linked-hash-map",4546]45474548[[package]]4549name = "lz4"4550version = "1.23.2"4551source = "registry+https://github.com/rust-lang/crates.io-index"4552checksum = "aac20ed6991e01bf6a2e68cc73df2b389707403662a8ba89f68511fb340f724c"4553dependencies = [4554 "libc",4555 "lz4-sys",4556]45574558[[package]]4559name = "lz4-sys"4560version = "1.9.2"4561source = "registry+https://github.com/rust-lang/crates.io-index"4562checksum = "dca79aa95d8b3226213ad454d328369853be3a1382d89532a854f4d69640acae"4563dependencies = [4564 "cc",4565 "libc",4566]45674568[[package]]4569name = "mach"4570version = "0.3.2"4571source = "registry+https://github.com/rust-lang/crates.io-index"4572checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"4573dependencies = [4574 "libc",4575]45764577[[package]]4578name = "maplit"4579version = "1.0.2"4580source = "registry+https://github.com/rust-lang/crates.io-index"4581checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"45824583[[package]]4584name = "match_cfg"4585version = "0.1.0"4586source = "registry+https://github.com/rust-lang/crates.io-index"4587checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"45884589[[package]]4590name = "matchers"4591version = "0.0.1"4592source = "registry+https://github.com/rust-lang/crates.io-index"4593checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"4594dependencies = [4595 "regex-automata",4596]45974598[[package]]4599name = "matches"4600version = "0.1.9"4601source = "registry+https://github.com/rust-lang/crates.io-index"4602checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"46034604[[package]]4605name = "matrixmultiply"4606version = "0.3.1"4607source = "registry+https://github.com/rust-lang/crates.io-index"4608checksum = "5a8a15b776d9dfaecd44b03c5828c2199cddff5247215858aac14624f8d6b741"4609dependencies = [4610 "rawpointer",4611]46124613[[package]]4614name = "memchr"4615version = "2.4.1"4616source = "registry+https://github.com/rust-lang/crates.io-index"4617checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"46184619[[package]]4620name = "memmap2"4621version = "0.2.3"4622source = "registry+https://github.com/rust-lang/crates.io-index"4623checksum = "723e3ebdcdc5c023db1df315364573789f8857c11b631a2fdfad7c00f5c046b4"4624dependencies = [4625 "libc",4626]46274628[[package]]4629name = "memoffset"4630version = "0.6.4"4631source = "registry+https://github.com/rust-lang/crates.io-index"4632checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"4633dependencies = [4634 "autocfg",4635]46364637[[package]]4638name = "memory-db"4639version = "0.27.0"4640source = "registry+https://github.com/rust-lang/crates.io-index"4641checksum = "de006e09d04fc301a5f7e817b75aa49801c4479a8af753764416b085337ddcc5"4642dependencies = [4643 "hash-db",4644 "hashbrown",4645 "parity-util-mem",4646]46474648[[package]]4649name = "memory-lru"4650version = "0.1.0"4651source = "registry+https://github.com/rust-lang/crates.io-index"4652checksum = "beeb98b3d1ed2c0054bd81b5ba949a0243c3ccad751d45ea898fa8059fa2860a"4653dependencies = [4654 "lru 0.6.6",4655]46564657[[package]]4658name = "memory_units"4659version = "0.3.0"4660source = "registry+https://github.com/rust-lang/crates.io-index"4661checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882"46624663[[package]]4664name = "merlin"4665version = "2.0.1"4666source = "registry+https://github.com/rust-lang/crates.io-index"4667checksum = "4e261cf0f8b3c42ded9f7d2bb59dea03aa52bc8a1cbc7482f9fc3fd1229d3b42"4668dependencies = [4669 "byteorder",4670 "keccak",4671 "rand_core 0.5.1",4672 "zeroize",4673]46744675[[package]]4676name = "metered-channel"4677version = "0.9.12"4678source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"4679dependencies = [4680 "derive_more",4681 "futures 0.3.17",4682 "futures-timer 3.0.2",4683 "thiserror",4684 "tracing",4685]46864687[[package]]4688name = "mick-jaeger"4689version = "0.1.4"4690source = "registry+https://github.com/rust-lang/crates.io-index"4691checksum = "c023c3f16109e7f33aa451f773fd61070e265b4977d0b6e344a51049296dd7df"4692dependencies = [4693 "futures 0.3.17",4694 "rand 0.7.3",4695 "thrift",4696]46974698[[package]]4699name = "minicbor"4700version = "0.8.1"4701source = "registry+https://github.com/rust-lang/crates.io-index"4702checksum = "51aa5bb0ca22415daca596a227b507f880ad1b2318a87fa9325312a5d285ca0d"4703dependencies = [4704 "minicbor-derive",4705]47064707[[package]]4708name = "minicbor-derive"4709version = "0.6.4"4710source = "registry+https://github.com/rust-lang/crates.io-index"4711checksum = "54999f917cd092b13904737e26631aa2b2b88d625db68e4bab461dcd8006c788"4712dependencies = [4713 "proc-macro2",4714 "quote",4715 "syn",4716]47174718[[package]]4719name = "miniz_oxide"4720version = "0.4.4"4721source = "registry+https://github.com/rust-lang/crates.io-index"4722checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"4723dependencies = [4724 "adler",4725 "autocfg",4726]47274728[[package]]4729name = "mio"4730version = "0.6.23"4731source = "registry+https://github.com/rust-lang/crates.io-index"4732checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"4733dependencies = [4734 "cfg-if 0.1.10",4735 "fuchsia-zircon",4736 "fuchsia-zircon-sys",4737 "iovec",4738 "kernel32-sys",4739 "libc",4740 "log",4741 "miow 0.2.2",4742 "net2",4743 "slab",4744 "winapi 0.2.8",4745]47464747[[package]]4748name = "mio"4749version = "0.7.14"4750source = "registry+https://github.com/rust-lang/crates.io-index"4751checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"4752dependencies = [4753 "libc",4754 "log",4755 "miow 0.3.7",4756 "ntapi",4757 "winapi 0.3.9",4758]47594760[[package]]4761name = "mio-extras"4762version = "2.0.6"4763source = "registry+https://github.com/rust-lang/crates.io-index"4764checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"4765dependencies = [4766 "lazycell",4767 "log",4768 "mio 0.6.23",4769 "slab",4770]47714772[[package]]4773name = "miow"4774version = "0.2.2"4775source = "registry+https://github.com/rust-lang/crates.io-index"4776checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"4777dependencies = [4778 "kernel32-sys",4779 "net2",4780 "winapi 0.2.8",4781 "ws2_32-sys",4782]47834784[[package]]4785name = "miow"4786version = "0.3.7"4787source = "registry+https://github.com/rust-lang/crates.io-index"4788checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"4789dependencies = [4790 "winapi 0.3.9",4791]47924793[[package]]4794name = "more-asserts"4795version = "0.2.1"4796source = "registry+https://github.com/rust-lang/crates.io-index"4797checksum = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238"47984799[[package]]4800name = "multiaddr"4801version = "0.13.0"4802source = "registry+https://github.com/rust-lang/crates.io-index"4803checksum = "48ee4ea82141951ac6379f964f71b20876d43712bea8faf6dd1a375e08a46499"4804dependencies = [4805 "arrayref",4806 "bs58",4807 "byteorder",4808 "data-encoding",4809 "multihash 0.14.0",4810 "percent-encoding 2.1.0",4811 "serde",4812 "static_assertions",4813 "unsigned-varint 0.7.0",4814 "url 2.2.2",4815]48164817[[package]]4818name = "multibase"4819version = "0.8.0"4820source = "registry+https://github.com/rust-lang/crates.io-index"4821checksum = "b78c60039650ff12e140ae867ef5299a58e19dded4d334c849dc7177083667e2"4822dependencies = [4823 "base-x",4824 "data-encoding",4825 "data-encoding-macro",4826]48274828[[package]]4829name = "multihash"4830version = "0.13.2"4831source = "registry+https://github.com/rust-lang/crates.io-index"4832checksum = "4dac63698b887d2d929306ea48b63760431ff8a24fac40ddb22f9c7f49fb7cab"4833dependencies = [4834 "blake2b_simd",4835 "blake2s_simd",4836 "blake3",4837 "digest 0.9.0",4838 "generic-array 0.14.4",4839 "multihash-derive",4840 "sha2 0.9.8",4841 "sha3 0.9.1",4842 "unsigned-varint 0.5.1",4843]48444845[[package]]4846name = "multihash"4847version = "0.14.0"4848source = "registry+https://github.com/rust-lang/crates.io-index"4849checksum = "752a61cd890ff691b4411423d23816d5866dd5621e4d1c5687a53b94b5a979d8"4850dependencies = [4851 "digest 0.9.0",4852 "generic-array 0.14.4",4853 "multihash-derive",4854 "sha2 0.9.8",4855 "unsigned-varint 0.7.0",4856]48574858[[package]]4859name = "multihash-derive"4860version = "0.7.2"4861source = "registry+https://github.com/rust-lang/crates.io-index"4862checksum = "424f6e86263cd5294cbd7f1e95746b95aca0e0d66bff31e5a40d6baa87b4aa99"4863dependencies = [4864 "proc-macro-crate 1.1.0",4865 "proc-macro-error 1.0.4",4866 "proc-macro2",4867 "quote",4868 "syn",4869 "synstructure",4870]48714872[[package]]4873name = "multimap"4874version = "0.8.3"4875source = "registry+https://github.com/rust-lang/crates.io-index"4876checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"48774878[[package]]4879name = "multistream-select"4880version = "0.10.4"4881source = "registry+https://github.com/rust-lang/crates.io-index"4882checksum = "56a336acba8bc87c8876f6425407dbbe6c417bf478b22015f8fb0994ef3bc0ab"4883dependencies = [4884 "bytes 1.1.0",4885 "futures 0.3.17",4886 "log",4887 "pin-project 1.0.8",4888 "smallvec",4889 "unsigned-varint 0.7.0",4890]48914892[[package]]4893name = "nalgebra"4894version = "0.27.1"4895source = "registry+https://github.com/rust-lang/crates.io-index"4896checksum = "462fffe4002f4f2e1f6a9dcf12cc1a6fc0e15989014efc02a941d3e0f5dc2120"4897dependencies = [4898 "approx",4899 "matrixmultiply",4900 "nalgebra-macros",4901 "num-complex",4902 "num-rational 0.4.0",4903 "num-traits",4904 "rand 0.8.4",4905 "rand_distr",4906 "simba",4907 "typenum",4908]49094910[[package]]4911name = "nalgebra-macros"4912version = "0.1.0"4913source = "registry+https://github.com/rust-lang/crates.io-index"4914checksum = "01fcc0b8149b4632adc89ac3b7b31a12fb6099a0317a4eb2ebff574ef7de7218"4915dependencies = [4916 "proc-macro2",4917 "quote",4918 "syn",4919]49204921[[package]]4922name = "names"4923version = "0.12.0"4924source = "registry+https://github.com/rust-lang/crates.io-index"4925checksum = "10a8690bf09abf659851e58cd666c3d37ac6af07c2bd7a9e332cfba471715775"4926dependencies = [4927 "rand 0.8.4",4928]49294930[[package]]4931name = "net2"4932version = "0.2.37"4933source = "registry+https://github.com/rust-lang/crates.io-index"4934checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"4935dependencies = [4936 "cfg-if 0.1.10",4937 "libc",4938 "winapi 0.3.9",4939]49404941[[package]]4942name = "nft"4943version = "0.9.12"4944dependencies = [4945 "cumulus-client-cli",4946 "cumulus-client-collator",4947 "cumulus-client-consensus-aura",4948 "cumulus-client-consensus-common",4949 "cumulus-client-network",4950 "cumulus-client-service",4951 "cumulus-primitives-core",4952 "cumulus-primitives-parachain-inherent",4953 "fc-consensus",4954 "fc-db",4955 "fc-mapping-sync",4956 "fc-rpc",4957 "fc-rpc-core",4958 "flexi_logger",4959 "fp-rpc",4960 "frame-benchmarking",4961 "frame-benchmarking-cli",4962 "futures 0.3.17",4963 "jsonrpc-core",4964 "jsonrpc-pubsub",4965 "log",4966 "nft-data-structs",4967 "nft-rpc",4968 "nft-runtime",4969 "pallet-ethereum",4970 "pallet-transaction-payment-rpc",4971 "parity-scale-codec",4972 "parking_lot 0.11.2",4973 "polkadot-cli",4974 "polkadot-parachain",4975 "polkadot-primitives",4976 "polkadot-service",4977 "polkadot-test-service",4978 "sc-basic-authorship",4979 "sc-chain-spec",4980 "sc-cli",4981 "sc-client-api",4982 "sc-consensus",4983 "sc-consensus-aura",4984 "sc-executor",4985 "sc-finality-grandpa",4986 "sc-keystore",4987 "sc-network",4988 "sc-rpc",4989 "sc-rpc-api",4990 "sc-service",4991 "sc-telemetry",4992 "sc-tracing",4993 "sc-transaction-pool",4994 "serde",4995 "serde_json",4996 "sp-api",4997 "sp-block-builder",4998 "sp-blockchain",4999 "sp-consensus",5000 "sp-consensus-aura",5001 "sp-core",5002 "sp-finality-grandpa",5003 "sp-inherents",5004 "sp-keystore",5005 "sp-offchain",5006 "sp-runtime",5007 "sp-session",5008 "sp-timestamp",5009 "sp-transaction-pool",5010 "sp-trie",5011 "structopt",5012 "substrate-build-script-utils",5013 "substrate-frame-rpc-system",5014 "substrate-prometheus-endpoint",5015]50165017[[package]]5018name = "nft-data-structs"5019version = "0.9.0"5020dependencies = [5021 "derivative",5022 "frame-support",5023 "frame-system",5024 "parity-scale-codec",5025 "scale-info",5026 "serde",5027 "sp-core",5028 "sp-runtime",5029 "sp-std",5030]50315032[[package]]5033name = "nft-rpc"5034version = "3.3.1"5035dependencies = [5036 "fc-db",5037 "fc-mapping-sync",5038 "fc-rpc",5039 "fc-rpc-core",5040 "fp-rpc",5041 "futures 0.3.17",5042 "jsonrpc-core",5043 "jsonrpc-pubsub",5044 "nft-runtime",5045 "pallet-ethereum",5046 "pallet-nft",5047 "pallet-transaction-payment-rpc",5048 "pallet-transaction-payment-rpc-runtime-api",5049 "sc-client-api",5050 "sc-consensus-aura",5051 "sc-consensus-epochs",5052 "sc-finality-grandpa",5053 "sc-finality-grandpa-rpc",5054 "sc-keystore",5055 "sc-network",5056 "sc-rpc",5057 "sc-rpc-api",5058 "sc-service",5059 "sc-transaction-pool",5060 "sp-api",5061 "sp-block-builder",5062 "sp-blockchain",5063 "sp-consensus",5064 "sp-consensus-aura",5065 "sp-core",5066 "sp-offchain",5067 "sp-runtime",5068 "sp-session",5069 "sp-storage",5070 "sp-transaction-pool",5071 "substrate-frame-rpc-system",5072 "tokio 0.2.25",5073 "uc-rpc",5074 "up-rpc",5075]50765077[[package]]5078name = "nft-runtime"5079version = "0.9.12"5080dependencies = [5081 "cumulus-pallet-aura-ext",5082 "cumulus-pallet-dmp-queue",5083 "cumulus-pallet-parachain-system",5084 "cumulus-pallet-xcm",5085 "cumulus-pallet-xcmp-queue",5086 "cumulus-primitives-core",5087 "cumulus-primitives-timestamp",5088 "cumulus-primitives-utility",5089 "derivative",5090 "fp-rpc",5091 "fp-self-contained",5092 "frame-benchmarking",5093 "frame-executive",5094 "frame-support",5095 "frame-system",5096 "frame-system-benchmarking",5097 "frame-system-rpc-runtime-api",5098 "hex-literal",5099 "nft-data-structs",5100 "orml-vesting",5101 "pallet-aura",5102 "pallet-balances",5103 "pallet-common",5104 "pallet-ethereum",5105 "pallet-evm",5106 "pallet-evm-coder-substrate",5107 "pallet-evm-contract-helpers",5108 "pallet-evm-migration",5109 "pallet-evm-transaction-payment",5110 "pallet-fungible",5111 "pallet-inflation",5112 "pallet-nft",5113 "pallet-nft-transaction-payment",5114 "pallet-nonfungible",5115 "pallet-randomness-collective-flip",5116 "pallet-refungible",5117 "pallet-sudo",5118 "pallet-template-transaction-payment",5119 "pallet-timestamp",5120 "pallet-transaction-payment",5121 "pallet-transaction-payment-rpc-runtime-api",5122 "pallet-treasury",5123 "pallet-unq-scheduler",5124 "pallet-xcm",5125 "parachain-info",5126 "parity-scale-codec",5127 "polkadot-parachain",5128 "scale-info",5129 "serde",5130 "smallvec",5131 "sp-api",5132 "sp-arithmetic",5133 "sp-block-builder",5134 "sp-consensus-aura",5135 "sp-core",5136 "sp-inherents",5137 "sp-io",5138 "sp-offchain",5139 "sp-runtime",5140 "sp-session",5141 "sp-std",5142 "sp-transaction-pool",5143 "sp-version",5144 "substrate-wasm-builder",5145 "up-rpc",5146 "xcm",5147 "xcm-builder",5148 "xcm-executor",5149]51505151[[package]]5152name = "nodrop"5153version = "0.1.14"5154source = "registry+https://github.com/rust-lang/crates.io-index"5155checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"51565157[[package]]5158name = "nohash-hasher"5159version = "0.2.0"5160source = "registry+https://github.com/rust-lang/crates.io-index"5161checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"51625163[[package]]5164name = "nom"5165version = "6.1.2"5166source = "registry+https://github.com/rust-lang/crates.io-index"5167checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2"5168dependencies = [5169 "bitvec 0.19.5",5170 "funty",5171 "memchr",5172 "version_check",5173]51745175[[package]]5176name = "ntapi"5177version = "0.3.6"5178source = "registry+https://github.com/rust-lang/crates.io-index"5179checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"5180dependencies = [5181 "winapi 0.3.9",5182]51835184[[package]]5185name = "num-bigint"5186version = "0.2.6"5187source = "registry+https://github.com/rust-lang/crates.io-index"5188checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"5189dependencies = [5190 "autocfg",5191 "num-integer",5192 "num-traits",5193]51945195[[package]]5196name = "num-complex"5197version = "0.4.0"5198source = "registry+https://github.com/rust-lang/crates.io-index"5199checksum = "26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085"5200dependencies = [5201 "num-traits",5202]52035204[[package]]5205name = "num-integer"5206version = "0.1.44"5207source = "registry+https://github.com/rust-lang/crates.io-index"5208checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"5209dependencies = [5210 "autocfg",5211 "num-traits",5212]52135214[[package]]5215name = "num-rational"5216version = "0.2.4"5217source = "registry+https://github.com/rust-lang/crates.io-index"5218checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"5219dependencies = [5220 "autocfg",5221 "num-bigint",5222 "num-integer",5223 "num-traits",5224]52255226[[package]]5227name = "num-rational"5228version = "0.4.0"5229source = "registry+https://github.com/rust-lang/crates.io-index"5230checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"5231dependencies = [5232 "autocfg",5233 "num-integer",5234 "num-traits",5235]52365237[[package]]5238name = "num-traits"5239version = "0.2.14"5240source = "registry+https://github.com/rust-lang/crates.io-index"5241checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"5242dependencies = [5243 "autocfg",5244 "libm",5245]52465247[[package]]5248name = "num_cpus"5249version = "1.13.0"5250source = "registry+https://github.com/rust-lang/crates.io-index"5251checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"5252dependencies = [5253 "hermit-abi",5254 "libc",5255]52565257[[package]]5258name = "object"5259version = "0.26.2"5260source = "registry+https://github.com/rust-lang/crates.io-index"5261checksum = "39f37e50073ccad23b6d09bcb5b263f4e76d3bb6038e4a3c08e52162ffa8abc2"5262dependencies = [5263 "crc32fast",5264 "indexmap",5265 "memchr",5266]52675268[[package]]5269name = "object"5270version = "0.27.1"5271source = "registry+https://github.com/rust-lang/crates.io-index"5272checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9"5273dependencies = [5274 "memchr",5275]52765277[[package]]5278name = "once_cell"5279version = "1.8.0"5280source = "registry+https://github.com/rust-lang/crates.io-index"5281checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"52825283[[package]]5284name = "opaque-debug"5285version = "0.2.3"5286source = "registry+https://github.com/rust-lang/crates.io-index"5287checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"52885289[[package]]5290name = "opaque-debug"5291version = "0.3.0"5292source = "registry+https://github.com/rust-lang/crates.io-index"5293checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"52945295[[package]]5296name = "openssl-probe"5297version = "0.1.4"5298source = "registry+https://github.com/rust-lang/crates.io-index"5299checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"53005301[[package]]5302name = "ordered-float"5303version = "1.1.1"5304source = "registry+https://github.com/rust-lang/crates.io-index"5305checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7"5306dependencies = [5307 "num-traits",5308]53095310[[package]]5311name = "orml-vesting"5312version = "0.4.1-dev"5313source = "git+https://github.com/UniqueNetwork/open-runtime-module-library#d69f226e332ae29b7b33d53d2f06f309d2986ea0"5314dependencies = [5315 "frame-support",5316 "frame-system",5317 "parity-scale-codec",5318 "scale-info",5319 "serde",5320 "sp-io",5321 "sp-runtime",5322 "sp-std",5323]53245325[[package]]5326name = "owning_ref"5327version = "0.4.1"5328source = "registry+https://github.com/rust-lang/crates.io-index"5329checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce"5330dependencies = [5331 "stable_deref_trait",5332]53335334[[package]]5335name = "pallet-aura"5336version = "4.0.0-dev"5337source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5338dependencies = [5339 "frame-support",5340 "frame-system",5341 "pallet-timestamp",5342 "parity-scale-codec",5343 "scale-info",5344 "sp-application-crypto",5345 "sp-consensus-aura",5346 "sp-runtime",5347 "sp-std",5348]53495350[[package]]5351name = "pallet-authority-discovery"5352version = "4.0.0-dev"5353source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5354dependencies = [5355 "frame-support",5356 "frame-system",5357 "pallet-session",5358 "parity-scale-codec",5359 "scale-info",5360 "sp-application-crypto",5361 "sp-authority-discovery",5362 "sp-runtime",5363 "sp-std",5364]53655366[[package]]5367name = "pallet-authorship"5368version = "4.0.0-dev"5369source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5370dependencies = [5371 "frame-support",5372 "frame-system",5373 "impl-trait-for-tuples 0.2.1",5374 "parity-scale-codec",5375 "scale-info",5376 "sp-authorship",5377 "sp-runtime",5378 "sp-std",5379]53805381[[package]]5382name = "pallet-babe"5383version = "4.0.0-dev"5384source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5385dependencies = [5386 "frame-benchmarking",5387 "frame-support",5388 "frame-system",5389 "log",5390 "pallet-authorship",5391 "pallet-session",5392 "pallet-timestamp",5393 "parity-scale-codec",5394 "scale-info",5395 "sp-application-crypto",5396 "sp-consensus-babe",5397 "sp-consensus-vrf",5398 "sp-io",5399 "sp-runtime",5400 "sp-session",5401 "sp-staking",5402 "sp-std",5403]54045405[[package]]5406name = "pallet-bags-list"5407version = "4.0.0-dev"5408source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5409dependencies = [5410 "frame-benchmarking",5411 "frame-election-provider-support",5412 "frame-support",5413 "frame-system",5414 "log",5415 "pallet-balances",5416 "parity-scale-codec",5417 "scale-info",5418 "sp-core",5419 "sp-io",5420 "sp-runtime",5421 "sp-std",5422 "sp-tracing",5423]54245425[[package]]5426name = "pallet-balances"5427version = "4.0.0-dev"5428source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5429dependencies = [5430 "frame-benchmarking",5431 "frame-support",5432 "frame-system",5433 "log",5434 "parity-scale-codec",5435 "scale-info",5436 "sp-runtime",5437 "sp-std",5438]54395440[[package]]5441name = "pallet-beefy"5442version = "4.0.0-dev"5443source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5444dependencies = [5445 "beefy-primitives",5446 "frame-support",5447 "frame-system",5448 "pallet-session",5449 "parity-scale-codec",5450 "scale-info",5451 "serde",5452 "sp-runtime",5453 "sp-std",5454]54555456[[package]]5457name = "pallet-beefy-mmr"5458version = "4.0.0-dev"5459source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5460dependencies = [5461 "beefy-merkle-tree",5462 "beefy-primitives",5463 "frame-support",5464 "frame-system",5465 "hex",5466 "libsecp256k1 0.7.0",5467 "log",5468 "pallet-beefy",5469 "pallet-mmr",5470 "pallet-mmr-primitives",5471 "pallet-session",5472 "parity-scale-codec",5473 "scale-info",5474 "serde",5475 "sp-core",5476 "sp-io",5477 "sp-runtime",5478 "sp-std",5479]54805481[[package]]5482name = "pallet-bounties"5483version = "4.0.0-dev"5484source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5485dependencies = [5486 "frame-benchmarking",5487 "frame-support",5488 "frame-system",5489 "log",5490 "pallet-treasury",5491 "parity-scale-codec",5492 "scale-info",5493 "sp-core",5494 "sp-io",5495 "sp-runtime",5496 "sp-std",5497]54985499[[package]]5500name = "pallet-bridge-dispatch"5501version = "0.1.0"5502source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"5503dependencies = [5504 "bp-message-dispatch",5505 "bp-runtime",5506 "frame-support",5507 "frame-system",5508 "log",5509 "parity-scale-codec",5510 "scale-info",5511 "sp-core",5512 "sp-runtime",5513 "sp-std",5514]55155516[[package]]5517name = "pallet-bridge-grandpa"5518version = "0.1.0"5519source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"5520dependencies = [5521 "bp-header-chain",5522 "bp-runtime",5523 "bp-test-utils",5524 "finality-grandpa",5525 "frame-support",5526 "frame-system",5527 "log",5528 "num-traits",5529 "parity-scale-codec",5530 "scale-info",5531 "serde",5532 "sp-finality-grandpa",5533 "sp-runtime",5534 "sp-std",5535 "sp-trie",5536]55375538[[package]]5539name = "pallet-bridge-messages"5540version = "0.1.0"5541source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"5542dependencies = [5543 "bitvec 0.20.4",5544 "bp-message-dispatch",5545 "bp-messages",5546 "bp-rialto",5547 "bp-runtime",5548 "frame-support",5549 "frame-system",5550 "log",5551 "num-traits",5552 "parity-scale-codec",5553 "scale-info",5554 "serde",5555 "sp-core",5556 "sp-runtime",5557 "sp-std",5558]55595560[[package]]5561name = "pallet-collective"5562version = "4.0.0-dev"5563source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5564dependencies = [5565 "frame-benchmarking",5566 "frame-support",5567 "frame-system",5568 "log",5569 "parity-scale-codec",5570 "scale-info",5571 "sp-core",5572 "sp-io",5573 "sp-runtime",5574 "sp-std",5575]55765577[[package]]5578name = "pallet-common"5579version = "0.1.0"5580dependencies = [5581 "evm-coder",5582 "frame-support",5583 "frame-system",5584 "nft-data-structs",5585 "pallet-evm",5586 "pallet-evm-coder-substrate",5587 "parity-scale-codec",5588 "scale-info",5589 "serde",5590 "sp-core",5591 "sp-runtime",5592 "sp-std",5593]55945595[[package]]5596name = "pallet-contract-helpers"5597version = "0.1.0"5598dependencies = [5599 "frame-support",5600 "frame-system",5601 "pallet-contracts",5602 "parity-scale-codec",5603 "scale-info",5604 "sp-runtime",5605 "sp-std",5606 "up-sponsorship",5607]56085609[[package]]5610name = "pallet-contracts"5611version = "4.0.0-dev"5612source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5613dependencies = [5614 "bitflags",5615 "frame-benchmarking",5616 "frame-support",5617 "frame-system",5618 "libsecp256k1 0.6.0",5619 "log",5620 "pallet-contracts-primitives",5621 "pallet-contracts-proc-macro",5622 "parity-scale-codec",5623 "pwasm-utils",5624 "rand 0.7.3",5625 "scale-info",5626 "serde",5627 "smallvec",5628 "sp-core",5629 "sp-io",5630 "sp-runtime",5631 "sp-sandbox",5632 "sp-std",5633 "wasmi-validation",5634]56355636[[package]]5637name = "pallet-contracts-primitives"5638version = "4.0.0-dev"5639source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5640dependencies = [5641 "bitflags",5642 "parity-scale-codec",5643 "scale-info",5644 "serde",5645 "sp-core",5646 "sp-runtime",5647 "sp-std",5648]56495650[[package]]5651name = "pallet-contracts-proc-macro"5652version = "4.0.0-dev"5653source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5654dependencies = [5655 "proc-macro2",5656 "quote",5657 "syn",5658]56595660[[package]]5661name = "pallet-democracy"5662version = "4.0.0-dev"5663source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5664dependencies = [5665 "frame-benchmarking",5666 "frame-support",5667 "frame-system",5668 "parity-scale-codec",5669 "scale-info",5670 "serde",5671 "sp-io",5672 "sp-runtime",5673 "sp-std",5674]56755676[[package]]5677name = "pallet-election-provider-multi-phase"5678version = "4.0.0-dev"5679source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5680dependencies = [5681 "frame-benchmarking",5682 "frame-election-provider-support",5683 "frame-support",5684 "frame-system",5685 "log",5686 "parity-scale-codec",5687 "rand 0.7.3",5688 "scale-info",5689 "sp-arithmetic",5690 "sp-core",5691 "sp-io",5692 "sp-npos-elections",5693 "sp-runtime",5694 "sp-std",5695 "static_assertions",5696 "strum 0.21.0",5697 "strum_macros 0.21.1",5698]56995700[[package]]5701name = "pallet-elections-phragmen"5702version = "5.0.0-dev"5703source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5704dependencies = [5705 "frame-benchmarking",5706 "frame-support",5707 "frame-system",5708 "log",5709 "parity-scale-codec",5710 "scale-info",5711 "sp-core",5712 "sp-io",5713 "sp-npos-elections",5714 "sp-runtime",5715 "sp-std",5716]57175718[[package]]5719name = "pallet-ethereum"5720version = "4.0.0-dev"5721source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"5722dependencies = [5723 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",5724 "ethereum-types",5725 "evm",5726 "fp-consensus",5727 "fp-evm",5728 "fp-rpc",5729 "fp-self-contained",5730 "fp-storage",5731 "frame-support",5732 "frame-system",5733 "pallet-balances",5734 "pallet-evm",5735 "pallet-timestamp",5736 "parity-scale-codec",5737 "rlp",5738 "rustc-hex",5739 "scale-info",5740 "serde",5741 "sha3 0.8.2",5742 "sp-io",5743 "sp-runtime",5744 "sp-std",5745]57465747[[package]]5748name = "pallet-evm"5749version = "6.0.0-dev"5750source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"5751dependencies = [5752 "evm",5753 "evm-gasometer",5754 "evm-runtime",5755 "fp-evm",5756 "frame-benchmarking",5757 "frame-support",5758 "frame-system",5759 "hex",5760 "impl-trait-for-tuples 0.2.1",5761 "log",5762 "pallet-balances",5763 "pallet-timestamp",5764 "parity-scale-codec",5765 "primitive-types 0.9.1",5766 "rlp",5767 "scale-info",5768 "serde",5769 "sha3 0.8.2",5770 "sp-core",5771 "sp-io",5772 "sp-runtime",5773 "sp-std",5774]57755776[[package]]5777name = "pallet-evm-coder-substrate"5778version = "0.1.0"5779dependencies = [5780 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",5781 "evm-coder",5782 "frame-support",5783 "frame-system",5784 "pallet-ethereum",5785 "pallet-evm",5786 "parity-scale-codec",5787 "scale-info",5788 "sp-core",5789 "sp-std",5790]57915792[[package]]5793name = "pallet-evm-contract-helpers"5794version = "0.1.0"5795dependencies = [5796 "evm-coder",5797 "frame-support",5798 "frame-system",5799 "log",5800 "pallet-evm",5801 "pallet-evm-coder-substrate",5802 "parity-scale-codec",5803 "scale-info",5804 "sp-core",5805 "sp-runtime",5806 "sp-std",5807 "up-sponsorship",5808]58095810[[package]]5811name = "pallet-evm-migration"5812version = "0.1.0"5813dependencies = [5814 "fp-evm",5815 "frame-benchmarking",5816 "frame-support",5817 "frame-system",5818 "pallet-evm",5819 "parity-scale-codec",5820 "scale-info",5821 "sp-core",5822 "sp-io",5823 "sp-runtime",5824 "sp-std",5825]58265827[[package]]5828name = "pallet-evm-transaction-payment"5829version = "0.1.0"5830dependencies = [5831 "fp-evm",5832 "frame-support",5833 "frame-system",5834 "pallet-ethereum",5835 "pallet-evm",5836 "parity-scale-codec",5837 "scale-info",5838 "sp-core",5839 "sp-io",5840 "sp-runtime",5841 "sp-std",5842 "up-sponsorship",5843]58445845[[package]]5846name = "pallet-fungible"5847version = "0.1.0"5848dependencies = [5849 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",5850 "evm-coder",5851 "frame-benchmarking",5852 "frame-support",5853 "frame-system",5854 "nft-data-structs",5855 "pallet-common",5856 "pallet-evm-coder-substrate",5857 "parity-scale-codec",5858 "scale-info",5859 "sp-core",5860 "sp-runtime",5861 "sp-std",5862]58635864[[package]]5865name = "pallet-gilt"5866version = "4.0.0-dev"5867source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5868dependencies = [5869 "frame-benchmarking",5870 "frame-support",5871 "frame-system",5872 "parity-scale-codec",5873 "scale-info",5874 "sp-arithmetic",5875 "sp-runtime",5876 "sp-std",5877]58785879[[package]]5880name = "pallet-grandpa"5881version = "4.0.0-dev"5882source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5883dependencies = [5884 "frame-benchmarking",5885 "frame-support",5886 "frame-system",5887 "log",5888 "pallet-authorship",5889 "pallet-session",5890 "parity-scale-codec",5891 "scale-info",5892 "sp-application-crypto",5893 "sp-core",5894 "sp-finality-grandpa",5895 "sp-io",5896 "sp-runtime",5897 "sp-session",5898 "sp-staking",5899 "sp-std",5900]59015902[[package]]5903name = "pallet-identity"5904version = "4.0.0-dev"5905source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5906dependencies = [5907 "enumflags2",5908 "frame-benchmarking",5909 "frame-support",5910 "frame-system",5911 "parity-scale-codec",5912 "scale-info",5913 "sp-io",5914 "sp-runtime",5915 "sp-std",5916]59175918[[package]]5919name = "pallet-im-online"5920version = "4.0.0-dev"5921source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5922dependencies = [5923 "frame-benchmarking",5924 "frame-support",5925 "frame-system",5926 "log",5927 "pallet-authorship",5928 "parity-scale-codec",5929 "scale-info",5930 "sp-application-crypto",5931 "sp-core",5932 "sp-io",5933 "sp-runtime",5934 "sp-staking",5935 "sp-std",5936]59375938[[package]]5939name = "pallet-indices"5940version = "4.0.0-dev"5941source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5942dependencies = [5943 "frame-benchmarking",5944 "frame-support",5945 "frame-system",5946 "parity-scale-codec",5947 "scale-info",5948 "sp-core",5949 "sp-io",5950 "sp-keyring",5951 "sp-runtime",5952 "sp-std",5953]59545955[[package]]5956name = "pallet-inflation"5957version = "3.0.0"5958dependencies = [5959 "frame-benchmarking",5960 "frame-support",5961 "frame-system",5962 "pallet-balances",5963 "pallet-randomness-collective-flip",5964 "pallet-timestamp",5965 "parity-scale-codec",5966 "scale-info",5967 "serde",5968 "sp-core",5969 "sp-io",5970 "sp-runtime",5971 "sp-std",5972]59735974[[package]]5975name = "pallet-membership"5976version = "4.0.0-dev"5977source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5978dependencies = [5979 "frame-benchmarking",5980 "frame-support",5981 "frame-system",5982 "log",5983 "parity-scale-codec",5984 "scale-info",5985 "sp-core",5986 "sp-io",5987 "sp-runtime",5988 "sp-std",5989]59905991[[package]]5992name = "pallet-mmr"5993version = "4.0.0-dev"5994source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5995dependencies = [5996 "ckb-merkle-mountain-range",5997 "frame-benchmarking",5998 "frame-support",5999 "frame-system",6000 "pallet-mmr-primitives",6001 "parity-scale-codec",6002 "scale-info",6003 "sp-core",6004 "sp-io",6005 "sp-runtime",6006 "sp-std",6007]60086009[[package]]6010name = "pallet-mmr-primitives"6011version = "4.0.0-dev"6012source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6013dependencies = [6014 "frame-support",6015 "frame-system",6016 "log",6017 "parity-scale-codec",6018 "serde",6019 "sp-api",6020 "sp-core",6021 "sp-runtime",6022 "sp-std",6023]60246025[[package]]6026name = "pallet-mmr-rpc"6027version = "3.0.0"6028source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6029dependencies = [6030 "jsonrpc-core",6031 "jsonrpc-core-client",6032 "jsonrpc-derive",6033 "pallet-mmr-primitives",6034 "parity-scale-codec",6035 "serde",6036 "sp-api",6037 "sp-blockchain",6038 "sp-core",6039 "sp-runtime",6040]60416042[[package]]6043name = "pallet-multisig"6044version = "4.0.0-dev"6045source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6046dependencies = [6047 "frame-benchmarking",6048 "frame-support",6049 "frame-system",6050 "parity-scale-codec",6051 "scale-info",6052 "sp-io",6053 "sp-runtime",6054 "sp-std",6055]60566057[[package]]6058name = "pallet-nft"6059version = "3.0.0"6060dependencies = [6061 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",6062 "evm-coder",6063 "fp-evm",6064 "frame-benchmarking",6065 "frame-support",6066 "frame-system",6067 "hex-literal",6068 "nft-data-structs",6069 "pallet-balances",6070 "pallet-common",6071 "pallet-ethereum",6072 "pallet-evm",6073 "pallet-evm-coder-substrate",6074 "pallet-fungible",6075 "pallet-nonfungible",6076 "pallet-randomness-collective-flip",6077 "pallet-refungible",6078 "pallet-timestamp",6079 "pallet-transaction-payment",6080 "parity-scale-codec",6081 "primitive-types 0.10.1",6082 "rlp",6083 "scale-info",6084 "serde",6085 "sp-api",6086 "sp-core",6087 "sp-io",6088 "sp-runtime",6089 "sp-std",6090 "up-sponsorship",6091]60926093[[package]]6094name = "pallet-nft-transaction-payment"6095version = "3.0.0"6096dependencies = [6097 "frame-benchmarking",6098 "frame-support",6099 "frame-system",6100 "pallet-transaction-payment",6101 "parity-scale-codec",6102 "scale-info",6103 "serde",6104 "sp-core",6105 "sp-io",6106 "sp-runtime",6107 "sp-std",6108 "up-sponsorship",6109]61106111[[package]]6112name = "pallet-nicks"6113version = "4.0.0-dev"6114source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6115dependencies = [6116 "frame-support",6117 "frame-system",6118 "parity-scale-codec",6119 "scale-info",6120 "sp-io",6121 "sp-runtime",6122 "sp-std",6123]61246125[[package]]6126name = "pallet-nonfungible"6127version = "0.1.0"6128dependencies = [6129 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",6130 "evm-coder",6131 "frame-benchmarking",6132 "frame-support",6133 "frame-system",6134 "nft-data-structs",6135 "pallet-common",6136 "pallet-evm-coder-substrate",6137 "parity-scale-codec",6138 "scale-info",6139 "sp-core",6140 "sp-runtime",6141 "sp-std",6142]61436144[[package]]6145name = "pallet-offences"6146version = "4.0.0-dev"6147source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6148dependencies = [6149 "frame-support",6150 "frame-system",6151 "log",6152 "pallet-balances",6153 "parity-scale-codec",6154 "scale-info",6155 "serde",6156 "sp-runtime",6157 "sp-staking",6158 "sp-std",6159]61606161[[package]]6162name = "pallet-offences-benchmarking"6163version = "4.0.0-dev"6164source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6165dependencies = [6166 "frame-benchmarking",6167 "frame-election-provider-support",6168 "frame-support",6169 "frame-system",6170 "pallet-babe",6171 "pallet-balances",6172 "pallet-grandpa",6173 "pallet-im-online",6174 "pallet-offences",6175 "pallet-session",6176 "pallet-staking",6177 "parity-scale-codec",6178 "scale-info",6179 "sp-runtime",6180 "sp-staking",6181 "sp-std",6182]61836184[[package]]6185name = "pallet-proxy"6186version = "4.0.0-dev"6187source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6188dependencies = [6189 "frame-benchmarking",6190 "frame-support",6191 "frame-system",6192 "parity-scale-codec",6193 "scale-info",6194 "sp-io",6195 "sp-runtime",6196 "sp-std",6197]61986199[[package]]6200name = "pallet-randomness-collective-flip"6201version = "4.0.0-dev"6202source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6203dependencies = [6204 "frame-support",6205 "frame-system",6206 "parity-scale-codec",6207 "safe-mix",6208 "scale-info",6209 "sp-runtime",6210 "sp-std",6211]62126213[[package]]6214name = "pallet-recovery"6215version = "4.0.0-dev"6216source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6217dependencies = [6218 "frame-support",6219 "frame-system",6220 "parity-scale-codec",6221 "scale-info",6222 "sp-io",6223 "sp-runtime",6224 "sp-std",6225]62266227[[package]]6228name = "pallet-refungible"6229version = "0.1.0"6230dependencies = [6231 "frame-benchmarking",6232 "frame-support",6233 "frame-system",6234 "nft-data-structs",6235 "pallet-common",6236 "parity-scale-codec",6237 "scale-info",6238 "sp-core",6239 "sp-runtime",6240 "sp-std",6241]62426243[[package]]6244name = "pallet-scheduler"6245version = "4.0.0-dev"6246source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6247dependencies = [6248 "frame-benchmarking",6249 "frame-support",6250 "frame-system",6251 "log",6252 "parity-scale-codec",6253 "scale-info",6254 "sp-io",6255 "sp-runtime",6256 "sp-std",6257]62586259[[package]]6260name = "pallet-session"6261version = "4.0.0-dev"6262source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6263dependencies = [6264 "frame-support",6265 "frame-system",6266 "impl-trait-for-tuples 0.2.1",6267 "log",6268 "pallet-timestamp",6269 "parity-scale-codec",6270 "scale-info",6271 "sp-core",6272 "sp-io",6273 "sp-runtime",6274 "sp-session",6275 "sp-staking",6276 "sp-std",6277 "sp-trie",6278]62796280[[package]]6281name = "pallet-session-benchmarking"6282version = "4.0.0-dev"6283source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6284dependencies = [6285 "frame-benchmarking",6286 "frame-support",6287 "frame-system",6288 "pallet-session",6289 "pallet-staking",6290 "rand 0.7.3",6291 "sp-runtime",6292 "sp-session",6293 "sp-std",6294]62956296[[package]]6297name = "pallet-society"6298version = "4.0.0-dev"6299source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6300dependencies = [6301 "frame-support",6302 "frame-system",6303 "parity-scale-codec",6304 "rand_chacha 0.2.2",6305 "scale-info",6306 "sp-runtime",6307 "sp-std",6308]63096310[[package]]6311name = "pallet-staking"6312version = "4.0.0-dev"6313source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6314dependencies = [6315 "frame-benchmarking",6316 "frame-election-provider-support",6317 "frame-support",6318 "frame-system",6319 "log",6320 "pallet-authorship",6321 "pallet-session",6322 "parity-scale-codec",6323 "rand_chacha 0.2.2",6324 "scale-info",6325 "serde",6326 "sp-application-crypto",6327 "sp-io",6328 "sp-runtime",6329 "sp-staking",6330 "sp-std",6331]63326333[[package]]6334name = "pallet-staking-reward-curve"6335version = "4.0.0-dev"6336source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6337dependencies = [6338 "proc-macro-crate 1.1.0",6339 "proc-macro2",6340 "quote",6341 "syn",6342]63436344[[package]]6345name = "pallet-staking-reward-fn"6346version = "4.0.0-dev"6347source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6348dependencies = [6349 "log",6350 "sp-arithmetic",6351]63526353[[package]]6354name = "pallet-sudo"6355version = "4.0.0-dev"6356source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6357dependencies = [6358 "frame-support",6359 "frame-system",6360 "parity-scale-codec",6361 "scale-info",6362 "sp-io",6363 "sp-runtime",6364 "sp-std",6365]63666367[[package]]6368name = "pallet-template-transaction-payment"6369version = "3.0.0"6370source = "git+https://github.com/UniqueNetwork/pallet-sponsoring#ab8b91e9350a31133f3a3e4f52a84c6de4108e95"6371dependencies = [6372 "frame-benchmarking",6373 "frame-support",6374 "frame-system",6375 "pallet-balances",6376 "pallet-transaction-payment",6377 "parity-scale-codec",6378 "scale-info",6379 "serde",6380 "sp-core",6381 "sp-io",6382 "sp-runtime",6383 "sp-std",6384 "up-sponsorship",6385]63866387[[package]]6388name = "pallet-timestamp"6389version = "4.0.0-dev"6390source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6391dependencies = [6392 "frame-benchmarking",6393 "frame-support",6394 "frame-system",6395 "log",6396 "parity-scale-codec",6397 "scale-info",6398 "sp-inherents",6399 "sp-io",6400 "sp-runtime",6401 "sp-std",6402 "sp-timestamp",6403]64046405[[package]]6406name = "pallet-tips"6407version = "4.0.0-dev"6408source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6409dependencies = [6410 "frame-benchmarking",6411 "frame-support",6412 "frame-system",6413 "log",6414 "pallet-treasury",6415 "parity-scale-codec",6416 "scale-info",6417 "serde",6418 "sp-core",6419 "sp-io",6420 "sp-runtime",6421 "sp-std",6422]64236424[[package]]6425name = "pallet-transaction-payment"6426version = "4.0.0-dev"6427source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6428dependencies = [6429 "frame-support",6430 "frame-system",6431 "parity-scale-codec",6432 "scale-info",6433 "serde",6434 "smallvec",6435 "sp-core",6436 "sp-io",6437 "sp-runtime",6438 "sp-std",6439]64406441[[package]]6442name = "pallet-transaction-payment-rpc"6443version = "4.0.0-dev"6444source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6445dependencies = [6446 "jsonrpc-core",6447 "jsonrpc-core-client",6448 "jsonrpc-derive",6449 "pallet-transaction-payment-rpc-runtime-api",6450 "parity-scale-codec",6451 "sp-api",6452 "sp-blockchain",6453 "sp-core",6454 "sp-rpc",6455 "sp-runtime",6456]64576458[[package]]6459name = "pallet-transaction-payment-rpc-runtime-api"6460version = "4.0.0-dev"6461source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6462dependencies = [6463 "pallet-transaction-payment",6464 "parity-scale-codec",6465 "sp-api",6466 "sp-runtime",6467]64686469[[package]]6470name = "pallet-treasury"6471version = "4.0.0-dev"6472source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6473dependencies = [6474 "frame-benchmarking",6475 "frame-support",6476 "frame-system",6477 "impl-trait-for-tuples 0.2.1",6478 "pallet-balances",6479 "parity-scale-codec",6480 "scale-info",6481 "serde",6482 "sp-runtime",6483 "sp-std",6484]64856486[[package]]6487name = "pallet-unq-scheduler"6488version = "3.0.0"6489dependencies = [6490 "frame-benchmarking",6491 "frame-support",6492 "frame-system",6493 "log",6494 "parity-scale-codec",6495 "scale-info",6496 "serde",6497 "sp-core",6498 "sp-io",6499 "sp-runtime",6500 "sp-std",6501 "substrate-test-utils",6502 "up-sponsorship",6503]65046505[[package]]6506name = "pallet-utility"6507version = "4.0.0-dev"6508source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6509dependencies = [6510 "frame-benchmarking",6511 "frame-support",6512 "frame-system",6513 "parity-scale-codec",6514 "scale-info",6515 "sp-core",6516 "sp-io",6517 "sp-runtime",6518 "sp-std",6519]65206521[[package]]6522name = "pallet-vesting"6523version = "4.0.0-dev"6524source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6525dependencies = [6526 "frame-benchmarking",6527 "frame-support",6528 "frame-system",6529 "log",6530 "parity-scale-codec",6531 "scale-info",6532 "sp-runtime",6533 "sp-std",6534]65356536[[package]]6537name = "pallet-xcm"6538version = "0.9.12"6539source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6540dependencies = [6541 "frame-support",6542 "frame-system",6543 "log",6544 "parity-scale-codec",6545 "scale-info",6546 "serde",6547 "sp-core",6548 "sp-runtime",6549 "sp-std",6550 "xcm",6551 "xcm-executor",6552]65536554[[package]]6555name = "pallet-xcm-benchmarks"6556version = "0.9.8"6557source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6558dependencies = [6559 "frame-benchmarking",6560 "frame-support",6561 "frame-system",6562 "log",6563 "parity-scale-codec",6564 "scale-info",6565 "sp-runtime",6566 "sp-std",6567 "xcm",6568 "xcm-executor",6569]65706571[[package]]6572name = "parachain-info"6573version = "0.1.0"6574source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"6575dependencies = [6576 "cumulus-primitives-core",6577 "frame-support",6578 "frame-system",6579 "parity-scale-codec",6580 "scale-info",6581 "serde",6582]65836584[[package]]6585name = "parity-db"6586version = "0.3.3"6587source = "registry+https://github.com/rust-lang/crates.io-index"6588checksum = "e7ccc4a8687027deb53d45c5434a1f1b330c9d1069a59cfe80a62aa9a1da25ae"6589dependencies = [6590 "blake2-rfc",6591 "crc32fast",6592 "fs2",6593 "hex",6594 "libc",6595 "log",6596 "lz4",6597 "memmap2",6598 "parking_lot 0.11.2",6599 "rand 0.8.4",6600 "snap",6601]66026603[[package]]6604name = "parity-scale-codec"6605version = "2.3.1"6606source = "registry+https://github.com/rust-lang/crates.io-index"6607checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909"6608dependencies = [6609 "arrayvec 0.7.2",6610 "bitvec 0.20.4",6611 "byte-slice-cast",6612 "impl-trait-for-tuples 0.2.1",6613 "parity-scale-codec-derive",6614 "serde",6615]66166617[[package]]6618name = "parity-scale-codec-derive"6619version = "2.3.1"6620source = "registry+https://github.com/rust-lang/crates.io-index"6621checksum = "1557010476e0595c9b568d16dcfb81b93cdeb157612726f5170d31aa707bed27"6622dependencies = [6623 "proc-macro-crate 1.1.0",6624 "proc-macro2",6625 "quote",6626 "syn",6627]66286629[[package]]6630name = "parity-send-wrapper"6631version = "0.1.0"6632source = "registry+https://github.com/rust-lang/crates.io-index"6633checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f"66346635[[package]]6636name = "parity-tokio-ipc"6637version = "0.9.0"6638source = "registry+https://github.com/rust-lang/crates.io-index"6639checksum = "9981e32fb75e004cc148f5fb70342f393830e0a4aa62e3cc93b50976218d42b6"6640dependencies = [6641 "futures 0.3.17",6642 "libc",6643 "log",6644 "rand 0.7.3",6645 "tokio 1.13.0",6646 "winapi 0.3.9",6647]66486649[[package]]6650name = "parity-util-mem"6651version = "0.10.2"6652source = "registry+https://github.com/rust-lang/crates.io-index"6653checksum = "6f4cb4e169446179cbc6b8b6320cc9fca49bd2e94e8db25f25f200a8ea774770"6654dependencies = [6655 "cfg-if 1.0.0",6656 "ethereum-types",6657 "hashbrown",6658 "impl-trait-for-tuples 0.2.1",6659 "lru 0.6.6",6660 "parity-util-mem-derive",6661 "parking_lot 0.11.2",6662 "primitive-types 0.10.1",6663 "smallvec",6664 "winapi 0.3.9",6665]66666667[[package]]6668name = "parity-util-mem-derive"6669version = "0.1.0"6670source = "registry+https://github.com/rust-lang/crates.io-index"6671checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2"6672dependencies = [6673 "proc-macro2",6674 "syn",6675 "synstructure",6676]66776678[[package]]6679name = "parity-wasm"6680version = "0.32.0"6681source = "registry+https://github.com/rust-lang/crates.io-index"6682checksum = "16ad52817c4d343339b3bc2e26861bd21478eda0b7509acf83505727000512ac"6683dependencies = [6684 "byteorder",6685]66866687[[package]]6688name = "parity-wasm"6689version = "0.42.2"6690source = "registry+https://github.com/rust-lang/crates.io-index"6691checksum = "be5e13c266502aadf83426d87d81a0f5d1ef45b8027f5a471c360abfe4bfae92"66926693[[package]]6694name = "parity-ws"6695version = "0.11.1"6696source = "registry+https://github.com/rust-lang/crates.io-index"6697checksum = "5983d3929ad50f12c3eb9a6743f19d691866ecd44da74c0a3308c3f8a56df0c6"6698dependencies = [6699 "byteorder",6700 "bytes 0.4.12",6701 "httparse",6702 "log",6703 "mio 0.6.23",6704 "mio-extras",6705 "rand 0.7.3",6706 "sha-1 0.8.2",6707 "slab",6708 "url 2.2.2",6709]67106711[[package]]6712name = "parking"6713version = "2.0.0"6714source = "registry+https://github.com/rust-lang/crates.io-index"6715checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"67166717[[package]]6718name = "parking_lot"6719version = "0.10.2"6720source = "registry+https://github.com/rust-lang/crates.io-index"6721checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"6722dependencies = [6723 "lock_api 0.3.4",6724 "parking_lot_core 0.7.2",6725]67266727[[package]]6728name = "parking_lot"6729version = "0.11.2"6730source = "registry+https://github.com/rust-lang/crates.io-index"6731checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"6732dependencies = [6733 "instant",6734 "lock_api 0.4.5",6735 "parking_lot_core 0.8.5",6736]67376738[[package]]6739name = "parking_lot_core"6740version = "0.7.2"6741source = "registry+https://github.com/rust-lang/crates.io-index"6742checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"6743dependencies = [6744 "cfg-if 0.1.10",6745 "cloudabi",6746 "libc",6747 "redox_syscall 0.1.57",6748 "smallvec",6749 "winapi 0.3.9",6750]67516752[[package]]6753name = "parking_lot_core"6754version = "0.8.5"6755source = "registry+https://github.com/rust-lang/crates.io-index"6756checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"6757dependencies = [6758 "cfg-if 1.0.0",6759 "instant",6760 "libc",6761 "redox_syscall 0.2.10",6762 "smallvec",6763 "winapi 0.3.9",6764]67656766[[package]]6767name = "paste"6768version = "1.0.5"6769source = "registry+https://github.com/rust-lang/crates.io-index"6770checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"67716772[[package]]6773name = "pbkdf2"6774version = "0.4.0"6775source = "registry+https://github.com/rust-lang/crates.io-index"6776checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd"6777dependencies = [6778 "crypto-mac 0.8.0",6779]67806781[[package]]6782name = "pbkdf2"6783version = "0.8.0"6784source = "registry+https://github.com/rust-lang/crates.io-index"6785checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa"6786dependencies = [6787 "crypto-mac 0.11.1",6788]67896790[[package]]6791name = "peeking_take_while"6792version = "0.1.2"6793source = "registry+https://github.com/rust-lang/crates.io-index"6794checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"67956796[[package]]6797name = "percent-encoding"6798version = "1.0.1"6799source = "registry+https://github.com/rust-lang/crates.io-index"6800checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"68016802[[package]]6803name = "percent-encoding"6804version = "2.1.0"6805source = "registry+https://github.com/rust-lang/crates.io-index"6806checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"68076808[[package]]6809name = "pest"6810version = "2.1.3"6811source = "registry+https://github.com/rust-lang/crates.io-index"6812checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"6813dependencies = [6814 "ucd-trie",6815]68166817[[package]]6818name = "pest_derive"6819version = "2.1.0"6820source = "registry+https://github.com/rust-lang/crates.io-index"6821checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"6822dependencies = [6823 "pest",6824 "pest_generator",6825]68266827[[package]]6828name = "pest_generator"6829version = "2.1.3"6830source = "registry+https://github.com/rust-lang/crates.io-index"6831checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"6832dependencies = [6833 "pest",6834 "pest_meta",6835 "proc-macro2",6836 "quote",6837 "syn",6838]68396840[[package]]6841name = "pest_meta"6842version = "2.1.3"6843source = "registry+https://github.com/rust-lang/crates.io-index"6844checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"6845dependencies = [6846 "maplit",6847 "pest",6848 "sha-1 0.8.2",6849]68506851[[package]]6852name = "petgraph"6853version = "0.5.1"6854source = "registry+https://github.com/rust-lang/crates.io-index"6855checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7"6856dependencies = [6857 "fixedbitset",6858 "indexmap",6859]68606861[[package]]6862name = "pin-project"6863version = "0.4.28"6864source = "registry+https://github.com/rust-lang/crates.io-index"6865checksum = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f"6866dependencies = [6867 "pin-project-internal 0.4.28",6868]68696870[[package]]6871name = "pin-project"6872version = "1.0.8"6873source = "registry+https://github.com/rust-lang/crates.io-index"6874checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08"6875dependencies = [6876 "pin-project-internal 1.0.8",6877]68786879[[package]]6880name = "pin-project-internal"6881version = "0.4.28"6882source = "registry+https://github.com/rust-lang/crates.io-index"6883checksum = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e"6884dependencies = [6885 "proc-macro2",6886 "quote",6887 "syn",6888]68896890[[package]]6891name = "pin-project-internal"6892version = "1.0.8"6893source = "registry+https://github.com/rust-lang/crates.io-index"6894checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"6895dependencies = [6896 "proc-macro2",6897 "quote",6898 "syn",6899]69006901[[package]]6902name = "pin-project-lite"6903version = "0.1.12"6904source = "registry+https://github.com/rust-lang/crates.io-index"6905checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"69066907[[package]]6908name = "pin-project-lite"6909version = "0.2.7"6910source = "registry+https://github.com/rust-lang/crates.io-index"6911checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"69126913[[package]]6914name = "pin-utils"6915version = "0.1.0"6916source = "registry+https://github.com/rust-lang/crates.io-index"6917checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"69186919[[package]]6920name = "pkg-config"6921version = "0.3.22"6922source = "registry+https://github.com/rust-lang/crates.io-index"6923checksum = "12295df4f294471248581bc09bef3c38a5e46f1e36d6a37353621a0c6c357e1f"69246925[[package]]6926name = "platforms"6927version = "1.1.0"6928source = "registry+https://github.com/rust-lang/crates.io-index"6929checksum = "989d43012e2ca1c4a02507c67282691a0a3207f9dc67cec596b43fe925b3d325"69306931[[package]]6932name = "polkadot-approval-distribution"6933version = "0.9.12"6934source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6935dependencies = [6936 "futures 0.3.17",6937 "polkadot-node-network-protocol",6938 "polkadot-node-primitives",6939 "polkadot-node-subsystem",6940 "polkadot-node-subsystem-util",6941 "polkadot-primitives",6942 "tracing",6943]69446945[[package]]6946name = "polkadot-availability-bitfield-distribution"6947version = "0.9.12"6948source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6949dependencies = [6950 "futures 0.3.17",6951 "polkadot-node-network-protocol",6952 "polkadot-node-subsystem",6953 "polkadot-node-subsystem-util",6954 "polkadot-primitives",6955 "tracing",6956]69576958[[package]]6959name = "polkadot-availability-distribution"6960version = "0.9.12"6961source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6962dependencies = [6963 "derive_more",6964 "futures 0.3.17",6965 "lru 0.7.0",6966 "parity-scale-codec",6967 "polkadot-erasure-coding",6968 "polkadot-node-network-protocol",6969 "polkadot-node-primitives",6970 "polkadot-node-subsystem",6971 "polkadot-node-subsystem-util",6972 "polkadot-primitives",6973 "rand 0.8.4",6974 "sp-core",6975 "sp-keystore",6976 "thiserror",6977 "tracing",6978]69796980[[package]]6981name = "polkadot-availability-recovery"6982version = "0.9.12"6983source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6984dependencies = [6985 "futures 0.3.17",6986 "lru 0.7.0",6987 "parity-scale-codec",6988 "polkadot-erasure-coding",6989 "polkadot-node-network-protocol",6990 "polkadot-node-primitives",6991 "polkadot-node-subsystem",6992 "polkadot-node-subsystem-util",6993 "polkadot-primitives",6994 "rand 0.8.4",6995 "sc-network",6996 "thiserror",6997 "tracing",6998]69997000[[package]]7001name = "polkadot-cli"7002version = "0.9.12"7003source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7004dependencies = [7005 "frame-benchmarking-cli",7006 "futures 0.3.17",7007 "log",7008 "polkadot-node-core-pvf",7009 "polkadot-service",7010 "sc-cli",7011 "sc-service",7012 "sp-core",7013 "sp-trie",7014 "structopt",7015 "substrate-build-script-utils",7016 "thiserror",7017 "try-runtime-cli",7018]70197020[[package]]7021name = "polkadot-client"7022version = "0.9.12"7023source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7024dependencies = [7025 "beefy-primitives",7026 "frame-benchmarking",7027 "frame-system-rpc-runtime-api",7028 "pallet-mmr-primitives",7029 "pallet-transaction-payment-rpc-runtime-api",7030 "polkadot-primitives",7031 "polkadot-runtime",7032 "sc-client-api",7033 "sc-consensus",7034 "sc-executor",7035 "sc-service",7036 "sp-api",7037 "sp-authority-discovery",7038 "sp-block-builder",7039 "sp-blockchain",7040 "sp-consensus",7041 "sp-consensus-babe",7042 "sp-finality-grandpa",7043 "sp-offchain",7044 "sp-runtime",7045 "sp-session",7046 "sp-storage",7047 "sp-transaction-pool",7048]70497050[[package]]7051name = "polkadot-collator-protocol"7052version = "0.9.12"7053source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7054dependencies = [7055 "always-assert",7056 "derive_more",7057 "futures 0.3.17",7058 "futures-timer 3.0.2",7059 "polkadot-node-network-protocol",7060 "polkadot-node-primitives",7061 "polkadot-node-subsystem",7062 "polkadot-node-subsystem-util",7063 "polkadot-primitives",7064 "sp-core",7065 "sp-keystore",7066 "sp-runtime",7067 "thiserror",7068 "tracing",7069]70707071[[package]]7072name = "polkadot-core-primitives"7073version = "0.9.12"7074source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7075dependencies = [7076 "parity-scale-codec",7077 "parity-util-mem",7078 "scale-info",7079 "sp-core",7080 "sp-runtime",7081 "sp-std",7082]70837084[[package]]7085name = "polkadot-dispute-distribution"7086version = "0.9.12"7087source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7088dependencies = [7089 "derive_more",7090 "futures 0.3.17",7091 "lru 0.7.0",7092 "parity-scale-codec",7093 "polkadot-erasure-coding",7094 "polkadot-node-network-protocol",7095 "polkadot-node-primitives",7096 "polkadot-node-subsystem",7097 "polkadot-node-subsystem-util",7098 "polkadot-primitives",7099 "sc-network",7100 "sp-application-crypto",7101 "sp-keystore",7102 "thiserror",7103 "tracing",7104]71057106[[package]]7107name = "polkadot-erasure-coding"7108version = "0.9.12"7109source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7110dependencies = [7111 "parity-scale-codec",7112 "polkadot-node-primitives",7113 "polkadot-primitives",7114 "reed-solomon-novelpoly",7115 "sp-core",7116 "sp-trie",7117 "thiserror",7118]71197120[[package]]7121name = "polkadot-gossip-support"7122version = "0.9.12"7123source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7124dependencies = [7125 "futures 0.3.17",7126 "futures-timer 3.0.2",7127 "polkadot-node-network-protocol",7128 "polkadot-node-subsystem",7129 "polkadot-node-subsystem-util",7130 "polkadot-primitives",7131 "rand 0.8.4",7132 "rand_chacha 0.3.1",7133 "sc-network",7134 "sp-application-crypto",7135 "sp-core",7136 "sp-keystore",7137 "tracing",7138]71397140[[package]]7141name = "polkadot-network-bridge"7142version = "0.9.12"7143source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7144dependencies = [7145 "async-trait",7146 "futures 0.3.17",7147 "parity-scale-codec",7148 "parking_lot 0.11.2",7149 "polkadot-node-network-protocol",7150 "polkadot-node-subsystem",7151 "polkadot-node-subsystem-util",7152 "polkadot-overseer",7153 "polkadot-primitives",7154 "sc-network",7155 "sp-consensus",7156 "tracing",7157]71587159[[package]]7160name = "polkadot-node-collation-generation"7161version = "0.9.12"7162source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7163dependencies = [7164 "futures 0.3.17",7165 "parity-scale-codec",7166 "polkadot-erasure-coding",7167 "polkadot-node-primitives",7168 "polkadot-node-subsystem",7169 "polkadot-node-subsystem-util",7170 "polkadot-primitives",7171 "sp-core",7172 "sp-maybe-compressed-blob",7173 "thiserror",7174 "tracing",7175]71767177[[package]]7178name = "polkadot-node-core-approval-voting"7179version = "0.9.12"7180source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7181dependencies = [7182 "bitvec 0.20.4",7183 "derive_more",7184 "futures 0.3.17",7185 "futures-timer 3.0.2",7186 "kvdb",7187 "lru 0.7.0",7188 "merlin",7189 "parity-scale-codec",7190 "polkadot-node-jaeger",7191 "polkadot-node-primitives",7192 "polkadot-node-subsystem",7193 "polkadot-node-subsystem-util",7194 "polkadot-overseer",7195 "polkadot-primitives",7196 "sc-keystore",7197 "schnorrkel",7198 "sp-application-crypto",7199 "sp-consensus",7200 "sp-consensus-slots",7201 "sp-runtime",7202 "tracing",7203]72047205[[package]]7206name = "polkadot-node-core-av-store"7207version = "0.9.12"7208source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7209dependencies = [7210 "bitvec 0.20.4",7211 "futures 0.3.17",7212 "futures-timer 3.0.2",7213 "kvdb",7214 "parity-scale-codec",7215 "polkadot-erasure-coding",7216 "polkadot-node-primitives",7217 "polkadot-node-subsystem",7218 "polkadot-node-subsystem-util",7219 "polkadot-overseer",7220 "polkadot-primitives",7221 "thiserror",7222 "tracing",7223]72247225[[package]]7226name = "polkadot-node-core-backing"7227version = "0.9.12"7228source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7229dependencies = [7230 "bitvec 0.20.4",7231 "futures 0.3.17",7232 "polkadot-erasure-coding",7233 "polkadot-node-primitives",7234 "polkadot-node-subsystem",7235 "polkadot-node-subsystem-util",7236 "polkadot-primitives",7237 "polkadot-statement-table",7238 "sp-keystore",7239 "thiserror",7240 "tracing",7241]72427243[[package]]7244name = "polkadot-node-core-bitfield-signing"7245version = "0.9.12"7246source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7247dependencies = [7248 "futures 0.3.17",7249 "polkadot-node-subsystem",7250 "polkadot-node-subsystem-util",7251 "polkadot-primitives",7252 "sp-keystore",7253 "thiserror",7254 "tracing",7255 "wasm-timer",7256]72577258[[package]]7259name = "polkadot-node-core-candidate-validation"7260version = "0.9.12"7261source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7262dependencies = [7263 "async-trait",7264 "futures 0.3.17",7265 "parity-scale-codec",7266 "polkadot-node-core-pvf",7267 "polkadot-node-primitives",7268 "polkadot-node-subsystem",7269 "polkadot-node-subsystem-util",7270 "polkadot-parachain",7271 "polkadot-primitives",7272 "sp-maybe-compressed-blob",7273 "tracing",7274]72757276[[package]]7277name = "polkadot-node-core-chain-api"7278version = "0.9.12"7279source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7280dependencies = [7281 "futures 0.3.17",7282 "polkadot-node-subsystem",7283 "polkadot-node-subsystem-util",7284 "polkadot-primitives",7285 "sc-client-api",7286 "sc-consensus-babe",7287 "sp-blockchain",7288 "tracing",7289]72907291[[package]]7292name = "polkadot-node-core-chain-selection"7293version = "0.9.12"7294source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7295dependencies = [7296 "futures 0.3.17",7297 "futures-timer 3.0.2",7298 "kvdb",7299 "parity-scale-codec",7300 "polkadot-node-primitives",7301 "polkadot-node-subsystem",7302 "polkadot-node-subsystem-util",7303 "polkadot-primitives",7304 "thiserror",7305 "tracing",7306]73077308[[package]]7309name = "polkadot-node-core-dispute-coordinator"7310version = "0.9.12"7311source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7312dependencies = [7313 "bitvec 0.20.4",7314 "derive_more",7315 "futures 0.3.17",7316 "kvdb",7317 "parity-scale-codec",7318 "polkadot-node-primitives",7319 "polkadot-node-subsystem",7320 "polkadot-node-subsystem-util",7321 "polkadot-primitives",7322 "sc-keystore",7323 "thiserror",7324 "tracing",7325]73267327[[package]]7328name = "polkadot-node-core-dispute-participation"7329version = "0.9.12"7330source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7331dependencies = [7332 "futures 0.3.17",7333 "polkadot-node-primitives",7334 "polkadot-node-subsystem",7335 "polkadot-primitives",7336 "thiserror",7337 "tracing",7338]73397340[[package]]7341name = "polkadot-node-core-parachains-inherent"7342version = "0.9.12"7343source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7344dependencies = [7345 "async-trait",7346 "futures 0.3.17",7347 "futures-timer 3.0.2",7348 "polkadot-node-subsystem",7349 "polkadot-primitives",7350 "sp-blockchain",7351 "sp-inherents",7352 "sp-runtime",7353 "thiserror",7354 "tracing",7355]73567357[[package]]7358name = "polkadot-node-core-provisioner"7359version = "0.9.12"7360source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7361dependencies = [7362 "bitvec 0.20.4",7363 "futures 0.3.17",7364 "futures-timer 3.0.2",7365 "polkadot-node-subsystem",7366 "polkadot-node-subsystem-util",7367 "polkadot-primitives",7368 "thiserror",7369 "tracing",7370]73717372[[package]]7373name = "polkadot-node-core-pvf"7374version = "0.9.12"7375source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7376dependencies = [7377 "always-assert",7378 "assert_matches",7379 "async-process",7380 "async-std",7381 "futures 0.3.17",7382 "futures-timer 3.0.2",7383 "libc",7384 "parity-scale-codec",7385 "pin-project 1.0.8",7386 "polkadot-core-primitives",7387 "polkadot-node-subsystem-util",7388 "polkadot-parachain",7389 "rand 0.8.4",7390 "sc-executor",7391 "sc-executor-common",7392 "sc-executor-wasmtime",7393 "slotmap",7394 "sp-core",7395 "sp-externalities",7396 "sp-io",7397 "sp-maybe-compressed-blob",7398 "sp-tracing",7399 "sp-wasm-interface",7400 "tracing",7401]74027403[[package]]7404name = "polkadot-node-core-runtime-api"7405version = "0.9.12"7406source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7407dependencies = [7408 "futures 0.3.17",7409 "memory-lru",7410 "parity-util-mem",7411 "polkadot-node-subsystem",7412 "polkadot-node-subsystem-util",7413 "polkadot-primitives",7414 "sp-api",7415 "sp-authority-discovery",7416 "sp-consensus-babe",7417 "sp-core",7418 "tracing",7419]74207421[[package]]7422name = "polkadot-node-jaeger"7423version = "0.9.12"7424source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7425dependencies = [7426 "async-std",7427 "lazy_static",7428 "log",7429 "mick-jaeger",7430 "parity-scale-codec",7431 "parking_lot 0.11.2",7432 "polkadot-node-primitives",7433 "polkadot-primitives",7434 "sc-network",7435 "sp-core",7436 "thiserror",7437]74387439[[package]]7440name = "polkadot-node-metrics"7441version = "0.9.12"7442source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7443dependencies = [7444 "futures 0.3.17",7445 "futures-timer 3.0.2",7446 "metered-channel",7447 "substrate-prometheus-endpoint",7448]74497450[[package]]7451name = "polkadot-node-network-protocol"7452version = "0.9.12"7453source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7454dependencies = [7455 "async-trait",7456 "derive_more",7457 "futures 0.3.17",7458 "parity-scale-codec",7459 "polkadot-node-jaeger",7460 "polkadot-node-primitives",7461 "polkadot-primitives",7462 "sc-authority-discovery",7463 "sc-network",7464 "strum 0.22.0",7465 "thiserror",7466]74677468[[package]]7469name = "polkadot-node-primitives"7470version = "0.9.12"7471source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7472dependencies = [7473 "bounded-vec",7474 "futures 0.3.17",7475 "parity-scale-codec",7476 "polkadot-parachain",7477 "polkadot-primitives",7478 "schnorrkel",7479 "serde",7480 "sp-application-crypto",7481 "sp-consensus-babe",7482 "sp-consensus-vrf",7483 "sp-core",7484 "sp-keystore",7485 "sp-maybe-compressed-blob",7486 "thiserror",7487 "zstd",7488]74897490[[package]]7491name = "polkadot-node-subsystem"7492version = "0.9.12"7493source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7494dependencies = [7495 "polkadot-node-jaeger",7496 "polkadot-node-subsystem-types",7497 "polkadot-overseer",7498]74997500[[package]]7501name = "polkadot-node-subsystem-types"7502version = "0.9.12"7503source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7504dependencies = [7505 "derive_more",7506 "futures 0.3.17",7507 "polkadot-node-jaeger",7508 "polkadot-node-network-protocol",7509 "polkadot-node-primitives",7510 "polkadot-overseer-gen",7511 "polkadot-primitives",7512 "polkadot-statement-table",7513 "sc-network",7514 "smallvec",7515 "substrate-prometheus-endpoint",7516 "thiserror",7517]75187519[[package]]7520name = "polkadot-node-subsystem-util"7521version = "0.9.12"7522source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7523dependencies = [7524 "async-trait",7525 "derive_more",7526 "futures 0.3.17",7527 "itertools",7528 "lru 0.7.0",7529 "metered-channel",7530 "parity-scale-codec",7531 "pin-project 1.0.8",7532 "polkadot-node-jaeger",7533 "polkadot-node-metrics",7534 "polkadot-node-network-protocol",7535 "polkadot-node-subsystem",7536 "polkadot-overseer",7537 "polkadot-primitives",7538 "rand 0.8.4",7539 "sp-application-crypto",7540 "sp-core",7541 "sp-keystore",7542 "thiserror",7543 "tracing",7544]75457546[[package]]7547name = "polkadot-overseer"7548version = "0.9.12"7549source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7550dependencies = [7551 "futures 0.3.17",7552 "futures-timer 3.0.2",7553 "lru 0.7.0",7554 "parity-util-mem",7555 "parking_lot 0.11.2",7556 "polkadot-node-metrics",7557 "polkadot-node-network-protocol",7558 "polkadot-node-primitives",7559 "polkadot-node-subsystem-types",7560 "polkadot-overseer-gen",7561 "polkadot-primitives",7562 "sc-client-api",7563 "sp-api",7564 "tracing",7565]75667567[[package]]7568name = "polkadot-overseer-gen"7569version = "0.9.12"7570source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7571dependencies = [7572 "async-trait",7573 "futures 0.3.17",7574 "futures-timer 3.0.2",7575 "metered-channel",7576 "pin-project 1.0.8",7577 "polkadot-node-network-protocol",7578 "polkadot-node-primitives",7579 "polkadot-overseer-gen-proc-macro",7580 "thiserror",7581 "tracing",7582]75837584[[package]]7585name = "polkadot-overseer-gen-proc-macro"7586version = "0.9.12"7587source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7588dependencies = [7589 "proc-macro-crate 1.1.0",7590 "proc-macro2",7591 "quote",7592 "syn",7593]75947595[[package]]7596name = "polkadot-parachain"7597version = "0.9.12"7598source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7599dependencies = [7600 "derive_more",7601 "frame-support",7602 "parity-scale-codec",7603 "parity-util-mem",7604 "polkadot-core-primitives",7605 "scale-info",7606 "serde",7607 "sp-core",7608 "sp-runtime",7609 "sp-std",7610]76117612[[package]]7613name = "polkadot-primitives"7614version = "0.9.12"7615source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7616dependencies = [7617 "bitvec 0.20.4",7618 "frame-system",7619 "hex-literal",7620 "parity-scale-codec",7621 "parity-util-mem",7622 "polkadot-core-primitives",7623 "polkadot-parachain",7624 "scale-info",7625 "serde",7626 "sp-api",7627 "sp-application-crypto",7628 "sp-arithmetic",7629 "sp-authority-discovery",7630 "sp-consensus-slots",7631 "sp-core",7632 "sp-inherents",7633 "sp-io",7634 "sp-keystore",7635 "sp-runtime",7636 "sp-staking",7637 "sp-std",7638 "sp-trie",7639 "sp-version",7640]76417642[[package]]7643name = "polkadot-rpc"7644version = "0.9.12"7645source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7646dependencies = [7647 "beefy-gadget",7648 "beefy-gadget-rpc",7649 "jsonrpc-core",7650 "pallet-mmr-rpc",7651 "pallet-transaction-payment-rpc",7652 "polkadot-primitives",7653 "sc-chain-spec",7654 "sc-client-api",7655 "sc-consensus-babe",7656 "sc-consensus-babe-rpc",7657 "sc-consensus-epochs",7658 "sc-finality-grandpa",7659 "sc-finality-grandpa-rpc",7660 "sc-rpc",7661 "sc-sync-state-rpc",7662 "sc-transaction-pool-api",7663 "sp-api",7664 "sp-block-builder",7665 "sp-blockchain",7666 "sp-consensus",7667 "sp-consensus-babe",7668 "sp-keystore",7669 "sp-runtime",7670 "substrate-frame-rpc-system",7671]76727673[[package]]7674name = "polkadot-runtime"7675version = "0.9.12"7676source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7677dependencies = [7678 "beefy-primitives",7679 "bitvec 0.20.4",7680 "frame-benchmarking",7681 "frame-election-provider-support",7682 "frame-executive",7683 "frame-support",7684 "frame-system",7685 "frame-system-benchmarking",7686 "frame-system-rpc-runtime-api",7687 "frame-try-runtime",7688 "hex-literal",7689 "log",7690 "pallet-authority-discovery",7691 "pallet-authorship",7692 "pallet-babe",7693 "pallet-balances",7694 "pallet-bounties",7695 "pallet-collective",7696 "pallet-democracy",7697 "pallet-election-provider-multi-phase",7698 "pallet-elections-phragmen",7699 "pallet-grandpa",7700 "pallet-identity",7701 "pallet-im-online",7702 "pallet-indices",7703 "pallet-membership",7704 "pallet-mmr-primitives",7705 "pallet-multisig",7706 "pallet-nicks",7707 "pallet-offences",7708 "pallet-offences-benchmarking",7709 "pallet-proxy",7710 "pallet-scheduler",7711 "pallet-session",7712 "pallet-session-benchmarking",7713 "pallet-staking",7714 "pallet-staking-reward-curve",7715 "pallet-timestamp",7716 "pallet-tips",7717 "pallet-transaction-payment",7718 "pallet-transaction-payment-rpc-runtime-api",7719 "pallet-treasury",7720 "pallet-utility",7721 "pallet-vesting",7722 "parity-scale-codec",7723 "polkadot-primitives",7724 "polkadot-runtime-common",7725 "polkadot-runtime-parachains",7726 "rustc-hex",7727 "scale-info",7728 "serde",7729 "serde_derive",7730 "smallvec",7731 "sp-api",7732 "sp-authority-discovery",7733 "sp-block-builder",7734 "sp-consensus-babe",7735 "sp-core",7736 "sp-inherents",7737 "sp-io",7738 "sp-npos-elections",7739 "sp-offchain",7740 "sp-runtime",7741 "sp-session",7742 "sp-staking",7743 "sp-std",7744 "sp-transaction-pool",7745 "sp-version",7746 "static_assertions",7747 "substrate-wasm-builder",7748]77497750[[package]]7751name = "polkadot-runtime-common"7752version = "0.9.12"7753source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7754dependencies = [7755 "beefy-primitives",7756 "bitvec 0.20.4",7757 "frame-benchmarking",7758 "frame-election-provider-support",7759 "frame-support",7760 "frame-system",7761 "impl-trait-for-tuples 0.2.1",7762 "libsecp256k1 0.7.0",7763 "log",7764 "pallet-authorship",7765 "pallet-babe",7766 "pallet-bags-list",7767 "pallet-balances",7768 "pallet-beefy-mmr",7769 "pallet-election-provider-multi-phase",7770 "pallet-session",7771 "pallet-staking",7772 "pallet-timestamp",7773 "pallet-transaction-payment",7774 "pallet-treasury",7775 "pallet-vesting",7776 "parity-scale-codec",7777 "polkadot-primitives",7778 "polkadot-runtime-parachains",7779 "rustc-hex",7780 "scale-info",7781 "serde",7782 "serde_derive",7783 "slot-range-helper",7784 "sp-api",7785 "sp-core",7786 "sp-inherents",7787 "sp-io",7788 "sp-npos-elections",7789 "sp-runtime",7790 "sp-session",7791 "sp-staking",7792 "sp-std",7793 "static_assertions",7794 "xcm",7795]77967797[[package]]7798name = "polkadot-runtime-parachains"7799version = "0.9.12"7800source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7801dependencies = [7802 "bitflags",7803 "bitvec 0.20.4",7804 "derive_more",7805 "frame-benchmarking",7806 "frame-support",7807 "frame-system",7808 "log",7809 "pallet-authority-discovery",7810 "pallet-authorship",7811 "pallet-balances",7812 "pallet-session",7813 "pallet-staking",7814 "pallet-timestamp",7815 "pallet-vesting",7816 "parity-scale-codec",7817 "polkadot-primitives",7818 "rand 0.8.4",7819 "rand_chacha 0.3.1",7820 "rustc-hex",7821 "scale-info",7822 "serde",7823 "sp-api",7824 "sp-core",7825 "sp-inherents",7826 "sp-io",7827 "sp-keystore",7828 "sp-runtime",7829 "sp-session",7830 "sp-staking",7831 "sp-std",7832 "xcm",7833 "xcm-executor",7834]78357836[[package]]7837name = "polkadot-service"7838version = "0.9.12"7839source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7840dependencies = [7841 "async-trait",7842 "beefy-gadget",7843 "beefy-primitives",7844 "frame-system-rpc-runtime-api",7845 "futures 0.3.17",7846 "hex-literal",7847 "kusama-runtime",7848 "kvdb",7849 "kvdb-rocksdb",7850 "lru 0.7.0",7851 "pallet-babe",7852 "pallet-im-online",7853 "pallet-mmr-primitives",7854 "pallet-staking",7855 "pallet-transaction-payment-rpc-runtime-api",7856 "polkadot-approval-distribution",7857 "polkadot-availability-bitfield-distribution",7858 "polkadot-availability-distribution",7859 "polkadot-availability-recovery",7860 "polkadot-client",7861 "polkadot-collator-protocol",7862 "polkadot-dispute-distribution",7863 "polkadot-gossip-support",7864 "polkadot-network-bridge",7865 "polkadot-node-collation-generation",7866 "polkadot-node-core-approval-voting",7867 "polkadot-node-core-av-store",7868 "polkadot-node-core-backing",7869 "polkadot-node-core-bitfield-signing",7870 "polkadot-node-core-candidate-validation",7871 "polkadot-node-core-chain-api",7872 "polkadot-node-core-chain-selection",7873 "polkadot-node-core-dispute-coordinator",7874 "polkadot-node-core-dispute-participation",7875 "polkadot-node-core-parachains-inherent",7876 "polkadot-node-core-provisioner",7877 "polkadot-node-core-runtime-api",7878 "polkadot-node-network-protocol",7879 "polkadot-node-primitives",7880 "polkadot-node-subsystem",7881 "polkadot-node-subsystem-util",7882 "polkadot-overseer",7883 "polkadot-parachain",7884 "polkadot-primitives",7885 "polkadot-rpc",7886 "polkadot-runtime",7887 "polkadot-runtime-parachains",7888 "polkadot-statement-distribution",7889 "rococo-runtime",7890 "sc-authority-discovery",7891 "sc-basic-authorship",7892 "sc-block-builder",7893 "sc-chain-spec",7894 "sc-client-api",7895 "sc-client-db",7896 "sc-consensus",7897 "sc-consensus-babe",7898 "sc-consensus-slots",7899 "sc-consensus-uncles",7900 "sc-executor",7901 "sc-finality-grandpa",7902 "sc-keystore",7903 "sc-network",7904 "sc-service",7905 "sc-sync-state-rpc",7906 "sc-telemetry",7907 "sc-transaction-pool",7908 "serde",7909 "sp-api",7910 "sp-authority-discovery",7911 "sp-block-builder",7912 "sp-blockchain",7913 "sp-consensus",7914 "sp-consensus-babe",7915 "sp-core",7916 "sp-finality-grandpa",7917 "sp-inherents",7918 "sp-io",7919 "sp-keystore",7920 "sp-offchain",7921 "sp-runtime",7922 "sp-session",7923 "sp-state-machine",7924 "sp-storage",7925 "sp-timestamp",7926 "sp-transaction-pool",7927 "sp-trie",7928 "substrate-prometheus-endpoint",7929 "thiserror",7930 "tracing",7931 "westend-runtime",7932]79337934[[package]]7935name = "polkadot-statement-distribution"7936version = "0.9.12"7937source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7938dependencies = [7939 "arrayvec 0.5.2",7940 "derive_more",7941 "futures 0.3.17",7942 "indexmap",7943 "parity-scale-codec",7944 "polkadot-node-network-protocol",7945 "polkadot-node-primitives",7946 "polkadot-node-subsystem",7947 "polkadot-node-subsystem-util",7948 "polkadot-primitives",7949 "sp-keystore",7950 "sp-staking",7951 "thiserror",7952 "tracing",7953]79547955[[package]]7956name = "polkadot-statement-table"7957version = "0.9.12"7958source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7959dependencies = [7960 "parity-scale-codec",7961 "polkadot-primitives",7962 "sp-core",7963]79647965[[package]]7966name = "polkadot-test-runtime"7967version = "0.9.12"7968source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7969dependencies = [7970 "beefy-primitives",7971 "bitvec 0.20.4",7972 "frame-election-provider-support",7973 "frame-executive",7974 "frame-support",7975 "frame-system",7976 "frame-system-rpc-runtime-api",7977 "log",7978 "pallet-authority-discovery",7979 "pallet-authorship",7980 "pallet-babe",7981 "pallet-balances",7982 "pallet-grandpa",7983 "pallet-indices",7984 "pallet-mmr-primitives",7985 "pallet-nicks",7986 "pallet-offences",7987 "pallet-session",7988 "pallet-staking",7989 "pallet-staking-reward-curve",7990 "pallet-sudo",7991 "pallet-timestamp",7992 "pallet-transaction-payment",7993 "pallet-transaction-payment-rpc-runtime-api",7994 "pallet-vesting",7995 "pallet-xcm",7996 "parity-scale-codec",7997 "polkadot-parachain",7998 "polkadot-primitives",7999 "polkadot-runtime-common",8000 "polkadot-runtime-parachains",8001 "rustc-hex",8002 "scale-info",8003 "serde",8004 "serde_derive",8005 "smallvec",8006 "sp-api",8007 "sp-authority-discovery",8008 "sp-block-builder",8009 "sp-consensus-babe",8010 "sp-core",8011 "sp-inherents",8012 "sp-io",8013 "sp-offchain",8014 "sp-runtime",8015 "sp-session",8016 "sp-staking",8017 "sp-std",8018 "sp-transaction-pool",8019 "sp-version",8020 "substrate-wasm-builder",8021 "xcm",8022 "xcm-builder",8023 "xcm-executor",8024]80258026[[package]]8027name = "polkadot-test-service"8028version = "0.9.12"8029source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"8030dependencies = [8031 "frame-benchmarking",8032 "frame-system",8033 "futures 0.1.31",8034 "futures 0.3.17",8035 "hex",8036 "pallet-balances",8037 "pallet-staking",8038 "pallet-transaction-payment",8039 "polkadot-node-primitives",8040 "polkadot-node-subsystem",8041 "polkadot-overseer",8042 "polkadot-parachain",8043 "polkadot-primitives",8044 "polkadot-rpc",8045 "polkadot-runtime-common",8046 "polkadot-runtime-parachains",8047 "polkadot-service",8048 "polkadot-test-runtime",8049 "rand 0.8.4",8050 "sc-authority-discovery",8051 "sc-chain-spec",8052 "sc-cli",8053 "sc-client-api",8054 "sc-consensus",8055 "sc-consensus-babe",8056 "sc-executor",8057 "sc-finality-grandpa",8058 "sc-network",8059 "sc-service",8060 "sc-tracing",8061 "sc-transaction-pool",8062 "sp-arithmetic",8063 "sp-authority-discovery",8064 "sp-blockchain",8065 "sp-consensus",8066 "sp-consensus-babe",8067 "sp-core",8068 "sp-finality-grandpa",8069 "sp-inherents",8070 "sp-keyring",8071 "sp-runtime",8072 "sp-state-machine",8073 "substrate-test-client",8074 "tempfile",8075 "tokio 1.13.0",8076 "tracing",8077]80788079[[package]]8080name = "polling"8081version = "2.1.0"8082source = "registry+https://github.com/rust-lang/crates.io-index"8083checksum = "92341d779fa34ea8437ef4d82d440d5e1ce3f3ff7f824aa64424cd481f9a1f25"8084dependencies = [8085 "cfg-if 1.0.0",8086 "libc",8087 "log",8088 "wepoll-ffi",8089 "winapi 0.3.9",8090]80918092[[package]]8093name = "poly1305"8094version = "0.7.2"8095source = "registry+https://github.com/rust-lang/crates.io-index"8096checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"8097dependencies = [8098 "cpufeatures 0.2.1",8099 "opaque-debug 0.3.0",8100 "universal-hash",8101]81028103[[package]]8104name = "polyval"8105version = "0.5.3"8106source = "registry+https://github.com/rust-lang/crates.io-index"8107checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"8108dependencies = [8109 "cfg-if 1.0.0",8110 "cpufeatures 0.2.1",8111 "opaque-debug 0.3.0",8112 "universal-hash",8113]81148115[[package]]8116name = "ppv-lite86"8117version = "0.2.15"8118source = "registry+https://github.com/rust-lang/crates.io-index"8119checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"81208121[[package]]8122name = "primitive-types"8123version = "0.9.1"8124source = "registry+https://github.com/rust-lang/crates.io-index"8125checksum = "06345ee39fbccfb06ab45f3a1a5798d9dafa04cb8921a76d227040003a234b0e"8126dependencies = [8127 "fixed-hash",8128 "impl-codec",8129 "impl-rlp",8130 "uint",8131]81328133[[package]]8134name = "primitive-types"8135version = "0.10.1"8136source = "registry+https://github.com/rust-lang/crates.io-index"8137checksum = "05e4722c697a58a99d5d06a08c30821d7c082a4632198de1eaa5a6c22ef42373"8138dependencies = [8139 "fixed-hash",8140 "impl-codec",8141 "impl-rlp",8142 "impl-serde",8143 "scale-info",8144 "uint",8145]81468147[[package]]8148name = "proc-macro-crate"8149version = "0.1.5"8150source = "registry+https://github.com/rust-lang/crates.io-index"8151checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"8152dependencies = [8153 "toml",8154]81558156[[package]]8157name = "proc-macro-crate"8158version = "1.1.0"8159source = "registry+https://github.com/rust-lang/crates.io-index"8160checksum = "1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83"8161dependencies = [8162 "thiserror",8163 "toml",8164]81658166[[package]]8167name = "proc-macro-error"8168version = "0.4.12"8169source = "registry+https://github.com/rust-lang/crates.io-index"8170checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7"8171dependencies = [8172 "proc-macro-error-attr 0.4.12",8173 "proc-macro2",8174 "quote",8175 "syn",8176 "version_check",8177]81788179[[package]]8180name = "proc-macro-error"8181version = "1.0.4"8182source = "registry+https://github.com/rust-lang/crates.io-index"8183checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"8184dependencies = [8185 "proc-macro-error-attr 1.0.4",8186 "proc-macro2",8187 "quote",8188 "syn",8189 "version_check",8190]81918192[[package]]8193name = "proc-macro-error-attr"8194version = "0.4.12"8195source = "registry+https://github.com/rust-lang/crates.io-index"8196checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de"8197dependencies = [8198 "proc-macro2",8199 "quote",8200 "syn",8201 "syn-mid",8202 "version_check",8203]82048205[[package]]8206name = "proc-macro-error-attr"8207version = "1.0.4"8208source = "registry+https://github.com/rust-lang/crates.io-index"8209checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"8210dependencies = [8211 "proc-macro2",8212 "quote",8213 "version_check",8214]82158216[[package]]8217name = "proc-macro-hack"8218version = "0.5.19"8219source = "registry+https://github.com/rust-lang/crates.io-index"8220checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"82218222[[package]]8223name = "proc-macro-nested"8224version = "0.1.7"8225source = "registry+https://github.com/rust-lang/crates.io-index"8226checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"82278228[[package]]8229name = "proc-macro2"8230version = "1.0.32"8231source = "registry+https://github.com/rust-lang/crates.io-index"8232checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43"8233dependencies = [8234 "unicode-xid",8235]82368237[[package]]8238name = "prometheus"8239version = "0.12.0"8240source = "registry+https://github.com/rust-lang/crates.io-index"8241checksum = "5986aa8d62380092d2f50f8b1cdba9cb9b6731ffd4b25b51fd126b6c3e05b99c"8242dependencies = [8243 "cfg-if 1.0.0",8244 "fnv",8245 "lazy_static",8246 "memchr",8247 "parking_lot 0.11.2",8248 "thiserror",8249]82508251[[package]]8252name = "prost"8253version = "0.8.0"8254source = "registry+https://github.com/rust-lang/crates.io-index"8255checksum = "de5e2533f59d08fcf364fd374ebda0692a70bd6d7e66ef97f306f45c6c5d8020"8256dependencies = [8257 "bytes 1.1.0",8258 "prost-derive",8259]82608261[[package]]8262name = "prost-build"8263version = "0.8.0"8264source = "registry+https://github.com/rust-lang/crates.io-index"8265checksum = "355f634b43cdd80724ee7848f95770e7e70eefa6dcf14fea676216573b8fd603"8266dependencies = [8267 "bytes 1.1.0",8268 "heck",8269 "itertools",8270 "log",8271 "multimap",8272 "petgraph",8273 "prost",8274 "prost-types",8275 "tempfile",8276 "which",8277]82788279[[package]]8280name = "prost-derive"8281version = "0.8.0"8282source = "registry+https://github.com/rust-lang/crates.io-index"8283checksum = "600d2f334aa05acb02a755e217ef1ab6dea4d51b58b7846588b747edec04efba"8284dependencies = [8285 "anyhow",8286 "itertools",8287 "proc-macro2",8288 "quote",8289 "syn",8290]82918292[[package]]8293name = "prost-types"8294version = "0.8.0"8295source = "registry+https://github.com/rust-lang/crates.io-index"8296checksum = "603bbd6394701d13f3f25aada59c7de9d35a6a5887cfc156181234a44002771b"8297dependencies = [8298 "bytes 1.1.0",8299 "prost",8300]83018302[[package]]8303name = "psm"8304version = "0.1.16"8305source = "registry+https://github.com/rust-lang/crates.io-index"8306checksum = "cd136ff4382c4753fc061cb9e4712ab2af263376b95bbd5bd8cd50c020b78e69"8307dependencies = [8308 "cc",8309]83108311[[package]]8312name = "pwasm-utils"8313version = "0.18.2"8314source = "registry+https://github.com/rust-lang/crates.io-index"8315checksum = "880b3384fb00b8f6ecccd5d358b93bd2201900ae3daad213791d1864f6441f5c"8316dependencies = [8317 "byteorder",8318 "log",8319 "parity-wasm 0.42.2",8320]83218322[[package]]8323name = "quick-error"8324version = "1.2.3"8325source = "registry+https://github.com/rust-lang/crates.io-index"8326checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"83278328[[package]]8329name = "quick-error"8330version = "2.0.1"8331source = "registry+https://github.com/rust-lang/crates.io-index"8332checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"83338334[[package]]8335name = "quicksink"8336version = "0.1.2"8337source = "registry+https://github.com/rust-lang/crates.io-index"8338checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858"8339dependencies = [8340 "futures-core",8341 "futures-sink",8342 "pin-project-lite 0.1.12",8343]83448345[[package]]8346name = "quote"8347version = "1.0.10"8348source = "registry+https://github.com/rust-lang/crates.io-index"8349checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"8350dependencies = [8351 "proc-macro2",8352]83538354[[package]]8355name = "radium"8356version = "0.5.3"8357source = "registry+https://github.com/rust-lang/crates.io-index"8358checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"83598360[[package]]8361name = "radium"8362version = "0.6.2"8363source = "registry+https://github.com/rust-lang/crates.io-index"8364checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb"83658366[[package]]8367name = "rand"8368version = "0.7.3"8369source = "registry+https://github.com/rust-lang/crates.io-index"8370checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"8371dependencies = [8372 "getrandom 0.1.16",8373 "libc",8374 "rand_chacha 0.2.2",8375 "rand_core 0.5.1",8376 "rand_hc 0.2.0",8377 "rand_pcg",8378]83798380[[package]]8381name = "rand"8382version = "0.8.4"8383source = "registry+https://github.com/rust-lang/crates.io-index"8384checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"8385dependencies = [8386 "libc",8387 "rand_chacha 0.3.1",8388 "rand_core 0.6.3",8389 "rand_hc 0.3.1",8390]83918392[[package]]8393name = "rand_chacha"8394version = "0.2.2"8395source = "registry+https://github.com/rust-lang/crates.io-index"8396checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"8397dependencies = [8398 "ppv-lite86",8399 "rand_core 0.5.1",8400]84018402[[package]]8403name = "rand_chacha"8404version = "0.3.1"8405source = "registry+https://github.com/rust-lang/crates.io-index"8406checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"8407dependencies = [8408 "ppv-lite86",8409 "rand_core 0.6.3",8410]84118412[[package]]8413name = "rand_core"8414version = "0.5.1"8415source = "registry+https://github.com/rust-lang/crates.io-index"8416checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"8417dependencies = [8418 "getrandom 0.1.16",8419]84208421[[package]]8422name = "rand_core"8423version = "0.6.3"8424source = "registry+https://github.com/rust-lang/crates.io-index"8425checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"8426dependencies = [8427 "getrandom 0.2.3",8428]84298430[[package]]8431name = "rand_distr"8432version = "0.4.2"8433source = "registry+https://github.com/rust-lang/crates.io-index"8434checksum = "964d548f8e7d12e102ef183a0de7e98180c9f8729f555897a857b96e48122d2f"8435dependencies = [8436 "num-traits",8437 "rand 0.8.4",8438]84398440[[package]]8441name = "rand_hc"8442version = "0.2.0"8443source = "registry+https://github.com/rust-lang/crates.io-index"8444checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"8445dependencies = [8446 "rand_core 0.5.1",8447]84488449[[package]]8450name = "rand_hc"8451version = "0.3.1"8452source = "registry+https://github.com/rust-lang/crates.io-index"8453checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"8454dependencies = [8455 "rand_core 0.6.3",8456]84578458[[package]]8459name = "rand_pcg"8460version = "0.2.1"8461source = "registry+https://github.com/rust-lang/crates.io-index"8462checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"8463dependencies = [8464 "rand_core 0.5.1",8465]84668467[[package]]8468name = "rawpointer"8469version = "0.2.1"8470source = "registry+https://github.com/rust-lang/crates.io-index"8471checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"84728473[[package]]8474name = "rayon"8475version = "1.5.1"8476source = "registry+https://github.com/rust-lang/crates.io-index"8477checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"8478dependencies = [8479 "autocfg",8480 "crossbeam-deque",8481 "either",8482 "rayon-core",8483]84848485[[package]]8486name = "rayon-core"8487version = "1.9.1"8488source = "registry+https://github.com/rust-lang/crates.io-index"8489checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"8490dependencies = [8491 "crossbeam-channel",8492 "crossbeam-deque",8493 "crossbeam-utils",8494 "lazy_static",8495 "num_cpus",8496]84978498[[package]]8499name = "redox_syscall"8500version = "0.1.57"8501source = "registry+https://github.com/rust-lang/crates.io-index"8502checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"85038504[[package]]8505name = "redox_syscall"8506version = "0.2.10"8507source = "registry+https://github.com/rust-lang/crates.io-index"8508checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"8509dependencies = [8510 "bitflags",8511]85128513[[package]]8514name = "redox_users"8515version = "0.4.0"8516source = "registry+https://github.com/rust-lang/crates.io-index"8517checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"8518dependencies = [8519 "getrandom 0.2.3",8520 "redox_syscall 0.2.10",8521]85228523[[package]]8524name = "reed-solomon-novelpoly"8525version = "1.0.0"8526source = "registry+https://github.com/rust-lang/crates.io-index"8527checksum = "3bd8f48b2066e9f69ab192797d66da804d1935bf22763204ed3675740cb0f221"8528dependencies = [8529 "derive_more",8530 "fs-err",8531 "itertools",8532 "static_init",8533 "thiserror",8534]85358536[[package]]8537name = "ref-cast"8538version = "1.0.6"8539source = "registry+https://github.com/rust-lang/crates.io-index"8540checksum = "300f2a835d808734ee295d45007adacb9ebb29dd3ae2424acfa17930cae541da"8541dependencies = [8542 "ref-cast-impl",8543]85448545[[package]]8546name = "ref-cast-impl"8547version = "1.0.6"8548source = "registry+https://github.com/rust-lang/crates.io-index"8549checksum = "4c38e3aecd2b21cb3959637b883bb3714bc7e43f0268b9a29d3743ee3e55cdd2"8550dependencies = [8551 "proc-macro2",8552 "quote",8553 "syn",8554]85558556[[package]]8557name = "regalloc"8558version = "0.0.31"8559source = "registry+https://github.com/rust-lang/crates.io-index"8560checksum = "571f7f397d61c4755285cd37853fe8e03271c243424a907415909379659381c5"8561dependencies = [8562 "log",8563 "rustc-hash",8564 "smallvec",8565]85668567[[package]]8568name = "regex"8569version = "1.5.4"8570source = "registry+https://github.com/rust-lang/crates.io-index"8571checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"8572dependencies = [8573 "aho-corasick",8574 "memchr",8575 "regex-syntax",8576]85778578[[package]]8579name = "regex-automata"8580version = "0.1.10"8581source = "registry+https://github.com/rust-lang/crates.io-index"8582checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"8583dependencies = [8584 "regex-syntax",8585]85868587[[package]]8588name = "regex-syntax"8589version = "0.6.25"8590source = "registry+https://github.com/rust-lang/crates.io-index"8591checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"85928593[[package]]8594name = "region"8595version = "2.2.0"8596source = "registry+https://github.com/rust-lang/crates.io-index"8597checksum = "877e54ea2adcd70d80e9179344c97f93ef0dffd6b03e1f4529e6e83ab2fa9ae0"8598dependencies = [8599 "bitflags",8600 "libc",8601 "mach",8602 "winapi 0.3.9",8603]86048605[[package]]8606name = "remote-externalities"8607version = "0.10.0-dev"8608source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8609dependencies = [8610 "env_logger 0.9.0",8611 "jsonrpsee-proc-macros",8612 "jsonrpsee-ws-client",8613 "log",8614 "parity-scale-codec",8615 "serde",8616 "serde_json",8617 "sp-core",8618 "sp-io",8619 "sp-runtime",8620 "sp-version",8621]86228623[[package]]8624name = "remove_dir_all"8625version = "0.5.3"8626source = "registry+https://github.com/rust-lang/crates.io-index"8627checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"8628dependencies = [8629 "winapi 0.3.9",8630]86318632[[package]]8633name = "resolv-conf"8634version = "0.7.0"8635source = "registry+https://github.com/rust-lang/crates.io-index"8636checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"8637dependencies = [8638 "hostname",8639 "quick-error 1.2.3",8640]86418642[[package]]8643name = "retain_mut"8644version = "0.1.4"8645source = "registry+https://github.com/rust-lang/crates.io-index"8646checksum = "448296241d034b96c11173591deaa1302f2c17b56092106c1f92c1bc0183a8c9"86478648[[package]]8649name = "ring"8650version = "0.16.20"8651source = "registry+https://github.com/rust-lang/crates.io-index"8652checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"8653dependencies = [8654 "cc",8655 "libc",8656 "once_cell",8657 "spin",8658 "untrusted",8659 "web-sys",8660 "winapi 0.3.9",8661]86628663[[package]]8664name = "rlp"8665version = "0.5.1"8666source = "registry+https://github.com/rust-lang/crates.io-index"8667checksum = "999508abb0ae792aabed2460c45b89106d97fe4adac593bdaef433c2605847b5"8668dependencies = [8669 "bytes 1.1.0",8670 "rustc-hex",8671]86728673[[package]]8674name = "rlp-derive"8675version = "0.1.0"8676source = "registry+https://github.com/rust-lang/crates.io-index"8677checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a"8678dependencies = [8679 "proc-macro2",8680 "quote",8681 "syn",8682]86838684[[package]]8685name = "rocksdb"8686version = "0.17.0"8687source = "registry+https://github.com/rust-lang/crates.io-index"8688checksum = "7a62eca5cacf2c8261128631bed9f045598d40bfbe4b29f5163f0f802f8f44a7"8689dependencies = [8690 "libc",8691 "librocksdb-sys",8692]86938694[[package]]8695name = "rococo-runtime"8696version = "0.9.12"8697source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"8698dependencies = [8699 "beefy-primitives",8700 "bp-messages",8701 "bp-rococo",8702 "bp-runtime",8703 "bp-wococo",8704 "bridge-runtime-common",8705 "frame-benchmarking",8706 "frame-executive",8707 "frame-support",8708 "frame-system",8709 "frame-system-rpc-runtime-api",8710 "hex-literal",8711 "log",8712 "pallet-authority-discovery",8713 "pallet-authorship",8714 "pallet-babe",8715 "pallet-balances",8716 "pallet-beefy",8717 "pallet-beefy-mmr",8718 "pallet-bridge-dispatch",8719 "pallet-bridge-grandpa",8720 "pallet-bridge-messages",8721 "pallet-collective",8722 "pallet-grandpa",8723 "pallet-im-online",8724 "pallet-indices",8725 "pallet-membership",8726 "pallet-mmr",8727 "pallet-mmr-primitives",8728 "pallet-multisig",8729 "pallet-offences",8730 "pallet-proxy",8731 "pallet-session",8732 "pallet-staking",8733 "pallet-sudo",8734 "pallet-timestamp",8735 "pallet-transaction-payment",8736 "pallet-transaction-payment-rpc-runtime-api",8737 "pallet-utility",8738 "pallet-xcm",8739 "parity-scale-codec",8740 "polkadot-parachain",8741 "polkadot-primitives",8742 "polkadot-runtime-common",8743 "polkadot-runtime-parachains",8744 "scale-info",8745 "serde",8746 "serde_derive",8747 "smallvec",8748 "sp-api",8749 "sp-authority-discovery",8750 "sp-block-builder",8751 "sp-consensus-babe",8752 "sp-core",8753 "sp-inherents",8754 "sp-io",8755 "sp-offchain",8756 "sp-runtime",8757 "sp-session",8758 "sp-staking",8759 "sp-std",8760 "sp-transaction-pool",8761 "sp-version",8762 "substrate-wasm-builder",8763 "xcm",8764 "xcm-builder",8765 "xcm-executor",8766]87678768[[package]]8769name = "rpassword"8770version = "5.0.1"8771source = "registry+https://github.com/rust-lang/crates.io-index"8772checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb"8773dependencies = [8774 "libc",8775 "winapi 0.3.9",8776]87778778[[package]]8779name = "rustc-demangle"8780version = "0.1.21"8781source = "registry+https://github.com/rust-lang/crates.io-index"8782checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"87838784[[package]]8785name = "rustc-hash"8786version = "1.1.0"8787source = "registry+https://github.com/rust-lang/crates.io-index"8788checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"87898790[[package]]8791name = "rustc-hex"8792version = "2.1.0"8793source = "registry+https://github.com/rust-lang/crates.io-index"8794checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"87958796[[package]]8797name = "rustc_version"8798version = "0.2.3"8799source = "registry+https://github.com/rust-lang/crates.io-index"8800checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"8801dependencies = [8802 "semver 0.9.0",8803]88048805[[package]]8806name = "rustc_version"8807version = "0.3.3"8808source = "registry+https://github.com/rust-lang/crates.io-index"8809checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"8810dependencies = [8811 "semver 0.11.0",8812]88138814[[package]]8815name = "rustls"8816version = "0.19.1"8817source = "registry+https://github.com/rust-lang/crates.io-index"8818checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"8819dependencies = [8820 "base64 0.13.0",8821 "log",8822 "ring",8823 "sct",8824 "webpki",8825]88268827[[package]]8828name = "rustls-native-certs"8829version = "0.5.0"8830source = "registry+https://github.com/rust-lang/crates.io-index"8831checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092"8832dependencies = [8833 "openssl-probe",8834 "rustls",8835 "schannel",8836 "security-framework",8837]88388839[[package]]8840name = "rw-stream-sink"8841version = "0.2.1"8842source = "registry+https://github.com/rust-lang/crates.io-index"8843checksum = "4da5fcb054c46f5a5dff833b129285a93d3f0179531735e6c866e8cc307d2020"8844dependencies = [8845 "futures 0.3.17",8846 "pin-project 0.4.28",8847 "static_assertions",8848]88498850[[package]]8851name = "ryu"8852version = "1.0.5"8853source = "registry+https://github.com/rust-lang/crates.io-index"8854checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"88558856[[package]]8857name = "safe-mix"8858version = "1.0.1"8859source = "registry+https://github.com/rust-lang/crates.io-index"8860checksum = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c"8861dependencies = [8862 "rustc_version 0.2.3",8863]88648865[[package]]8866name = "salsa20"8867version = "0.8.1"8868source = "registry+https://github.com/rust-lang/crates.io-index"8869checksum = "ecbd2eb639fd7cab5804a0837fe373cc2172d15437e804c054a9fb885cb923b0"8870dependencies = [8871 "cipher",8872]88738874[[package]]8875name = "same-file"8876version = "1.0.6"8877source = "registry+https://github.com/rust-lang/crates.io-index"8878checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"8879dependencies = [8880 "winapi-util",8881]88828883[[package]]8884name = "sc-allocator"8885version = "4.0.0-dev"8886source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8887dependencies = [8888 "log",8889 "sp-core",8890 "sp-wasm-interface",8891 "thiserror",8892]88938894[[package]]8895name = "sc-authority-discovery"8896version = "0.10.0-dev"8897source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8898dependencies = [8899 "async-trait",8900 "derive_more",8901 "futures 0.3.17",8902 "futures-timer 3.0.2",8903 "ip_network",8904 "libp2p",8905 "log",8906 "parity-scale-codec",8907 "prost",8908 "prost-build",8909 "rand 0.7.3",8910 "sc-client-api",8911 "sc-network",8912 "sp-api",8913 "sp-authority-discovery",8914 "sp-blockchain",8915 "sp-core",8916 "sp-keystore",8917 "sp-runtime",8918 "substrate-prometheus-endpoint",8919]89208921[[package]]8922name = "sc-basic-authorship"8923version = "0.10.0-dev"8924source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8925dependencies = [8926 "futures 0.3.17",8927 "futures-timer 3.0.2",8928 "log",8929 "parity-scale-codec",8930 "sc-block-builder",8931 "sc-client-api",8932 "sc-proposer-metrics",8933 "sc-telemetry",8934 "sc-transaction-pool-api",8935 "sp-api",8936 "sp-blockchain",8937 "sp-consensus",8938 "sp-core",8939 "sp-inherents",8940 "sp-runtime",8941 "substrate-prometheus-endpoint",8942]89438944[[package]]8945name = "sc-block-builder"8946version = "0.10.0-dev"8947source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8948dependencies = [8949 "parity-scale-codec",8950 "sc-client-api",8951 "sp-api",8952 "sp-block-builder",8953 "sp-blockchain",8954 "sp-core",8955 "sp-inherents",8956 "sp-runtime",8957 "sp-state-machine",8958]89598960[[package]]8961name = "sc-chain-spec"8962version = "4.0.0-dev"8963source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8964dependencies = [8965 "impl-trait-for-tuples 0.2.1",8966 "parity-scale-codec",8967 "sc-chain-spec-derive",8968 "sc-network",8969 "sc-telemetry",8970 "serde",8971 "serde_json",8972 "sp-core",8973 "sp-runtime",8974]89758976[[package]]8977name = "sc-chain-spec-derive"8978version = "4.0.0-dev"8979source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8980dependencies = [8981 "proc-macro-crate 1.1.0",8982 "proc-macro2",8983 "quote",8984 "syn",8985]89868987[[package]]8988name = "sc-cli"8989version = "0.10.0-dev"8990source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8991dependencies = [8992 "chrono",8993 "fdlimit",8994 "futures 0.3.17",8995 "hex",8996 "libp2p",8997 "log",8998 "names",8999 "parity-scale-codec",9000 "rand 0.7.3",9001 "regex",9002 "rpassword",9003 "sc-client-api",9004 "sc-keystore",9005 "sc-network",9006 "sc-service",9007 "sc-telemetry",9008 "sc-tracing",9009 "sc-utils",9010 "serde",9011 "serde_json",9012 "sp-blockchain",9013 "sp-core",9014 "sp-keyring",9015 "sp-keystore",9016 "sp-panic-handler",9017 "sp-runtime",9018 "sp-version",9019 "structopt",9020 "thiserror",9021 "tiny-bip39",9022 "tokio 1.13.0",9023]90249025[[package]]9026name = "sc-client-api"9027version = "4.0.0-dev"9028source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9029dependencies = [9030 "fnv",9031 "futures 0.3.17",9032 "hash-db",9033 "log",9034 "parity-scale-codec",9035 "parking_lot 0.11.2",9036 "sc-executor",9037 "sc-transaction-pool-api",9038 "sc-utils",9039 "sp-api",9040 "sp-blockchain",9041 "sp-consensus",9042 "sp-core",9043 "sp-database",9044 "sp-externalities",9045 "sp-keystore",9046 "sp-runtime",9047 "sp-state-machine",9048 "sp-storage",9049 "sp-trie",9050 "substrate-prometheus-endpoint",9051]90529053[[package]]9054name = "sc-client-db"9055version = "0.10.0-dev"9056source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9057dependencies = [9058 "hash-db",9059 "kvdb",9060 "kvdb-memorydb",9061 "kvdb-rocksdb",9062 "linked-hash-map",9063 "log",9064 "parity-db",9065 "parity-scale-codec",9066 "parking_lot 0.11.2",9067 "sc-client-api",9068 "sc-state-db",9069 "sp-arithmetic",9070 "sp-blockchain",9071 "sp-core",9072 "sp-database",9073 "sp-runtime",9074 "sp-state-machine",9075 "sp-trie",9076]90779078[[package]]9079name = "sc-consensus"9080version = "0.10.0-dev"9081source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9082dependencies = [9083 "async-trait",9084 "futures 0.3.17",9085 "futures-timer 3.0.2",9086 "libp2p",9087 "log",9088 "parking_lot 0.11.2",9089 "sc-client-api",9090 "sc-utils",9091 "serde",9092 "sp-api",9093 "sp-blockchain",9094 "sp-consensus",9095 "sp-core",9096 "sp-runtime",9097 "sp-state-machine",9098 "substrate-prometheus-endpoint",9099 "thiserror",9100]91019102[[package]]9103name = "sc-consensus-aura"9104version = "0.10.0-dev"9105source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9106dependencies = [9107 "async-trait",9108 "derive_more",9109 "futures 0.3.17",9110 "log",9111 "parity-scale-codec",9112 "sc-block-builder",9113 "sc-client-api",9114 "sc-consensus",9115 "sc-consensus-slots",9116 "sc-telemetry",9117 "sp-api",9118 "sp-application-crypto",9119 "sp-block-builder",9120 "sp-blockchain",9121 "sp-consensus",9122 "sp-consensus-aura",9123 "sp-consensus-slots",9124 "sp-core",9125 "sp-inherents",9126 "sp-keystore",9127 "sp-runtime",9128 "substrate-prometheus-endpoint",9129]91309131[[package]]9132name = "sc-consensus-babe"9133version = "0.10.0-dev"9134source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9135dependencies = [9136 "async-trait",9137 "derive_more",9138 "fork-tree",9139 "futures 0.3.17",9140 "log",9141 "merlin",9142 "num-bigint",9143 "num-rational 0.2.4",9144 "num-traits",9145 "parity-scale-codec",9146 "parking_lot 0.11.2",9147 "rand 0.7.3",9148 "retain_mut",9149 "sc-client-api",9150 "sc-consensus",9151 "sc-consensus-epochs",9152 "sc-consensus-slots",9153 "sc-keystore",9154 "sc-telemetry",9155 "schnorrkel",9156 "serde",9157 "sp-api",9158 "sp-application-crypto",9159 "sp-block-builder",9160 "sp-blockchain",9161 "sp-consensus",9162 "sp-consensus-babe",9163 "sp-consensus-slots",9164 "sp-consensus-vrf",9165 "sp-core",9166 "sp-inherents",9167 "sp-io",9168 "sp-keystore",9169 "sp-runtime",9170 "sp-version",9171 "substrate-prometheus-endpoint",9172]91739174[[package]]9175name = "sc-consensus-babe-rpc"9176version = "0.10.0-dev"9177source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9178dependencies = [9179 "derive_more",9180 "futures 0.3.17",9181 "jsonrpc-core",9182 "jsonrpc-core-client",9183 "jsonrpc-derive",9184 "sc-consensus-babe",9185 "sc-consensus-epochs",9186 "sc-rpc-api",9187 "serde",9188 "sp-api",9189 "sp-application-crypto",9190 "sp-blockchain",9191 "sp-consensus",9192 "sp-consensus-babe",9193 "sp-core",9194 "sp-keystore",9195 "sp-runtime",9196]91979198[[package]]9199name = "sc-consensus-epochs"9200version = "0.10.0-dev"9201source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9202dependencies = [9203 "fork-tree",9204 "parity-scale-codec",9205 "sc-client-api",9206 "sc-consensus",9207 "sp-blockchain",9208 "sp-runtime",9209]92109211[[package]]9212name = "sc-consensus-slots"9213version = "0.10.0-dev"9214source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9215dependencies = [9216 "async-trait",9217 "futures 0.3.17",9218 "futures-timer 3.0.2",9219 "log",9220 "parity-scale-codec",9221 "sc-client-api",9222 "sc-consensus",9223 "sc-telemetry",9224 "sp-api",9225 "sp-arithmetic",9226 "sp-blockchain",9227 "sp-consensus",9228 "sp-consensus-slots",9229 "sp-core",9230 "sp-inherents",9231 "sp-runtime",9232 "sp-state-machine",9233 "sp-timestamp",9234 "thiserror",9235]92369237[[package]]9238name = "sc-consensus-uncles"9239version = "0.10.0-dev"9240source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9241dependencies = [9242 "sc-client-api",9243 "sp-authorship",9244 "sp-runtime",9245 "thiserror",9246]92479248[[package]]9249name = "sc-executor"9250version = "0.10.0-dev"9251source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9252dependencies = [9253 "lazy_static",9254 "libsecp256k1 0.6.0",9255 "log",9256 "parity-scale-codec",9257 "parking_lot 0.11.2",9258 "sc-executor-common",9259 "sc-executor-wasmi",9260 "sc-executor-wasmtime",9261 "sp-api",9262 "sp-core",9263 "sp-externalities",9264 "sp-io",9265 "sp-panic-handler",9266 "sp-runtime-interface",9267 "sp-tasks",9268 "sp-trie",9269 "sp-version",9270 "sp-wasm-interface",9271 "wasmi",9272]92739274[[package]]9275name = "sc-executor-common"9276version = "0.10.0-dev"9277source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9278dependencies = [9279 "derive_more",9280 "environmental",9281 "parity-scale-codec",9282 "pwasm-utils",9283 "sc-allocator",9284 "sp-core",9285 "sp-maybe-compressed-blob",9286 "sp-serializer",9287 "sp-wasm-interface",9288 "thiserror",9289 "wasmi",9290]92919292[[package]]9293name = "sc-executor-wasmi"9294version = "0.10.0-dev"9295source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9296dependencies = [9297 "log",9298 "parity-scale-codec",9299 "sc-allocator",9300 "sc-executor-common",9301 "scoped-tls",9302 "sp-core",9303 "sp-runtime-interface",9304 "sp-wasm-interface",9305 "wasmi",9306]93079308[[package]]9309name = "sc-executor-wasmtime"9310version = "0.10.0-dev"9311source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9312dependencies = [9313 "cfg-if 1.0.0",9314 "libc",9315 "log",9316 "parity-scale-codec",9317 "parity-wasm 0.42.2",9318 "sc-allocator",9319 "sc-executor-common",9320 "sp-core",9321 "sp-runtime-interface",9322 "sp-wasm-interface",9323 "wasmtime",9324]93259326[[package]]9327name = "sc-finality-grandpa"9328version = "0.10.0-dev"9329source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9330dependencies = [9331 "async-trait",9332 "derive_more",9333 "dyn-clone",9334 "finality-grandpa",9335 "fork-tree",9336 "futures 0.3.17",9337 "futures-timer 3.0.2",9338 "log",9339 "parity-scale-codec",9340 "parking_lot 0.11.2",9341 "rand 0.8.4",9342 "sc-block-builder",9343 "sc-client-api",9344 "sc-consensus",9345 "sc-keystore",9346 "sc-network",9347 "sc-network-gossip",9348 "sc-telemetry",9349 "sc-utils",9350 "serde_json",9351 "sp-api",9352 "sp-application-crypto",9353 "sp-arithmetic",9354 "sp-blockchain",9355 "sp-consensus",9356 "sp-core",9357 "sp-finality-grandpa",9358 "sp-keystore",9359 "sp-runtime",9360 "substrate-prometheus-endpoint",9361]93629363[[package]]9364name = "sc-finality-grandpa-rpc"9365version = "0.10.0-dev"9366source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9367dependencies = [9368 "derive_more",9369 "finality-grandpa",9370 "futures 0.3.17",9371 "jsonrpc-core",9372 "jsonrpc-core-client",9373 "jsonrpc-derive",9374 "jsonrpc-pubsub",9375 "log",9376 "parity-scale-codec",9377 "sc-client-api",9378 "sc-finality-grandpa",9379 "sc-rpc",9380 "serde",9381 "serde_json",9382 "sp-blockchain",9383 "sp-core",9384 "sp-runtime",9385]93869387[[package]]9388name = "sc-informant"9389version = "0.10.0-dev"9390source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9391dependencies = [9392 "ansi_term 0.12.1",9393 "futures 0.3.17",9394 "futures-timer 3.0.2",9395 "log",9396 "parity-util-mem",9397 "sc-client-api",9398 "sc-network",9399 "sc-transaction-pool-api",9400 "sp-blockchain",9401 "sp-runtime",9402]94039404[[package]]9405name = "sc-keystore"9406version = "4.0.0-dev"9407source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9408dependencies = [9409 "async-trait",9410 "derive_more",9411 "hex",9412 "parking_lot 0.11.2",9413 "serde_json",9414 "sp-application-crypto",9415 "sp-core",9416 "sp-keystore",9417]94189419[[package]]9420name = "sc-light"9421version = "4.0.0-dev"9422source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9423dependencies = [9424 "hash-db",9425 "parity-scale-codec",9426 "parking_lot 0.11.2",9427 "sc-client-api",9428 "sc-executor",9429 "sp-api",9430 "sp-blockchain",9431 "sp-core",9432 "sp-externalities",9433 "sp-runtime",9434 "sp-state-machine",9435]94369437[[package]]9438name = "sc-network"9439version = "0.10.0-dev"9440source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9441dependencies = [9442 "async-std",9443 "async-trait",9444 "asynchronous-codec 0.5.0",9445 "bitflags",9446 "bytes 1.1.0",9447 "cid",9448 "derive_more",9449 "either",9450 "fnv",9451 "fork-tree",9452 "futures 0.3.17",9453 "futures-timer 3.0.2",9454 "hex",9455 "ip_network",9456 "libp2p",9457 "linked-hash-map",9458 "linked_hash_set",9459 "log",9460 "lru 0.6.6",9461 "parity-scale-codec",9462 "parking_lot 0.11.2",9463 "pin-project 1.0.8",9464 "prost",9465 "prost-build",9466 "rand 0.7.3",9467 "sc-block-builder",9468 "sc-client-api",9469 "sc-consensus",9470 "sc-peerset",9471 "sc-utils",9472 "serde",9473 "serde_json",9474 "smallvec",9475 "sp-arithmetic",9476 "sp-blockchain",9477 "sp-consensus",9478 "sp-core",9479 "sp-finality-grandpa",9480 "sp-runtime",9481 "substrate-prometheus-endpoint",9482 "thiserror",9483 "unsigned-varint 0.6.0",9484 "void",9485 "zeroize",9486]94879488[[package]]9489name = "sc-network-gossip"9490version = "0.10.0-dev"9491source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9492dependencies = [9493 "futures 0.3.17",9494 "futures-timer 3.0.2",9495 "libp2p",9496 "log",9497 "lru 0.6.6",9498 "sc-network",9499 "sp-runtime",9500 "substrate-prometheus-endpoint",9501 "tracing",9502]95039504[[package]]9505name = "sc-offchain"9506version = "4.0.0-dev"9507source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9508dependencies = [9509 "bytes 1.1.0",9510 "fnv",9511 "futures 0.3.17",9512 "futures-timer 3.0.2",9513 "hex",9514 "hyper",9515 "hyper-rustls",9516 "log",9517 "num_cpus",9518 "parity-scale-codec",9519 "parking_lot 0.11.2",9520 "rand 0.7.3",9521 "sc-client-api",9522 "sc-network",9523 "sc-utils",9524 "sp-api",9525 "sp-core",9526 "sp-offchain",9527 "sp-runtime",9528 "threadpool",9529]95309531[[package]]9532name = "sc-peerset"9533version = "4.0.0-dev"9534source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9535dependencies = [9536 "futures 0.3.17",9537 "libp2p",9538 "log",9539 "sc-utils",9540 "serde_json",9541 "wasm-timer",9542]95439544[[package]]9545name = "sc-proposer-metrics"9546version = "0.9.0"9547source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9548dependencies = [9549 "log",9550 "substrate-prometheus-endpoint",9551]95529553[[package]]9554name = "sc-rpc"9555version = "4.0.0-dev"9556source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9557dependencies = [9558 "futures 0.3.17",9559 "hash-db",9560 "jsonrpc-core",9561 "jsonrpc-pubsub",9562 "log",9563 "parity-scale-codec",9564 "parking_lot 0.11.2",9565 "sc-block-builder",9566 "sc-chain-spec",9567 "sc-client-api",9568 "sc-rpc-api",9569 "sc-tracing",9570 "sc-transaction-pool-api",9571 "sc-utils",9572 "serde_json",9573 "sp-api",9574 "sp-blockchain",9575 "sp-core",9576 "sp-keystore",9577 "sp-offchain",9578 "sp-rpc",9579 "sp-runtime",9580 "sp-session",9581 "sp-version",9582]95839584[[package]]9585name = "sc-rpc-api"9586version = "0.10.0-dev"9587source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9588dependencies = [9589 "futures 0.3.17",9590 "jsonrpc-core",9591 "jsonrpc-core-client",9592 "jsonrpc-derive",9593 "jsonrpc-pubsub",9594 "log",9595 "parity-scale-codec",9596 "parking_lot 0.11.2",9597 "sc-chain-spec",9598 "sc-transaction-pool-api",9599 "serde",9600 "serde_json",9601 "sp-core",9602 "sp-rpc",9603 "sp-runtime",9604 "sp-tracing",9605 "sp-version",9606 "thiserror",9607]96089609[[package]]9610name = "sc-rpc-server"9611version = "4.0.0-dev"9612source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9613dependencies = [9614 "futures 0.3.17",9615 "jsonrpc-core",9616 "jsonrpc-http-server",9617 "jsonrpc-ipc-server",9618 "jsonrpc-pubsub",9619 "jsonrpc-ws-server",9620 "log",9621 "serde_json",9622 "substrate-prometheus-endpoint",9623 "tokio 1.13.0",9624]96259626[[package]]9627name = "sc-service"9628version = "0.10.0-dev"9629source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9630dependencies = [9631 "async-trait",9632 "directories",9633 "exit-future",9634 "futures 0.3.17",9635 "futures-timer 3.0.2",9636 "hash-db",9637 "jsonrpc-core",9638 "jsonrpc-pubsub",9639 "log",9640 "parity-scale-codec",9641 "parity-util-mem",9642 "parking_lot 0.11.2",9643 "pin-project 1.0.8",9644 "rand 0.7.3",9645 "sc-block-builder",9646 "sc-chain-spec",9647 "sc-client-api",9648 "sc-client-db",9649 "sc-consensus",9650 "sc-executor",9651 "sc-informant",9652 "sc-keystore",9653 "sc-light",9654 "sc-network",9655 "sc-offchain",9656 "sc-rpc",9657 "sc-rpc-server",9658 "sc-telemetry",9659 "sc-tracing",9660 "sc-transaction-pool",9661 "sc-transaction-pool-api",9662 "sc-utils",9663 "serde",9664 "serde_json",9665 "sp-api",9666 "sp-application-crypto",9667 "sp-block-builder",9668 "sp-blockchain",9669 "sp-consensus",9670 "sp-core",9671 "sp-externalities",9672 "sp-inherents",9673 "sp-keystore",9674 "sp-runtime",9675 "sp-session",9676 "sp-state-machine",9677 "sp-storage",9678 "sp-tracing",9679 "sp-transaction-pool",9680 "sp-transaction-storage-proof",9681 "sp-trie",9682 "sp-version",9683 "substrate-prometheus-endpoint",9684 "tempfile",9685 "thiserror",9686 "tokio 1.13.0",9687 "tracing",9688 "tracing-futures",9689]96909691[[package]]9692name = "sc-state-db"9693version = "0.10.0-dev"9694source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9695dependencies = [9696 "log",9697 "parity-scale-codec",9698 "parity-util-mem",9699 "parity-util-mem-derive",9700 "parking_lot 0.11.2",9701 "sc-client-api",9702 "sp-core",9703]97049705[[package]]9706name = "sc-sync-state-rpc"9707version = "0.10.0-dev"9708source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9709dependencies = [9710 "jsonrpc-core",9711 "jsonrpc-core-client",9712 "jsonrpc-derive",9713 "parity-scale-codec",9714 "sc-chain-spec",9715 "sc-client-api",9716 "sc-consensus-babe",9717 "sc-consensus-epochs",9718 "sc-finality-grandpa",9719 "sc-rpc-api",9720 "serde",9721 "serde_json",9722 "sp-blockchain",9723 "sp-runtime",9724 "thiserror",9725]97269727[[package]]9728name = "sc-telemetry"9729version = "4.0.0-dev"9730source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9731dependencies = [9732 "chrono",9733 "futures 0.3.17",9734 "libp2p",9735 "log",9736 "parking_lot 0.11.2",9737 "pin-project 1.0.8",9738 "rand 0.7.3",9739 "serde",9740 "serde_json",9741 "thiserror",9742 "wasm-timer",9743]97449745[[package]]9746name = "sc-tracing"9747version = "4.0.0-dev"9748source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9749dependencies = [9750 "ansi_term 0.12.1",9751 "atty",9752 "chrono",9753 "lazy_static",9754 "log",9755 "once_cell",9756 "parking_lot 0.11.2",9757 "regex",9758 "rustc-hash",9759 "sc-client-api",9760 "sc-rpc-server",9761 "sc-tracing-proc-macro",9762 "serde",9763 "sp-api",9764 "sp-blockchain",9765 "sp-core",9766 "sp-rpc",9767 "sp-runtime",9768 "sp-tracing",9769 "thiserror",9770 "tracing",9771 "tracing-log",9772 "tracing-subscriber",9773]97749775[[package]]9776name = "sc-tracing-proc-macro"9777version = "4.0.0-dev"9778source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9779dependencies = [9780 "proc-macro-crate 1.1.0",9781 "proc-macro2",9782 "quote",9783 "syn",9784]97859786[[package]]9787name = "sc-transaction-pool"9788version = "4.0.0-dev"9789source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9790dependencies = [9791 "futures 0.3.17",9792 "intervalier",9793 "linked-hash-map",9794 "log",9795 "parity-scale-codec",9796 "parity-util-mem",9797 "parking_lot 0.11.2",9798 "retain_mut",9799 "sc-client-api",9800 "sc-transaction-pool-api",9801 "sc-utils",9802 "serde",9803 "sp-api",9804 "sp-blockchain",9805 "sp-core",9806 "sp-runtime",9807 "sp-tracing",9808 "sp-transaction-pool",9809 "substrate-prometheus-endpoint",9810 "thiserror",9811]98129813[[package]]9814name = "sc-transaction-pool-api"9815version = "4.0.0-dev"9816source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9817dependencies = [9818 "derive_more",9819 "futures 0.3.17",9820 "log",9821 "serde",9822 "sp-blockchain",9823 "sp-runtime",9824 "thiserror",9825]98269827[[package]]9828name = "sc-utils"9829version = "4.0.0-dev"9830source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9831dependencies = [9832 "futures 0.3.17",9833 "futures-timer 3.0.2",9834 "lazy_static",9835 "prometheus",9836]98379838[[package]]9839name = "scale-info"9840version = "1.0.0"9841source = "registry+https://github.com/rust-lang/crates.io-index"9842checksum = "5c55b744399c25532d63a0d2789b109df8d46fc93752d46b0782991a931a782f"9843dependencies = [9844 "bitvec 0.20.4",9845 "cfg-if 1.0.0",9846 "derive_more",9847 "parity-scale-codec",9848 "scale-info-derive",9849 "serde",9850]98519852[[package]]9853name = "scale-info-derive"9854version = "1.0.0"9855source = "registry+https://github.com/rust-lang/crates.io-index"9856checksum = "baeb2780690380592f86205aa4ee49815feb2acad8c2f59e6dd207148c3f1fcd"9857dependencies = [9858 "proc-macro-crate 1.1.0",9859 "proc-macro2",9860 "quote",9861 "syn",9862]98639864[[package]]9865name = "schannel"9866version = "0.1.19"9867source = "registry+https://github.com/rust-lang/crates.io-index"9868checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"9869dependencies = [9870 "lazy_static",9871 "winapi 0.3.9",9872]98739874[[package]]9875name = "schnorrkel"9876version = "0.9.1"9877source = "registry+https://github.com/rust-lang/crates.io-index"9878checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"9879dependencies = [9880 "arrayref",9881 "arrayvec 0.5.2",9882 "curve25519-dalek 2.1.3",9883 "getrandom 0.1.16",9884 "merlin",9885 "rand 0.7.3",9886 "rand_core 0.5.1",9887 "sha2 0.8.2",9888 "subtle 2.4.1",9889 "zeroize",9890]98919892[[package]]9893name = "scoped-tls"9894version = "1.0.0"9895source = "registry+https://github.com/rust-lang/crates.io-index"9896checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"98979898[[package]]9899name = "scopeguard"9900version = "1.1.0"9901source = "registry+https://github.com/rust-lang/crates.io-index"9902checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"99039904[[package]]9905name = "sct"9906version = "0.6.1"9907source = "registry+https://github.com/rust-lang/crates.io-index"9908checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"9909dependencies = [9910 "ring",9911 "untrusted",9912]99139914[[package]]9915name = "secrecy"9916version = "0.8.0"9917source = "registry+https://github.com/rust-lang/crates.io-index"9918checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"9919dependencies = [9920 "zeroize",9921]99229923[[package]]9924name = "security-framework"9925version = "2.4.2"9926source = "registry+https://github.com/rust-lang/crates.io-index"9927checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87"9928dependencies = [9929 "bitflags",9930 "core-foundation",9931 "core-foundation-sys",9932 "libc",9933 "security-framework-sys",9934]99359936[[package]]9937name = "security-framework-sys"9938version = "2.4.2"9939source = "registry+https://github.com/rust-lang/crates.io-index"9940checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e"9941dependencies = [9942 "core-foundation-sys",9943 "libc",9944]99459946[[package]]9947name = "semver"9948version = "0.6.0"9949source = "registry+https://github.com/rust-lang/crates.io-index"9950checksum = "7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537"9951dependencies = [9952 "semver-parser 0.7.0",9953]99549955[[package]]9956name = "semver"9957version = "0.9.0"9958source = "registry+https://github.com/rust-lang/crates.io-index"9959checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"9960dependencies = [9961 "semver-parser 0.7.0",9962]99639964[[package]]9965name = "semver"9966version = "0.11.0"9967source = "registry+https://github.com/rust-lang/crates.io-index"9968checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"9969dependencies = [9970 "semver-parser 0.10.2",9971 "serde",9972]99739974[[package]]9975name = "semver-parser"9976version = "0.7.0"9977source = "registry+https://github.com/rust-lang/crates.io-index"9978checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"99799980[[package]]9981name = "semver-parser"9982version = "0.10.2"9983source = "registry+https://github.com/rust-lang/crates.io-index"9984checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"9985dependencies = [9986 "pest",9987]99889989[[package]]9990name = "serde"9991version = "1.0.130"9992source = "registry+https://github.com/rust-lang/crates.io-index"9993checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"9994dependencies = [9995 "serde_derive",9996]99979998[[package]]9999name = "serde_derive"10000version = "1.0.130"10001source = "registry+https://github.com/rust-lang/crates.io-index"10002checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"10003dependencies = [10004 "proc-macro2",10005 "quote",10006 "syn",10007]1000810009[[package]]10010name = "serde_json"10011version = "1.0.68"10012source = "registry+https://github.com/rust-lang/crates.io-index"10013checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"10014dependencies = [10015 "itoa",10016 "ryu",10017 "serde",10018]1001910020[[package]]10021name = "sha-1"10022version = "0.8.2"10023source = "registry+https://github.com/rust-lang/crates.io-index"10024checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"10025dependencies = [10026 "block-buffer 0.7.3",10027 "digest 0.8.1",10028 "fake-simd",10029 "opaque-debug 0.2.3",10030]1003110032[[package]]10033name = "sha-1"10034version = "0.9.8"10035source = "registry+https://github.com/rust-lang/crates.io-index"10036checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"10037dependencies = [10038 "block-buffer 0.9.0",10039 "cfg-if 1.0.0",10040 "cpufeatures 0.2.1",10041 "digest 0.9.0",10042 "opaque-debug 0.3.0",10043]1004410045[[package]]10046name = "sha2"10047version = "0.8.2"10048source = "registry+https://github.com/rust-lang/crates.io-index"10049checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"10050dependencies = [10051 "block-buffer 0.7.3",10052 "digest 0.8.1",10053 "fake-simd",10054 "opaque-debug 0.2.3",10055]1005610057[[package]]10058name = "sha2"10059version = "0.9.8"10060source = "registry+https://github.com/rust-lang/crates.io-index"10061checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa"10062dependencies = [10063 "block-buffer 0.9.0",10064 "cfg-if 1.0.0",10065 "cpufeatures 0.2.1",10066 "digest 0.9.0",10067 "opaque-debug 0.3.0",10068]1006910070[[package]]10071name = "sha3"10072version = "0.8.2"10073source = "registry+https://github.com/rust-lang/crates.io-index"10074checksum = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf"10075dependencies = [10076 "block-buffer 0.7.3",10077 "byte-tools",10078 "digest 0.8.1",10079 "keccak",10080 "opaque-debug 0.2.3",10081]1008210083[[package]]10084name = "sha3"10085version = "0.9.1"10086source = "registry+https://github.com/rust-lang/crates.io-index"10087checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809"10088dependencies = [10089 "block-buffer 0.9.0",10090 "digest 0.9.0",10091 "keccak",10092 "opaque-debug 0.3.0",10093]1009410095[[package]]10096name = "sharded-slab"10097version = "0.1.4"10098source = "registry+https://github.com/rust-lang/crates.io-index"10099checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"10100dependencies = [10101 "lazy_static",10102]1010310104[[package]]10105name = "shlex"10106version = "1.1.0"10107source = "registry+https://github.com/rust-lang/crates.io-index"10108checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"1010910110[[package]]10111name = "signal-hook"10112version = "0.3.10"10113source = "registry+https://github.com/rust-lang/crates.io-index"10114checksum = "9c98891d737e271a2954825ef19e46bd16bdb98e2746f2eec4f7a4ef7946efd1"10115dependencies = [10116 "libc",10117 "signal-hook-registry",10118]1011910120[[package]]10121name = "signal-hook-registry"10122version = "1.4.0"10123source = "registry+https://github.com/rust-lang/crates.io-index"10124checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"10125dependencies = [10126 "libc",10127]1012810129[[package]]10130name = "signature"10131version = "1.4.0"10132source = "registry+https://github.com/rust-lang/crates.io-index"10133checksum = "02658e48d89f2bec991f9a78e69cfa4c316f8d6a6c4ec12fae1aeb263d486788"1013410135[[package]]10136name = "simba"10137version = "0.5.1"10138source = "registry+https://github.com/rust-lang/crates.io-index"10139checksum = "8e82063457853d00243beda9952e910b82593e4b07ae9f721b9278a99a0d3d5c"10140dependencies = [10141 "approx",10142 "num-complex",10143 "num-traits",10144 "paste",10145]1014610147[[package]]10148name = "slab"10149version = "0.4.5"10150source = "registry+https://github.com/rust-lang/crates.io-index"10151checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"1015210153[[package]]10154name = "slot-range-helper"10155version = "0.9.12"10156source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"10157dependencies = [10158 "enumn",10159 "parity-scale-codec",10160 "paste",10161 "sp-runtime",10162 "sp-std",10163]1016410165[[package]]10166name = "slotmap"10167version = "1.0.6"10168source = "registry+https://github.com/rust-lang/crates.io-index"10169checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342"10170dependencies = [10171 "version_check",10172]1017310174[[package]]10175name = "smallvec"10176version = "1.7.0"10177source = "registry+https://github.com/rust-lang/crates.io-index"10178checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"1017910180[[package]]10181name = "snap"10182version = "1.0.5"10183source = "registry+https://github.com/rust-lang/crates.io-index"10184checksum = "45456094d1983e2ee2a18fdfebce3189fa451699d0502cb8e3b49dba5ba41451"1018510186[[package]]10187name = "snow"10188version = "0.8.0"10189source = "registry+https://github.com/rust-lang/crates.io-index"10190checksum = "6142f7c25e94f6fd25a32c3348ec230df9109b463f59c8c7acc4bd34936babb7"10191dependencies = [10192 "aes-gcm",10193 "blake2",10194 "chacha20poly1305",10195 "rand 0.8.4",10196 "rand_core 0.6.3",10197 "ring",10198 "rustc_version 0.3.3",10199 "sha2 0.9.8",10200 "subtle 2.4.1",10201 "x25519-dalek",10202]1020310204[[package]]10205name = "socket2"10206version = "0.3.19"10207source = "registry+https://github.com/rust-lang/crates.io-index"10208checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"10209dependencies = [10210 "cfg-if 1.0.0",10211 "libc",10212 "winapi 0.3.9",10213]1021410215[[package]]10216name = "socket2"10217version = "0.4.2"10218source = "registry+https://github.com/rust-lang/crates.io-index"10219checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"10220dependencies = [10221 "libc",10222 "winapi 0.3.9",10223]1022410225[[package]]10226name = "soketto"10227version = "0.4.2"10228source = "registry+https://github.com/rust-lang/crates.io-index"10229checksum = "b5c71ed3d54db0a699f4948e1bb3e45b450fa31fe602621dee6680361d569c88"10230dependencies = [10231 "base64 0.12.3",10232 "bytes 0.5.6",10233 "flate2",10234 "futures 0.3.17",10235 "httparse",10236 "log",10237 "rand 0.7.3",10238 "sha-1 0.9.8",10239]1024010241[[package]]10242name = "soketto"10243version = "0.6.0"10244source = "registry+https://github.com/rust-lang/crates.io-index"10245checksum = "a74e48087dbeed4833785c2f3352b59140095dc192dce966a3bfc155020a439f"10246dependencies = [10247 "base64 0.13.0",10248 "bytes 1.1.0",10249 "futures 0.3.17",10250 "httparse",10251 "log",10252 "rand 0.8.4",10253 "sha-1 0.9.8",10254]1025510256[[package]]10257name = "sp-api"10258version = "4.0.0-dev"10259source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10260dependencies = [10261 "hash-db",10262 "log",10263 "parity-scale-codec",10264 "sp-api-proc-macro",10265 "sp-core",10266 "sp-runtime",10267 "sp-state-machine",10268 "sp-std",10269 "sp-version",10270 "thiserror",10271]1027210273[[package]]10274name = "sp-api-proc-macro"10275version = "4.0.0-dev"10276source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10277dependencies = [10278 "blake2-rfc",10279 "proc-macro-crate 1.1.0",10280 "proc-macro2",10281 "quote",10282 "syn",10283]1028410285[[package]]10286name = "sp-application-crypto"10287version = "4.0.0-dev"10288source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10289dependencies = [10290 "parity-scale-codec",10291 "scale-info",10292 "serde",10293 "sp-core",10294 "sp-io",10295 "sp-std",10296]1029710298[[package]]10299name = "sp-arithmetic"10300version = "4.0.0-dev"10301source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10302dependencies = [10303 "integer-sqrt",10304 "num-traits",10305 "parity-scale-codec",10306 "scale-info",10307 "serde",10308 "sp-debug-derive",10309 "sp-std",10310 "static_assertions",10311]1031210313[[package]]10314name = "sp-authority-discovery"10315version = "4.0.0-dev"10316source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10317dependencies = [10318 "parity-scale-codec",10319 "scale-info",10320 "sp-api",10321 "sp-application-crypto",10322 "sp-runtime",10323 "sp-std",10324]1032510326[[package]]10327name = "sp-authorship"10328version = "4.0.0-dev"10329source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10330dependencies = [10331 "async-trait",10332 "parity-scale-codec",10333 "sp-inherents",10334 "sp-runtime",10335 "sp-std",10336]1033710338[[package]]10339name = "sp-block-builder"10340version = "4.0.0-dev"10341source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10342dependencies = [10343 "parity-scale-codec",10344 "sp-api",10345 "sp-inherents",10346 "sp-runtime",10347 "sp-std",10348]1034910350[[package]]10351name = "sp-blockchain"10352version = "4.0.0-dev"10353source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10354dependencies = [10355 "futures 0.3.17",10356 "log",10357 "lru 0.6.6",10358 "parity-scale-codec",10359 "parking_lot 0.11.2",10360 "sp-api",10361 "sp-consensus",10362 "sp-database",10363 "sp-runtime",10364 "sp-state-machine",10365 "thiserror",10366]1036710368[[package]]10369name = "sp-consensus"10370version = "0.10.0-dev"10371source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10372dependencies = [10373 "async-trait",10374 "futures 0.3.17",10375 "futures-timer 3.0.2",10376 "log",10377 "parity-scale-codec",10378 "sp-core",10379 "sp-inherents",10380 "sp-runtime",10381 "sp-state-machine",10382 "sp-std",10383 "sp-version",10384 "thiserror",10385]1038610387[[package]]10388name = "sp-consensus-aura"10389version = "0.10.0-dev"10390source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10391dependencies = [10392 "async-trait",10393 "parity-scale-codec",10394 "scale-info",10395 "sp-api",10396 "sp-application-crypto",10397 "sp-consensus",10398 "sp-consensus-slots",10399 "sp-inherents",10400 "sp-runtime",10401 "sp-std",10402 "sp-timestamp",10403]1040410405[[package]]10406name = "sp-consensus-babe"10407version = "0.10.0-dev"10408source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10409dependencies = [10410 "async-trait",10411 "merlin",10412 "parity-scale-codec",10413 "scale-info",10414 "serde",10415 "sp-api",10416 "sp-application-crypto",10417 "sp-consensus",10418 "sp-consensus-slots",10419 "sp-consensus-vrf",10420 "sp-core",10421 "sp-inherents",10422 "sp-keystore",10423 "sp-runtime",10424 "sp-std",10425 "sp-timestamp",10426]1042710428[[package]]10429name = "sp-consensus-slots"10430version = "0.10.0-dev"10431source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10432dependencies = [10433 "parity-scale-codec",10434 "scale-info",10435 "sp-arithmetic",10436 "sp-runtime",10437]1043810439[[package]]10440name = "sp-consensus-vrf"10441version = "0.10.0-dev"10442source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10443dependencies = [10444 "parity-scale-codec",10445 "schnorrkel",10446 "sp-core",10447 "sp-runtime",10448 "sp-std",10449]1045010451[[package]]10452name = "sp-core"10453version = "4.0.0-dev"10454source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10455dependencies = [10456 "base58",10457 "blake2-rfc",10458 "byteorder",10459 "dyn-clonable",10460 "ed25519-dalek",10461 "futures 0.3.17",10462 "hash-db",10463 "hash256-std-hasher",10464 "hex",10465 "impl-serde",10466 "lazy_static",10467 "libsecp256k1 0.6.0",10468 "log",10469 "merlin",10470 "num-traits",10471 "parity-scale-codec",10472 "parity-util-mem",10473 "parking_lot 0.11.2",10474 "primitive-types 0.10.1",10475 "rand 0.7.3",10476 "regex",10477 "scale-info",10478 "schnorrkel",10479 "secrecy",10480 "serde",10481 "sha2 0.9.8",10482 "sp-debug-derive",10483 "sp-externalities",10484 "sp-runtime-interface",10485 "sp-std",10486 "sp-storage",10487 "ss58-registry",10488 "substrate-bip39",10489 "thiserror",10490 "tiny-bip39",10491 "tiny-keccak",10492 "twox-hash",10493 "wasmi",10494 "zeroize",10495]1049610497[[package]]10498name = "sp-database"10499version = "4.0.0-dev"10500source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10501dependencies = [10502 "kvdb",10503 "parking_lot 0.11.2",10504]1050510506[[package]]10507name = "sp-debug-derive"10508version = "3.0.0"10509source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10510dependencies = [10511 "proc-macro2",10512 "quote",10513 "syn",10514]1051510516[[package]]10517name = "sp-externalities"10518version = "0.10.0-dev"10519source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10520dependencies = [10521 "environmental",10522 "parity-scale-codec",10523 "sp-std",10524 "sp-storage",10525]1052610527[[package]]10528name = "sp-finality-grandpa"10529version = "4.0.0-dev"10530source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10531dependencies = [10532 "finality-grandpa",10533 "log",10534 "parity-scale-codec",10535 "scale-info",10536 "serde",10537 "sp-api",10538 "sp-application-crypto",10539 "sp-core",10540 "sp-keystore",10541 "sp-runtime",10542 "sp-std",10543]1054410545[[package]]10546name = "sp-inherents"10547version = "4.0.0-dev"10548source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10549dependencies = [10550 "async-trait",10551 "impl-trait-for-tuples 0.2.1",10552 "parity-scale-codec",10553 "sp-core",10554 "sp-runtime",10555 "sp-std",10556 "thiserror",10557]1055810559[[package]]10560name = "sp-io"10561version = "4.0.0-dev"10562source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10563dependencies = [10564 "futures 0.3.17",10565 "hash-db",10566 "libsecp256k1 0.6.0",10567 "log",10568 "parity-scale-codec",10569 "parking_lot 0.11.2",10570 "sp-core",10571 "sp-externalities",10572 "sp-keystore",10573 "sp-runtime-interface",10574 "sp-state-machine",10575 "sp-std",10576 "sp-tracing",10577 "sp-trie",10578 "sp-wasm-interface",10579 "tracing",10580 "tracing-core",10581]1058210583[[package]]10584name = "sp-keyring"10585version = "4.0.0-dev"10586source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10587dependencies = [10588 "lazy_static",10589 "sp-core",10590 "sp-runtime",10591 "strum 0.20.0",10592]1059310594[[package]]10595name = "sp-keystore"10596version = "0.10.0-dev"10597source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10598dependencies = [10599 "async-trait",10600 "derive_more",10601 "futures 0.3.17",10602 "merlin",10603 "parity-scale-codec",10604 "parking_lot 0.11.2",10605 "schnorrkel",10606 "serde",10607 "sp-core",10608 "sp-externalities",10609]1061010611[[package]]10612name = "sp-maybe-compressed-blob"10613version = "4.0.0-dev"10614source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10615dependencies = [10616 "zstd",10617]1061810619[[package]]10620name = "sp-npos-elections"10621version = "4.0.0-dev"10622source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10623dependencies = [10624 "parity-scale-codec",10625 "scale-info",10626 "serde",10627 "sp-arithmetic",10628 "sp-core",10629 "sp-npos-elections-solution-type",10630 "sp-runtime",10631 "sp-std",10632]1063310634[[package]]10635name = "sp-npos-elections-solution-type"10636version = "4.0.0-dev"10637source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10638dependencies = [10639 "proc-macro-crate 1.1.0",10640 "proc-macro2",10641 "quote",10642 "syn",10643]1064410645[[package]]10646name = "sp-offchain"10647version = "4.0.0-dev"10648source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10649dependencies = [10650 "sp-api",10651 "sp-core",10652 "sp-runtime",10653]1065410655[[package]]10656name = "sp-panic-handler"10657version = "3.0.0"10658source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10659dependencies = [10660 "backtrace",10661]1066210663[[package]]10664name = "sp-rpc"10665version = "4.0.0-dev"10666source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10667dependencies = [10668 "rustc-hash",10669 "serde",10670 "sp-core",10671]1067210673[[package]]10674name = "sp-runtime"10675version = "4.0.0-dev"10676source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10677dependencies = [10678 "either",10679 "hash256-std-hasher",10680 "impl-trait-for-tuples 0.2.1",10681 "log",10682 "parity-scale-codec",10683 "parity-util-mem",10684 "paste",10685 "rand 0.7.3",10686 "scale-info",10687 "serde",10688 "sp-application-crypto",10689 "sp-arithmetic",10690 "sp-core",10691 "sp-io",10692 "sp-std",10693]1069410695[[package]]10696name = "sp-runtime-interface"10697version = "4.0.0-dev"10698source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10699dependencies = [10700 "impl-trait-for-tuples 0.2.1",10701 "parity-scale-codec",10702 "primitive-types 0.10.1",10703 "sp-externalities",10704 "sp-runtime-interface-proc-macro",10705 "sp-std",10706 "sp-storage",10707 "sp-tracing",10708 "sp-wasm-interface",10709 "static_assertions",10710]1071110712[[package]]10713name = "sp-runtime-interface-proc-macro"10714version = "4.0.0-dev"10715source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10716dependencies = [10717 "Inflector",10718 "proc-macro-crate 1.1.0",10719 "proc-macro2",10720 "quote",10721 "syn",10722]1072310724[[package]]10725name = "sp-sandbox"10726version = "0.10.0-dev"10727source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10728dependencies = [10729 "log",10730 "parity-scale-codec",10731 "sp-core",10732 "sp-io",10733 "sp-std",10734 "sp-wasm-interface",10735 "wasmi",10736]1073710738[[package]]10739name = "sp-serializer"10740version = "3.0.0"10741source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10742dependencies = [10743 "serde",10744 "serde_json",10745]1074610747[[package]]10748name = "sp-session"10749version = "4.0.0-dev"10750source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10751dependencies = [10752 "parity-scale-codec",10753 "scale-info",10754 "sp-api",10755 "sp-core",10756 "sp-runtime",10757 "sp-staking",10758 "sp-std",10759]1076010761[[package]]10762name = "sp-staking"10763version = "4.0.0-dev"10764source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10765dependencies = [10766 "parity-scale-codec",10767 "scale-info",10768 "sp-runtime",10769 "sp-std",10770]1077110772[[package]]10773name = "sp-state-machine"10774version = "0.10.0-dev"10775source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10776dependencies = [10777 "hash-db",10778 "log",10779 "num-traits",10780 "parity-scale-codec",10781 "parking_lot 0.11.2",10782 "rand 0.7.3",10783 "smallvec",10784 "sp-core",10785 "sp-externalities",10786 "sp-panic-handler",10787 "sp-std",10788 "sp-trie",10789 "thiserror",10790 "tracing",10791 "trie-db",10792 "trie-root",10793]1079410795[[package]]10796name = "sp-std"10797version = "4.0.0-dev"10798source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"1079910800[[package]]10801name = "sp-storage"10802version = "4.0.0-dev"10803source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10804dependencies = [10805 "impl-serde",10806 "parity-scale-codec",10807 "ref-cast",10808 "serde",10809 "sp-debug-derive",10810 "sp-std",10811]1081210813[[package]]10814name = "sp-tasks"10815version = "4.0.0-dev"10816source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10817dependencies = [10818 "log",10819 "sp-core",10820 "sp-externalities",10821 "sp-io",10822 "sp-runtime-interface",10823 "sp-std",10824]1082510826[[package]]10827name = "sp-timestamp"10828version = "4.0.0-dev"10829source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10830dependencies = [10831 "async-trait",10832 "futures-timer 3.0.2",10833 "log",10834 "parity-scale-codec",10835 "sp-api",10836 "sp-inherents",10837 "sp-runtime",10838 "sp-std",10839 "thiserror",10840]1084110842[[package]]10843name = "sp-tracing"10844version = "4.0.0-dev"10845source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10846dependencies = [10847 "parity-scale-codec",10848 "sp-std",10849 "tracing",10850 "tracing-core",10851 "tracing-subscriber",10852]1085310854[[package]]10855name = "sp-transaction-pool"10856version = "4.0.0-dev"10857source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10858dependencies = [10859 "sp-api",10860 "sp-runtime",10861]1086210863[[package]]10864name = "sp-transaction-storage-proof"10865version = "4.0.0-dev"10866source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10867dependencies = [10868 "async-trait",10869 "log",10870 "parity-scale-codec",10871 "scale-info",10872 "sp-core",10873 "sp-inherents",10874 "sp-runtime",10875 "sp-std",10876 "sp-trie",10877]1087810879[[package]]10880name = "sp-trie"10881version = "4.0.0-dev"10882source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10883dependencies = [10884 "hash-db",10885 "memory-db",10886 "parity-scale-codec",10887 "scale-info",10888 "sp-core",10889 "sp-std",10890 "trie-db",10891 "trie-root",10892]1089310894[[package]]10895name = "sp-version"10896version = "4.0.0-dev"10897source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10898dependencies = [10899 "impl-serde",10900 "parity-scale-codec",10901 "parity-wasm 0.42.2",10902 "scale-info",10903 "serde",10904 "sp-runtime",10905 "sp-std",10906 "sp-version-proc-macro",10907 "thiserror",10908]1090910910[[package]]10911name = "sp-version-proc-macro"10912version = "4.0.0-dev"10913source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10914dependencies = [10915 "parity-scale-codec",10916 "proc-macro2",10917 "quote",10918 "syn",10919]1092010921[[package]]10922name = "sp-wasm-interface"10923version = "4.0.0-dev"10924source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10925dependencies = [10926 "impl-trait-for-tuples 0.2.1",10927 "parity-scale-codec",10928 "sp-std",10929 "wasmi",10930]1093110932[[package]]10933name = "spin"10934version = "0.5.2"10935source = "registry+https://github.com/rust-lang/crates.io-index"10936checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"1093710938[[package]]10939name = "ss58-registry"10940version = "1.2.0"10941source = "registry+https://github.com/rust-lang/crates.io-index"10942checksum = "bb102b328df61c67f8ccf8471b29c31c7d6da646a867aff95fe8bff386fe7c4d"10943dependencies = [10944 "Inflector",10945 "proc-macro2",10946 "quote",10947 "serde",10948 "serde_json",10949 "unicode-xid",10950]1095110952[[package]]10953name = "stable_deref_trait"10954version = "1.2.0"10955source = "registry+https://github.com/rust-lang/crates.io-index"10956checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"1095710958[[package]]10959name = "static_assertions"10960version = "1.1.0"10961source = "registry+https://github.com/rust-lang/crates.io-index"10962checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"1096310964[[package]]10965name = "static_init"10966version = "0.5.2"10967source = "registry+https://github.com/rust-lang/crates.io-index"10968checksum = "11b73400442027c4adedda20a9f9b7945234a5bd8d5f7e86da22bd5d0622369c"10969dependencies = [10970 "cfg_aliases",10971 "libc",10972 "parking_lot 0.11.2",10973 "static_init_macro",10974]1097510976[[package]]10977name = "static_init_macro"10978version = "0.5.0"10979source = "registry+https://github.com/rust-lang/crates.io-index"10980checksum = "f2261c91034a1edc3fc4d1b80e89d82714faede0515c14a75da10cb941546bbf"10981dependencies = [10982 "cfg_aliases",10983 "memchr",10984 "proc-macro2",10985 "quote",10986 "syn",10987]1098810989[[package]]10990name = "statrs"10991version = "0.15.0"10992source = "registry+https://github.com/rust-lang/crates.io-index"10993checksum = "05bdbb8e4e78216a85785a85d3ec3183144f98d0097b9281802c019bb07a6f05"10994dependencies = [10995 "approx",10996 "lazy_static",10997 "nalgebra",10998 "num-traits",10999 "rand 0.8.4",11000]1100111002[[package]]11003name = "strsim"11004version = "0.8.0"11005source = "registry+https://github.com/rust-lang/crates.io-index"11006checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"1100711008[[package]]11009name = "strsim"11010version = "0.10.0"11011source = "registry+https://github.com/rust-lang/crates.io-index"11012checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"1101311014[[package]]11015name = "structopt"11016version = "0.3.25"11017source = "registry+https://github.com/rust-lang/crates.io-index"11018checksum = "40b9788f4202aa75c240ecc9c15c65185e6a39ccdeb0fd5d008b98825464c87c"11019dependencies = [11020 "clap",11021 "lazy_static",11022 "structopt-derive",11023]1102411025[[package]]11026name = "structopt-derive"11027version = "0.4.18"11028source = "registry+https://github.com/rust-lang/crates.io-index"11029checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"11030dependencies = [11031 "heck",11032 "proc-macro-error 1.0.4",11033 "proc-macro2",11034 "quote",11035 "syn",11036]1103711038[[package]]11039name = "strum"11040version = "0.20.0"11041source = "registry+https://github.com/rust-lang/crates.io-index"11042checksum = "7318c509b5ba57f18533982607f24070a55d353e90d4cae30c467cdb2ad5ac5c"11043dependencies = [11044 "strum_macros 0.20.1",11045]1104611047[[package]]11048name = "strum"11049version = "0.21.0"11050source = "registry+https://github.com/rust-lang/crates.io-index"11051checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"1105211053[[package]]11054name = "strum"11055version = "0.22.0"11056source = "registry+https://github.com/rust-lang/crates.io-index"11057checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"11058dependencies = [11059 "strum_macros 0.22.0",11060]1106111062[[package]]11063name = "strum_macros"11064version = "0.20.1"11065source = "registry+https://github.com/rust-lang/crates.io-index"11066checksum = "ee8bc6b87a5112aeeab1f4a9f7ab634fe6cbefc4850006df31267f4cfb9e3149"11067dependencies = [11068 "heck",11069 "proc-macro2",11070 "quote",11071 "syn",11072]1107311074[[package]]11075name = "strum_macros"11076version = "0.21.1"11077source = "registry+https://github.com/rust-lang/crates.io-index"11078checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"11079dependencies = [11080 "heck",11081 "proc-macro2",11082 "quote",11083 "syn",11084]1108511086[[package]]11087name = "strum_macros"11088version = "0.22.0"11089source = "registry+https://github.com/rust-lang/crates.io-index"11090checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"11091dependencies = [11092 "heck",11093 "proc-macro2",11094 "quote",11095 "syn",11096]1109711098[[package]]11099name = "substrate-bip39"11100version = "0.4.4"11101source = "registry+https://github.com/rust-lang/crates.io-index"11102checksum = "49eee6965196b32f882dd2ee85a92b1dbead41b04e53907f269de3b0dc04733c"11103dependencies = [11104 "hmac 0.11.0",11105 "pbkdf2 0.8.0",11106 "schnorrkel",11107 "sha2 0.9.8",11108 "zeroize",11109]1111011111[[package]]11112name = "substrate-build-script-utils"11113version = "3.0.0"11114source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11115dependencies = [11116 "platforms",11117]1111811119[[package]]11120name = "substrate-frame-rpc-system"11121version = "4.0.0-dev"11122source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11123dependencies = [11124 "frame-system-rpc-runtime-api",11125 "futures 0.3.17",11126 "jsonrpc-core",11127 "jsonrpc-core-client",11128 "jsonrpc-derive",11129 "log",11130 "parity-scale-codec",11131 "sc-client-api",11132 "sc-rpc-api",11133 "sc-transaction-pool-api",11134 "sp-api",11135 "sp-block-builder",11136 "sp-blockchain",11137 "sp-core",11138 "sp-runtime",11139]1114011141[[package]]11142name = "substrate-prometheus-endpoint"11143version = "0.9.0"11144source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11145dependencies = [11146 "async-std",11147 "derive_more",11148 "futures-util",11149 "hyper",11150 "log",11151 "prometheus",11152 "tokio 1.13.0",11153]1115411155[[package]]11156name = "substrate-test-client"11157version = "2.0.1"11158source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11159dependencies = [11160 "async-trait",11161 "futures 0.3.17",11162 "hex",11163 "parity-scale-codec",11164 "sc-client-api",11165 "sc-client-db",11166 "sc-consensus",11167 "sc-executor",11168 "sc-light",11169 "sc-offchain",11170 "sc-service",11171 "serde",11172 "serde_json",11173 "sp-blockchain",11174 "sp-consensus",11175 "sp-core",11176 "sp-keyring",11177 "sp-keystore",11178 "sp-runtime",11179 "sp-state-machine",11180]1118111182[[package]]11183name = "substrate-test-utils"11184version = "4.0.0-dev"11185source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11186dependencies = [11187 "futures 0.3.17",11188 "substrate-test-utils-derive",11189 "tokio 1.13.0",11190]1119111192[[package]]11193name = "substrate-test-utils-derive"11194version = "0.10.0-dev"11195source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11196dependencies = [11197 "proc-macro-crate 1.1.0",11198 "proc-macro2",11199 "quote",11200 "syn",11201]1120211203[[package]]11204name = "substrate-wasm-builder"11205version = "5.0.0-dev"11206source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11207dependencies = [11208 "ansi_term 0.12.1",11209 "build-helper",11210 "cargo_metadata",11211 "sp-maybe-compressed-blob",11212 "tempfile",11213 "toml",11214 "walkdir",11215 "wasm-gc-api",11216]1121711218[[package]]11219name = "subtle"11220version = "1.0.0"11221source = "registry+https://github.com/rust-lang/crates.io-index"11222checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"1122311224[[package]]11225name = "subtle"11226version = "2.4.1"11227source = "registry+https://github.com/rust-lang/crates.io-index"11228checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"1122911230[[package]]11231name = "syn"11232version = "1.0.81"11233source = "registry+https://github.com/rust-lang/crates.io-index"11234checksum = "f2afee18b8beb5a596ecb4a2dce128c719b4ba399d34126b9e4396e3f9860966"11235dependencies = [11236 "proc-macro2",11237 "quote",11238 "unicode-xid",11239]1124011241[[package]]11242name = "syn-mid"11243version = "0.5.3"11244source = "registry+https://github.com/rust-lang/crates.io-index"11245checksum = "baa8e7560a164edb1621a55d18a0c59abf49d360f47aa7b821061dd7eea7fac9"11246dependencies = [11247 "proc-macro2",11248 "quote",11249 "syn",11250]1125111252[[package]]11253name = "synstructure"11254version = "0.12.6"11255source = "registry+https://github.com/rust-lang/crates.io-index"11256checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"11257dependencies = [11258 "proc-macro2",11259 "quote",11260 "syn",11261 "unicode-xid",11262]1126311264[[package]]11265name = "tap"11266version = "1.0.1"11267source = "registry+https://github.com/rust-lang/crates.io-index"11268checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"1126911270[[package]]11271name = "target-lexicon"11272version = "0.12.2"11273source = "registry+https://github.com/rust-lang/crates.io-index"11274checksum = "d9bffcddbc2458fa3e6058414599e3c838a022abae82e5c67b4f7f80298d5bff"1127511276[[package]]11277name = "tempfile"11278version = "3.2.0"11279source = "registry+https://github.com/rust-lang/crates.io-index"11280checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"11281dependencies = [11282 "cfg-if 1.0.0",11283 "libc",11284 "rand 0.8.4",11285 "redox_syscall 0.2.10",11286 "remove_dir_all",11287 "winapi 0.3.9",11288]1128911290[[package]]11291name = "termcolor"11292version = "1.1.2"11293source = "registry+https://github.com/rust-lang/crates.io-index"11294checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"11295dependencies = [11296 "winapi-util",11297]1129811299[[package]]11300name = "textwrap"11301version = "0.11.0"11302source = "registry+https://github.com/rust-lang/crates.io-index"11303checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"11304dependencies = [11305 "unicode-width",11306]1130711308[[package]]11309name = "thiserror"11310version = "1.0.30"11311source = "registry+https://github.com/rust-lang/crates.io-index"11312checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"11313dependencies = [11314 "thiserror-impl",11315]1131611317[[package]]11318name = "thiserror-impl"11319version = "1.0.30"11320source = "registry+https://github.com/rust-lang/crates.io-index"11321checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"11322dependencies = [11323 "proc-macro2",11324 "quote",11325 "syn",11326]1132711328[[package]]11329name = "thread_local"11330version = "1.1.3"11331source = "registry+https://github.com/rust-lang/crates.io-index"11332checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"11333dependencies = [11334 "once_cell",11335]1133611337[[package]]11338name = "threadpool"11339version = "1.8.1"11340source = "registry+https://github.com/rust-lang/crates.io-index"11341checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"11342dependencies = [11343 "num_cpus",11344]1134511346[[package]]11347name = "thrift"11348version = "0.13.0"11349source = "registry+https://github.com/rust-lang/crates.io-index"11350checksum = "0c6d965454947cc7266d22716ebfd07b18d84ebaf35eec558586bbb2a8cb6b5b"11351dependencies = [11352 "byteorder",11353 "integer-encoding",11354 "log",11355 "ordered-float",11356 "threadpool",11357]1135811359[[package]]11360name = "time"11361version = "0.1.44"11362source = "registry+https://github.com/rust-lang/crates.io-index"11363checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"11364dependencies = [11365 "libc",11366 "wasi 0.10.0+wasi-snapshot-preview1",11367 "winapi 0.3.9",11368]1136911370[[package]]11371name = "tiny-bip39"11372version = "0.8.2"11373source = "registry+https://github.com/rust-lang/crates.io-index"11374checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d"11375dependencies = [11376 "anyhow",11377 "hmac 0.8.1",11378 "once_cell",11379 "pbkdf2 0.4.0",11380 "rand 0.7.3",11381 "rustc-hash",11382 "sha2 0.9.8",11383 "thiserror",11384 "unicode-normalization",11385 "wasm-bindgen",11386 "zeroize",11387]1138811389[[package]]11390name = "tiny-keccak"11391version = "2.0.2"11392source = "registry+https://github.com/rust-lang/crates.io-index"11393checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"11394dependencies = [11395 "crunchy",11396]1139711398[[package]]11399name = "tinyvec"11400version = "1.5.0"11401source = "registry+https://github.com/rust-lang/crates.io-index"11402checksum = "f83b2a3d4d9091d0abd7eba4dc2710b1718583bd4d8992e2190720ea38f391f7"11403dependencies = [11404 "tinyvec_macros",11405]1140611407[[package]]11408name = "tinyvec_macros"11409version = "0.1.0"11410source = "registry+https://github.com/rust-lang/crates.io-index"11411checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"1141211413[[package]]11414name = "tokio"11415version = "0.2.25"11416source = "registry+https://github.com/rust-lang/crates.io-index"11417checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"11418dependencies = [11419 "bytes 0.5.6",11420 "fnv",11421 "pin-project-lite 0.1.12",11422 "tokio-macros 0.2.6",11423]1142411425[[package]]11426name = "tokio"11427version = "1.13.0"11428source = "registry+https://github.com/rust-lang/crates.io-index"11429checksum = "588b2d10a336da58d877567cd8fb8a14b463e2104910f8132cd054b4b96e29ee"11430dependencies = [11431 "autocfg",11432 "bytes 1.1.0",11433 "libc",11434 "memchr",11435 "mio 0.7.14",11436 "num_cpus",11437 "once_cell",11438 "pin-project-lite 0.2.7",11439 "signal-hook-registry",11440 "tokio-macros 1.5.1",11441 "winapi 0.3.9",11442]1144311444[[package]]11445name = "tokio-macros"11446version = "0.2.6"11447source = "registry+https://github.com/rust-lang/crates.io-index"11448checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"11449dependencies = [11450 "proc-macro2",11451 "quote",11452 "syn",11453]1145411455[[package]]11456name = "tokio-macros"11457version = "1.5.1"11458source = "registry+https://github.com/rust-lang/crates.io-index"11459checksum = "114383b041aa6212c579467afa0075fbbdd0718de036100bc0ba7961d8cb9095"11460dependencies = [11461 "proc-macro2",11462 "quote",11463 "syn",11464]1146511466[[package]]11467name = "tokio-rustls"11468version = "0.22.0"11469source = "registry+https://github.com/rust-lang/crates.io-index"11470checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"11471dependencies = [11472 "rustls",11473 "tokio 1.13.0",11474 "webpki",11475]1147611477[[package]]11478name = "tokio-stream"11479version = "0.1.8"11480source = "registry+https://github.com/rust-lang/crates.io-index"11481checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3"11482dependencies = [11483 "futures-core",11484 "pin-project-lite 0.2.7",11485 "tokio 1.13.0",11486]1148711488[[package]]11489name = "tokio-util"11490version = "0.6.9"11491source = "registry+https://github.com/rust-lang/crates.io-index"11492checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"11493dependencies = [11494 "bytes 1.1.0",11495 "futures-core",11496 "futures-io",11497 "futures-sink",11498 "log",11499 "pin-project-lite 0.2.7",11500 "tokio 1.13.0",11501]1150211503[[package]]11504name = "toml"11505version = "0.5.8"11506source = "registry+https://github.com/rust-lang/crates.io-index"11507checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"11508dependencies = [11509 "serde",11510]1151111512[[package]]11513name = "tower-service"11514version = "0.3.1"11515source = "registry+https://github.com/rust-lang/crates.io-index"11516checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"1151711518[[package]]11519name = "tracing"11520version = "0.1.29"11521source = "registry+https://github.com/rust-lang/crates.io-index"11522checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"11523dependencies = [11524 "cfg-if 1.0.0",11525 "pin-project-lite 0.2.7",11526 "tracing-attributes",11527 "tracing-core",11528]1152911530[[package]]11531name = "tracing-attributes"11532version = "0.1.18"11533source = "registry+https://github.com/rust-lang/crates.io-index"11534checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"11535dependencies = [11536 "proc-macro2",11537 "quote",11538 "syn",11539]1154011541[[package]]11542name = "tracing-core"11543version = "0.1.21"11544source = "registry+https://github.com/rust-lang/crates.io-index"11545checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"11546dependencies = [11547 "lazy_static",11548]1154911550[[package]]11551name = "tracing-futures"11552version = "0.2.5"11553source = "registry+https://github.com/rust-lang/crates.io-index"11554checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"11555dependencies = [11556 "pin-project 1.0.8",11557 "tracing",11558]1155911560[[package]]11561name = "tracing-log"11562version = "0.1.2"11563source = "registry+https://github.com/rust-lang/crates.io-index"11564checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3"11565dependencies = [11566 "lazy_static",11567 "log",11568 "tracing-core",11569]1157011571[[package]]11572name = "tracing-serde"11573version = "0.1.2"11574source = "registry+https://github.com/rust-lang/crates.io-index"11575checksum = "fb65ea441fbb84f9f6748fd496cf7f63ec9af5bca94dd86456978d055e8eb28b"11576dependencies = [11577 "serde",11578 "tracing-core",11579]1158011581[[package]]11582name = "tracing-subscriber"11583version = "0.2.25"11584source = "registry+https://github.com/rust-lang/crates.io-index"11585checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"11586dependencies = [11587 "ansi_term 0.12.1",11588 "chrono",11589 "lazy_static",11590 "matchers",11591 "regex",11592 "serde",11593 "serde_json",11594 "sharded-slab",11595 "smallvec",11596 "thread_local",11597 "tracing",11598 "tracing-core",11599 "tracing-log",11600 "tracing-serde",11601]1160211603[[package]]11604name = "trie-db"11605version = "0.22.6"11606source = "registry+https://github.com/rust-lang/crates.io-index"11607checksum = "9eac131e334e81b6b3be07399482042838adcd7957aa0010231d0813e39e02fa"11608dependencies = [11609 "hash-db",11610 "hashbrown",11611 "log",11612 "rustc-hex",11613 "smallvec",11614]1161511616[[package]]11617name = "trie-root"11618version = "0.16.0"11619source = "registry+https://github.com/rust-lang/crates.io-index"11620checksum = "652931506d2c1244d7217a70b99f56718a7b4161b37f04e7cd868072a99f68cd"11621dependencies = [11622 "hash-db",11623]1162411625[[package]]11626name = "triehash"11627version = "0.8.4"11628source = "registry+https://github.com/rust-lang/crates.io-index"11629checksum = "a1631b201eb031b563d2e85ca18ec8092508e262a3196ce9bd10a67ec87b9f5c"11630dependencies = [11631 "hash-db",11632 "rlp",11633]1163411635[[package]]11636name = "trust-dns-proto"11637version = "0.20.3"11638source = "registry+https://github.com/rust-lang/crates.io-index"11639checksum = "ad0d7f5db438199a6e2609debe3f69f808d074e0a2888ee0bccb45fe234d03f4"11640dependencies = [11641 "async-trait",11642 "cfg-if 1.0.0",11643 "data-encoding",11644 "enum-as-inner",11645 "futures-channel",11646 "futures-io",11647 "futures-util",11648 "idna 0.2.3",11649 "ipnet",11650 "lazy_static",11651 "log",11652 "rand 0.8.4",11653 "smallvec",11654 "thiserror",11655 "tinyvec",11656 "url 2.2.2",11657]1165811659[[package]]11660name = "trust-dns-resolver"11661version = "0.20.3"11662source = "registry+https://github.com/rust-lang/crates.io-index"11663checksum = "f6ad17b608a64bd0735e67bde16b0636f8aa8591f831a25d18443ed00a699770"11664dependencies = [11665 "cfg-if 1.0.0",11666 "futures-util",11667 "ipconfig",11668 "lazy_static",11669 "log",11670 "lru-cache",11671 "parking_lot 0.11.2",11672 "resolv-conf",11673 "smallvec",11674 "thiserror",11675 "trust-dns-proto",11676]1167711678[[package]]11679name = "try-lock"11680version = "0.2.3"11681source = "registry+https://github.com/rust-lang/crates.io-index"11682checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"1168311684[[package]]11685name = "try-runtime-cli"11686version = "0.10.0-dev"11687source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11688dependencies = [11689 "jsonrpsee-ws-client",11690 "log",11691 "parity-scale-codec",11692 "remote-externalities",11693 "sc-chain-spec",11694 "sc-cli",11695 "sc-executor",11696 "sc-service",11697 "serde",11698 "sp-core",11699 "sp-externalities",11700 "sp-io",11701 "sp-keystore",11702 "sp-runtime",11703 "sp-state-machine",11704 "sp-version",11705 "structopt",11706]1170711708[[package]]11709name = "twox-hash"11710version = "1.6.1"11711source = "registry+https://github.com/rust-lang/crates.io-index"11712checksum = "1f559b464de2e2bdabcac6a210d12e9b5a5973c251e102c44c585c71d51bd78e"11713dependencies = [11714 "cfg-if 1.0.0",11715 "rand 0.8.4",11716 "static_assertions",11717]1171811719[[package]]11720name = "typenum"11721version = "1.14.0"11722source = "registry+https://github.com/rust-lang/crates.io-index"11723checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"1172411725[[package]]11726name = "uc-rpc"11727version = "0.1.0"11728dependencies = [11729 "jsonrpc-core",11730 "jsonrpc-core-client",11731 "jsonrpc-derive",11732 "nft-data-structs",11733 "pallet-common",11734 "parity-scale-codec",11735 "sp-api",11736 "sp-blockchain",11737 "sp-core",11738 "sp-rpc",11739 "sp-runtime",11740 "up-rpc",11741]1174211743[[package]]11744name = "ucd-trie"11745version = "0.1.3"11746source = "registry+https://github.com/rust-lang/crates.io-index"11747checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"1174811749[[package]]11750name = "uint"11751version = "0.9.1"11752source = "registry+https://github.com/rust-lang/crates.io-index"11753checksum = "6470ab50f482bde894a037a57064480a246dbfdd5960bd65a44824693f08da5f"11754dependencies = [11755 "byteorder",11756 "crunchy",11757 "hex",11758 "static_assertions",11759]1176011761[[package]]11762name = "unicase"11763version = "2.6.0"11764source = "registry+https://github.com/rust-lang/crates.io-index"11765checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"11766dependencies = [11767 "version_check",11768]1176911770[[package]]11771name = "unicode-bidi"11772version = "0.3.7"11773source = "registry+https://github.com/rust-lang/crates.io-index"11774checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"1177511776[[package]]11777name = "unicode-normalization"11778version = "0.1.19"11779source = "registry+https://github.com/rust-lang/crates.io-index"11780checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"11781dependencies = [11782 "tinyvec",11783]1178411785[[package]]11786name = "unicode-segmentation"11787version = "1.8.0"11788source = "registry+https://github.com/rust-lang/crates.io-index"11789checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"1179011791[[package]]11792name = "unicode-width"11793version = "0.1.9"11794source = "registry+https://github.com/rust-lang/crates.io-index"11795checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"1179611797[[package]]11798name = "unicode-xid"11799version = "0.2.2"11800source = "registry+https://github.com/rust-lang/crates.io-index"11801checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"1180211803[[package]]11804name = "universal-hash"11805version = "0.4.1"11806source = "registry+https://github.com/rust-lang/crates.io-index"11807checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"11808dependencies = [11809 "generic-array 0.14.4",11810 "subtle 2.4.1",11811]1181211813[[package]]11814name = "unsigned-varint"11815version = "0.5.1"11816source = "registry+https://github.com/rust-lang/crates.io-index"11817checksum = "f7fdeedbf205afadfe39ae559b75c3240f24e257d0ca27e85f85cb82aa19ac35"1181811819[[package]]11820name = "unsigned-varint"11821version = "0.6.0"11822source = "registry+https://github.com/rust-lang/crates.io-index"11823checksum = "35581ff83d4101e58b582e607120c7f5ffb17e632a980b1f38334d76b36908b2"11824dependencies = [11825 "asynchronous-codec 0.5.0",11826 "bytes 1.1.0",11827 "futures-io",11828 "futures-util",11829]1183011831[[package]]11832name = "unsigned-varint"11833version = "0.7.0"11834source = "registry+https://github.com/rust-lang/crates.io-index"11835checksum = "5f8d425fafb8cd76bc3f22aace4af471d3156301d7508f2107e98fbeae10bc7f"11836dependencies = [11837 "asynchronous-codec 0.6.0",11838 "bytes 1.1.0",11839 "futures-io",11840 "futures-util",11841]1184211843[[package]]11844name = "untrusted"11845version = "0.7.1"11846source = "registry+https://github.com/rust-lang/crates.io-index"11847checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"1184811849[[package]]11850name = "up-rpc"11851version = "0.1.0"11852dependencies = [11853 "nft-data-structs",11854 "pallet-common",11855 "parity-scale-codec",11856 "sp-api",11857 "sp-core",11858 "sp-runtime",11859 "sp-std",11860]1186111862[[package]]11863name = "up-sponsorship"11864version = "0.1.0"11865source = "git+https://github.com/UniqueNetwork/pallet-sponsoring#ab8b91e9350a31133f3a3e4f52a84c6de4108e95"11866dependencies = [11867 "impl-trait-for-tuples 0.2.1",11868]1186911870[[package]]11871name = "url"11872version = "1.7.2"11873source = "registry+https://github.com/rust-lang/crates.io-index"11874checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"11875dependencies = [11876 "idna 0.1.5",11877 "matches",11878 "percent-encoding 1.0.1",11879]1188011881[[package]]11882name = "url"11883version = "2.2.2"11884source = "registry+https://github.com/rust-lang/crates.io-index"11885checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"11886dependencies = [11887 "form_urlencoded",11888 "idna 0.2.3",11889 "matches",11890 "percent-encoding 2.1.0",11891]1189211893[[package]]11894name = "value-bag"11895version = "1.0.0-alpha.8"11896source = "registry+https://github.com/rust-lang/crates.io-index"11897checksum = "79923f7731dc61ebfba3633098bf3ac533bbd35ccd8c57e7088d9a5eebe0263f"11898dependencies = [11899 "ctor",11900 "version_check",11901]1190211903[[package]]11904name = "vcpkg"11905version = "0.2.15"11906source = "registry+https://github.com/rust-lang/crates.io-index"11907checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"1190811909[[package]]11910name = "vec_map"11911version = "0.8.2"11912source = "registry+https://github.com/rust-lang/crates.io-index"11913checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"1191411915[[package]]11916name = "version_check"11917version = "0.9.3"11918source = "registry+https://github.com/rust-lang/crates.io-index"11919checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"1192011921[[package]]11922name = "void"11923version = "1.0.2"11924source = "registry+https://github.com/rust-lang/crates.io-index"11925checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"1192611927[[package]]11928name = "waker-fn"11929version = "1.1.0"11930source = "registry+https://github.com/rust-lang/crates.io-index"11931checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"1193211933[[package]]11934name = "walkdir"11935version = "2.3.2"11936source = "registry+https://github.com/rust-lang/crates.io-index"11937checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"11938dependencies = [11939 "same-file",11940 "winapi 0.3.9",11941 "winapi-util",11942]1194311944[[package]]11945name = "want"11946version = "0.3.0"11947source = "registry+https://github.com/rust-lang/crates.io-index"11948checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"11949dependencies = [11950 "log",11951 "try-lock",11952]1195311954[[package]]11955name = "wasi"11956version = "0.9.0+wasi-snapshot-preview1"11957source = "registry+https://github.com/rust-lang/crates.io-index"11958checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"1195911960[[package]]11961name = "wasi"11962version = "0.10.0+wasi-snapshot-preview1"11963source = "registry+https://github.com/rust-lang/crates.io-index"11964checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"1196511966[[package]]11967name = "wasm-bindgen"11968version = "0.2.78"11969source = "registry+https://github.com/rust-lang/crates.io-index"11970checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"11971dependencies = [11972 "cfg-if 1.0.0",11973 "wasm-bindgen-macro",11974]1197511976[[package]]11977name = "wasm-bindgen-backend"11978version = "0.2.78"11979source = "registry+https://github.com/rust-lang/crates.io-index"11980checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"11981dependencies = [11982 "bumpalo",11983 "lazy_static",11984 "log",11985 "proc-macro2",11986 "quote",11987 "syn",11988 "wasm-bindgen-shared",11989]1199011991[[package]]11992name = "wasm-bindgen-futures"11993version = "0.4.28"11994source = "registry+https://github.com/rust-lang/crates.io-index"11995checksum = "8e8d7523cb1f2a4c96c1317ca690031b714a51cc14e05f712446691f413f5d39"11996dependencies = [11997 "cfg-if 1.0.0",11998 "js-sys",11999 "wasm-bindgen",12000 "web-sys",12001]1200212003[[package]]12004name = "wasm-bindgen-macro"12005version = "0.2.78"12006source = "registry+https://github.com/rust-lang/crates.io-index"12007checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"12008dependencies = [12009 "quote",12010 "wasm-bindgen-macro-support",12011]1201212013[[package]]12014name = "wasm-bindgen-macro-support"12015version = "0.2.78"12016source = "registry+https://github.com/rust-lang/crates.io-index"12017checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"12018dependencies = [12019 "proc-macro2",12020 "quote",12021 "syn",12022 "wasm-bindgen-backend",12023 "wasm-bindgen-shared",12024]1202512026[[package]]12027name = "wasm-bindgen-shared"12028version = "0.2.78"12029source = "registry+https://github.com/rust-lang/crates.io-index"12030checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"1203112032[[package]]12033name = "wasm-gc-api"12034version = "0.1.11"12035source = "registry+https://github.com/rust-lang/crates.io-index"12036checksum = "d0c32691b6c7e6c14e7f8fd55361a9088b507aa49620fcd06c09b3a1082186b9"12037dependencies = [12038 "log",12039 "parity-wasm 0.32.0",12040 "rustc-demangle",12041]1204212043[[package]]12044name = "wasm-timer"12045version = "0.2.5"12046source = "registry+https://github.com/rust-lang/crates.io-index"12047checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"12048dependencies = [12049 "futures 0.3.17",12050 "js-sys",12051 "parking_lot 0.11.2",12052 "pin-utils",12053 "wasm-bindgen",12054 "wasm-bindgen-futures",12055 "web-sys",12056]1205712058[[package]]12059name = "wasmi"12060version = "0.9.1"12061source = "registry+https://github.com/rust-lang/crates.io-index"12062checksum = "ca00c5147c319a8ec91ec1a0edbec31e566ce2c9cc93b3f9bb86a9efd0eb795d"12063dependencies = [12064 "downcast-rs",12065 "libc",12066 "libm",12067 "memory_units",12068 "num-rational 0.2.4",12069 "num-traits",12070 "parity-wasm 0.42.2",12071 "wasmi-validation",12072]1207312074[[package]]12075name = "wasmi-validation"12076version = "0.4.1"12077source = "registry+https://github.com/rust-lang/crates.io-index"12078checksum = "165343ecd6c018fc09ebcae280752702c9a2ef3e6f8d02f1cfcbdb53ef6d7937"12079dependencies = [12080 "parity-wasm 0.42.2",12081]1208212083[[package]]12084name = "wasmparser"12085version = "0.80.2"12086source = "registry+https://github.com/rust-lang/crates.io-index"12087checksum = "449167e2832691a1bff24cde28d2804e90e09586a448c8e76984792c44334a6b"1208812089[[package]]12090name = "wasmtime"12091version = "0.30.0"12092source = "registry+https://github.com/rust-lang/crates.io-index"12093checksum = "899b1e5261e3d3420860dacfb952871ace9d7ba9f953b314f67aaf9f8e2a4d89"12094dependencies = [12095 "anyhow",12096 "backtrace",12097 "bincode",12098 "cfg-if 1.0.0",12099 "cpp_demangle",12100 "indexmap",12101 "lazy_static",12102 "libc",12103 "log",12104 "object 0.26.2",12105 "paste",12106 "psm",12107 "rayon",12108 "region",12109 "rustc-demangle",12110 "serde",12111 "target-lexicon",12112 "wasmparser",12113 "wasmtime-cache",12114 "wasmtime-cranelift",12115 "wasmtime-environ",12116 "wasmtime-jit",12117 "wasmtime-runtime",12118 "winapi 0.3.9",12119]1212012121[[package]]12122name = "wasmtime-cache"12123version = "0.30.0"12124source = "registry+https://github.com/rust-lang/crates.io-index"12125checksum = "e2493b81d7a9935f7af15e06beec806f256bc974a90a843685f3d61f2fc97058"12126dependencies = [12127 "anyhow",12128 "base64 0.13.0",12129 "bincode",12130 "directories-next",12131 "errno",12132 "file-per-thread-logger",12133 "libc",12134 "log",12135 "serde",12136 "sha2 0.9.8",12137 "toml",12138 "winapi 0.3.9",12139 "zstd",12140]1214112142[[package]]12143name = "wasmtime-cranelift"12144version = "0.30.0"12145source = "registry+https://github.com/rust-lang/crates.io-index"12146checksum = "99706bacdf5143f7f967d417f0437cce83a724cf4518cb1a3ff40e519d793021"12147dependencies = [12148 "anyhow",12149 "cranelift-codegen",12150 "cranelift-entity",12151 "cranelift-frontend",12152 "cranelift-native",12153 "cranelift-wasm",12154 "gimli 0.25.0",12155 "more-asserts",12156 "object 0.26.2",12157 "target-lexicon",12158 "thiserror",12159 "wasmparser",12160 "wasmtime-environ",12161]1216212163[[package]]12164name = "wasmtime-environ"12165version = "0.30.0"12166source = "registry+https://github.com/rust-lang/crates.io-index"12167checksum = "ac42cb562a2f98163857605f02581d719a410c5abe93606128c59a10e84de85b"12168dependencies = [12169 "anyhow",12170 "cfg-if 1.0.0",12171 "cranelift-entity",12172 "gimli 0.25.0",12173 "indexmap",12174 "log",12175 "more-asserts",12176 "object 0.26.2",12177 "serde",12178 "target-lexicon",12179 "thiserror",12180 "wasmparser",12181 "wasmtime-types",12182]1218312184[[package]]12185name = "wasmtime-jit"12186version = "0.30.0"12187source = "registry+https://github.com/rust-lang/crates.io-index"12188checksum = "24f46dd757225f29a419be415ea6fb8558df9b0194f07e3a6a9c99d0e14dd534"12189dependencies = [12190 "addr2line 0.16.0",12191 "anyhow",12192 "bincode",12193 "cfg-if 1.0.0",12194 "gimli 0.25.0",12195 "libc",12196 "log",12197 "more-asserts",12198 "object 0.26.2",12199 "region",12200 "serde",12201 "target-lexicon",12202 "thiserror",12203 "wasmparser",12204 "wasmtime-environ",12205 "wasmtime-runtime",12206 "winapi 0.3.9",12207]1220812209[[package]]12210name = "wasmtime-runtime"12211version = "0.30.0"12212source = "registry+https://github.com/rust-lang/crates.io-index"12213checksum = "0122215a44923f395487048cb0a1d60b5b32c73aab15cf9364b798dbaff0996f"12214dependencies = [12215 "anyhow",12216 "backtrace",12217 "cc",12218 "cfg-if 1.0.0",12219 "indexmap",12220 "lazy_static",12221 "libc",12222 "log",12223 "mach",12224 "memoffset",12225 "more-asserts",12226 "rand 0.8.4",12227 "region",12228 "thiserror",12229 "wasmtime-environ",12230 "winapi 0.3.9",12231]1223212233[[package]]12234name = "wasmtime-types"12235version = "0.30.0"12236source = "registry+https://github.com/rust-lang/crates.io-index"12237checksum = "f9b01caf8a204ef634ebac99700e77ba716d3ebbb68a1abbc2ceb6b16dbec9e4"12238dependencies = [12239 "cranelift-entity",12240 "serde",12241 "thiserror",12242 "wasmparser",12243]1224412245[[package]]12246name = "web-sys"12247version = "0.3.55"12248source = "registry+https://github.com/rust-lang/crates.io-index"12249checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"12250dependencies = [12251 "js-sys",12252 "wasm-bindgen",12253]1225412255[[package]]12256name = "webpki"12257version = "0.21.4"12258source = "registry+https://github.com/rust-lang/crates.io-index"12259checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"12260dependencies = [12261 "ring",12262 "untrusted",12263]1226412265[[package]]12266name = "webpki-roots"12267version = "0.21.1"12268source = "registry+https://github.com/rust-lang/crates.io-index"12269checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"12270dependencies = [12271 "webpki",12272]1227312274[[package]]12275name = "wepoll-ffi"12276version = "0.1.2"12277source = "registry+https://github.com/rust-lang/crates.io-index"12278checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"12279dependencies = [12280 "cc",12281]1228212283[[package]]12284name = "westend-runtime"12285version = "0.9.12"12286source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12287dependencies = [12288 "beefy-primitives",12289 "bitvec 0.20.4",12290 "frame-benchmarking",12291 "frame-election-provider-support",12292 "frame-executive",12293 "frame-support",12294 "frame-system",12295 "frame-system-benchmarking",12296 "frame-system-rpc-runtime-api",12297 "frame-try-runtime",12298 "hex-literal",12299 "log",12300 "pallet-authority-discovery",12301 "pallet-authorship",12302 "pallet-babe",12303 "pallet-bags-list",12304 "pallet-balances",12305 "pallet-collective",12306 "pallet-democracy",12307 "pallet-election-provider-multi-phase",12308 "pallet-elections-phragmen",12309 "pallet-grandpa",12310 "pallet-identity",12311 "pallet-im-online",12312 "pallet-indices",12313 "pallet-membership",12314 "pallet-mmr-primitives",12315 "pallet-multisig",12316 "pallet-nicks",12317 "pallet-offences",12318 "pallet-offences-benchmarking",12319 "pallet-proxy",12320 "pallet-recovery",12321 "pallet-scheduler",12322 "pallet-session",12323 "pallet-session-benchmarking",12324 "pallet-society",12325 "pallet-staking",12326 "pallet-staking-reward-curve",12327 "pallet-sudo",12328 "pallet-timestamp",12329 "pallet-transaction-payment",12330 "pallet-transaction-payment-rpc-runtime-api",12331 "pallet-treasury",12332 "pallet-utility",12333 "pallet-vesting",12334 "pallet-xcm",12335 "pallet-xcm-benchmarks",12336 "parity-scale-codec",12337 "polkadot-parachain",12338 "polkadot-primitives",12339 "polkadot-runtime-common",12340 "polkadot-runtime-parachains",12341 "rustc-hex",12342 "scale-info",12343 "serde",12344 "serde_derive",12345 "smallvec",12346 "sp-api",12347 "sp-authority-discovery",12348 "sp-block-builder",12349 "sp-consensus-babe",12350 "sp-core",12351 "sp-inherents",12352 "sp-io",12353 "sp-npos-elections",12354 "sp-offchain",12355 "sp-runtime",12356 "sp-session",12357 "sp-staking",12358 "sp-std",12359 "sp-transaction-pool",12360 "sp-version",12361 "substrate-wasm-builder",12362 "xcm",12363 "xcm-builder",12364 "xcm-executor",12365]1236612367[[package]]12368name = "which"12369version = "4.2.2"12370source = "registry+https://github.com/rust-lang/crates.io-index"12371checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9"12372dependencies = [12373 "either",12374 "lazy_static",12375 "libc",12376]1237712378[[package]]12379name = "widestring"12380version = "0.4.3"12381source = "registry+https://github.com/rust-lang/crates.io-index"12382checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"1238312384[[package]]12385name = "winapi"12386version = "0.2.8"12387source = "registry+https://github.com/rust-lang/crates.io-index"12388checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"1238912390[[package]]12391name = "winapi"12392version = "0.3.9"12393source = "registry+https://github.com/rust-lang/crates.io-index"12394checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"12395dependencies = [12396 "winapi-i686-pc-windows-gnu",12397 "winapi-x86_64-pc-windows-gnu",12398]1239912400[[package]]12401name = "winapi-build"12402version = "0.1.1"12403source = "registry+https://github.com/rust-lang/crates.io-index"12404checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"1240512406[[package]]12407name = "winapi-i686-pc-windows-gnu"12408version = "0.4.0"12409source = "registry+https://github.com/rust-lang/crates.io-index"12410checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"1241112412[[package]]12413name = "winapi-util"12414version = "0.1.5"12415source = "registry+https://github.com/rust-lang/crates.io-index"12416checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"12417dependencies = [12418 "winapi 0.3.9",12419]1242012421[[package]]12422name = "winapi-x86_64-pc-windows-gnu"12423version = "0.4.0"12424source = "registry+https://github.com/rust-lang/crates.io-index"12425checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"1242612427[[package]]12428name = "winreg"12429version = "0.6.2"12430source = "registry+https://github.com/rust-lang/crates.io-index"12431checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"12432dependencies = [12433 "winapi 0.3.9",12434]1243512436[[package]]12437name = "ws2_32-sys"12438version = "0.2.1"12439source = "registry+https://github.com/rust-lang/crates.io-index"12440checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"12441dependencies = [12442 "winapi 0.2.8",12443 "winapi-build",12444]1244512446[[package]]12447name = "wyz"12448version = "0.2.0"12449source = "registry+https://github.com/rust-lang/crates.io-index"12450checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"1245112452[[package]]12453name = "x25519-dalek"12454version = "1.1.1"12455source = "registry+https://github.com/rust-lang/crates.io-index"12456checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f"12457dependencies = [12458 "curve25519-dalek 3.2.0",12459 "rand_core 0.5.1",12460 "zeroize",12461]1246212463[[package]]12464name = "xcm"12465version = "0.9.12"12466source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12467dependencies = [12468 "derivative",12469 "impl-trait-for-tuples 0.2.1",12470 "log",12471 "parity-scale-codec",12472 "scale-info",12473 "xcm-procedural",12474]1247512476[[package]]12477name = "xcm-builder"12478version = "0.9.12"12479source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12480dependencies = [12481 "frame-support",12482 "frame-system",12483 "log",12484 "pallet-transaction-payment",12485 "parity-scale-codec",12486 "polkadot-parachain",12487 "scale-info",12488 "sp-arithmetic",12489 "sp-io",12490 "sp-runtime",12491 "sp-std",12492 "xcm",12493 "xcm-executor",12494]1249512496[[package]]12497name = "xcm-executor"12498version = "0.9.12"12499source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12500dependencies = [12501 "frame-benchmarking",12502 "frame-support",12503 "impl-trait-for-tuples 0.2.1",12504 "log",12505 "parity-scale-codec",12506 "sp-arithmetic",12507 "sp-core",12508 "sp-io",12509 "sp-runtime",12510 "sp-std",12511 "xcm",12512]1251312514[[package]]12515name = "xcm-procedural"12516version = "0.1.0"12517source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12518dependencies = [12519 "proc-macro2",12520 "quote",12521 "syn",12522]1252312524[[package]]12525name = "yamux"12526version = "0.9.0"12527source = "registry+https://github.com/rust-lang/crates.io-index"12528checksum = "e7d9028f208dd5e63c614be69f115c1b53cacc1111437d4c765185856666c107"12529dependencies = [12530 "futures 0.3.17",12531 "log",12532 "nohash-hasher",12533 "parking_lot 0.11.2",12534 "rand 0.8.4",12535 "static_assertions",12536]1253712538[[package]]12539name = "yansi"12540version = "0.5.0"12541source = "registry+https://github.com/rust-lang/crates.io-index"12542checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"1254312544[[package]]12545name = "zeroize"12546version = "1.4.2"12547source = "registry+https://github.com/rust-lang/crates.io-index"12548checksum = "bf68b08513768deaa790264a7fac27a58cbf2705cfcdc9448362229217d7e970"12549dependencies = [12550 "zeroize_derive",12551]1255212553[[package]]12554name = "zeroize_derive"12555version = "1.2.0"12556source = "registry+https://github.com/rust-lang/crates.io-index"12557checksum = "bdff2024a851a322b08f179173ae2ba620445aef1e838f0c196820eade4ae0c7"12558dependencies = [12559 "proc-macro2",12560 "quote",12561 "syn",12562 "synstructure",12563]1256412565[[package]]12566name = "zstd"12567version = "0.9.0+zstd.1.5.0"12568source = "registry+https://github.com/rust-lang/crates.io-index"12569checksum = "07749a5dc2cb6b36661290245e350f15ec3bbb304e493db54a1d354480522ccd"12570dependencies = [12571 "zstd-safe",12572]1257312574[[package]]12575name = "zstd-safe"12576version = "4.1.1+zstd.1.5.0"12577source = "registry+https://github.com/rust-lang/crates.io-index"12578checksum = "c91c90f2c593b003603e5e0493c837088df4469da25aafff8bce42ba48caf079"12579dependencies = [12580 "libc",12581 "zstd-sys",12582]1258312584[[package]]12585name = "zstd-sys"12586version = "1.6.1+zstd.1.5.0"12587source = "registry+https://github.com/rust-lang/crates.io-index"12588checksum = "615120c7a2431d16cf1cf979e7fc31ba7a5b5e5707b29c8a99e5dbf8a8392a33"12589dependencies = [12590 "cc",12591 "libc",12592]