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 = "3.0.0"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 = "3.0.0"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 "pallet-aura",5101 "pallet-balances",5102 "pallet-common",5103 "pallet-ethereum",5104 "pallet-evm",5105 "pallet-evm-coder-substrate",5106 "pallet-evm-contract-helpers",5107 "pallet-evm-migration",5108 "pallet-evm-transaction-payment",5109 "pallet-fungible",5110 "pallet-inflation",5111 "pallet-nft",5112 "pallet-nft-charge-transaction",5113 "pallet-nft-transaction-payment",5114 "pallet-nonfungible",5115 "pallet-randomness-collective-flip",5116 "pallet-refungible",5117 "pallet-sudo",5118 "pallet-timestamp",5119 "pallet-transaction-payment",5120 "pallet-transaction-payment-rpc-runtime-api",5121 "pallet-treasury",5122 "pallet-unq-scheduler",5123 "pallet-vesting",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 = "owning_ref"5312version = "0.4.1"5313source = "registry+https://github.com/rust-lang/crates.io-index"5314checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce"5315dependencies = [5316 "stable_deref_trait",5317]53185319[[package]]5320name = "pallet-aura"5321version = "4.0.0-dev"5322source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5323dependencies = [5324 "frame-support",5325 "frame-system",5326 "pallet-timestamp",5327 "parity-scale-codec",5328 "scale-info",5329 "sp-application-crypto",5330 "sp-consensus-aura",5331 "sp-runtime",5332 "sp-std",5333]53345335[[package]]5336name = "pallet-authority-discovery"5337version = "4.0.0-dev"5338source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5339dependencies = [5340 "frame-support",5341 "frame-system",5342 "pallet-session",5343 "parity-scale-codec",5344 "scale-info",5345 "sp-application-crypto",5346 "sp-authority-discovery",5347 "sp-runtime",5348 "sp-std",5349]53505351[[package]]5352name = "pallet-authorship"5353version = "4.0.0-dev"5354source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5355dependencies = [5356 "frame-support",5357 "frame-system",5358 "impl-trait-for-tuples 0.2.1",5359 "parity-scale-codec",5360 "scale-info",5361 "sp-authorship",5362 "sp-runtime",5363 "sp-std",5364]53655366[[package]]5367name = "pallet-babe"5368version = "4.0.0-dev"5369source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5370dependencies = [5371 "frame-benchmarking",5372 "frame-support",5373 "frame-system",5374 "log",5375 "pallet-authorship",5376 "pallet-session",5377 "pallet-timestamp",5378 "parity-scale-codec",5379 "scale-info",5380 "sp-application-crypto",5381 "sp-consensus-babe",5382 "sp-consensus-vrf",5383 "sp-io",5384 "sp-runtime",5385 "sp-session",5386 "sp-staking",5387 "sp-std",5388]53895390[[package]]5391name = "pallet-bags-list"5392version = "4.0.0-dev"5393source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5394dependencies = [5395 "frame-benchmarking",5396 "frame-election-provider-support",5397 "frame-support",5398 "frame-system",5399 "log",5400 "pallet-balances",5401 "parity-scale-codec",5402 "scale-info",5403 "sp-core",5404 "sp-io",5405 "sp-runtime",5406 "sp-std",5407 "sp-tracing",5408]54095410[[package]]5411name = "pallet-balances"5412version = "4.0.0-dev"5413source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5414dependencies = [5415 "frame-benchmarking",5416 "frame-support",5417 "frame-system",5418 "log",5419 "parity-scale-codec",5420 "scale-info",5421 "sp-runtime",5422 "sp-std",5423]54245425[[package]]5426name = "pallet-beefy"5427version = "4.0.0-dev"5428source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5429dependencies = [5430 "beefy-primitives",5431 "frame-support",5432 "frame-system",5433 "pallet-session",5434 "parity-scale-codec",5435 "scale-info",5436 "serde",5437 "sp-runtime",5438 "sp-std",5439]54405441[[package]]5442name = "pallet-beefy-mmr"5443version = "4.0.0-dev"5444source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5445dependencies = [5446 "beefy-merkle-tree",5447 "beefy-primitives",5448 "frame-support",5449 "frame-system",5450 "hex",5451 "libsecp256k1 0.7.0",5452 "log",5453 "pallet-beefy",5454 "pallet-mmr",5455 "pallet-mmr-primitives",5456 "pallet-session",5457 "parity-scale-codec",5458 "scale-info",5459 "serde",5460 "sp-core",5461 "sp-io",5462 "sp-runtime",5463 "sp-std",5464]54655466[[package]]5467name = "pallet-bounties"5468version = "4.0.0-dev"5469source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5470dependencies = [5471 "frame-benchmarking",5472 "frame-support",5473 "frame-system",5474 "log",5475 "pallet-treasury",5476 "parity-scale-codec",5477 "scale-info",5478 "sp-core",5479 "sp-io",5480 "sp-runtime",5481 "sp-std",5482]54835484[[package]]5485name = "pallet-bridge-dispatch"5486version = "0.1.0"5487source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"5488dependencies = [5489 "bp-message-dispatch",5490 "bp-runtime",5491 "frame-support",5492 "frame-system",5493 "log",5494 "parity-scale-codec",5495 "scale-info",5496 "sp-core",5497 "sp-runtime",5498 "sp-std",5499]55005501[[package]]5502name = "pallet-bridge-grandpa"5503version = "0.1.0"5504source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"5505dependencies = [5506 "bp-header-chain",5507 "bp-runtime",5508 "bp-test-utils",5509 "finality-grandpa",5510 "frame-support",5511 "frame-system",5512 "log",5513 "num-traits",5514 "parity-scale-codec",5515 "scale-info",5516 "serde",5517 "sp-finality-grandpa",5518 "sp-runtime",5519 "sp-std",5520 "sp-trie",5521]55225523[[package]]5524name = "pallet-bridge-messages"5525version = "0.1.0"5526source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"5527dependencies = [5528 "bitvec 0.20.4",5529 "bp-message-dispatch",5530 "bp-messages",5531 "bp-rialto",5532 "bp-runtime",5533 "frame-support",5534 "frame-system",5535 "log",5536 "num-traits",5537 "parity-scale-codec",5538 "scale-info",5539 "serde",5540 "sp-core",5541 "sp-runtime",5542 "sp-std",5543]55445545[[package]]5546name = "pallet-collective"5547version = "4.0.0-dev"5548source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5549dependencies = [5550 "frame-benchmarking",5551 "frame-support",5552 "frame-system",5553 "log",5554 "parity-scale-codec",5555 "scale-info",5556 "sp-core",5557 "sp-io",5558 "sp-runtime",5559 "sp-std",5560]55615562[[package]]5563name = "pallet-common"5564version = "0.1.0"5565dependencies = [5566 "evm-coder",5567 "frame-support",5568 "frame-system",5569 "nft-data-structs",5570 "pallet-evm",5571 "pallet-evm-coder-substrate",5572 "parity-scale-codec",5573 "scale-info",5574 "serde",5575 "sp-core",5576 "sp-runtime",5577 "sp-std",5578]55795580[[package]]5581name = "pallet-contract-helpers"5582version = "0.1.0"5583dependencies = [5584 "frame-support",5585 "frame-system",5586 "pallet-contracts",5587 "parity-scale-codec",5588 "scale-info",5589 "sp-runtime",5590 "sp-std",5591 "up-sponsorship",5592]55935594[[package]]5595name = "pallet-contracts"5596version = "4.0.0-dev"5597source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5598dependencies = [5599 "bitflags",5600 "frame-benchmarking",5601 "frame-support",5602 "frame-system",5603 "libsecp256k1 0.6.0",5604 "log",5605 "pallet-contracts-primitives",5606 "pallet-contracts-proc-macro",5607 "parity-scale-codec",5608 "pwasm-utils",5609 "rand 0.7.3",5610 "scale-info",5611 "serde",5612 "smallvec",5613 "sp-core",5614 "sp-io",5615 "sp-runtime",5616 "sp-sandbox",5617 "sp-std",5618 "wasmi-validation",5619]56205621[[package]]5622name = "pallet-contracts-primitives"5623version = "4.0.0-dev"5624source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5625dependencies = [5626 "bitflags",5627 "parity-scale-codec",5628 "scale-info",5629 "serde",5630 "sp-core",5631 "sp-runtime",5632 "sp-std",5633]56345635[[package]]5636name = "pallet-contracts-proc-macro"5637version = "4.0.0-dev"5638source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5639dependencies = [5640 "proc-macro2",5641 "quote",5642 "syn",5643]56445645[[package]]5646name = "pallet-democracy"5647version = "4.0.0-dev"5648source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5649dependencies = [5650 "frame-benchmarking",5651 "frame-support",5652 "frame-system",5653 "parity-scale-codec",5654 "scale-info",5655 "serde",5656 "sp-io",5657 "sp-runtime",5658 "sp-std",5659]56605661[[package]]5662name = "pallet-election-provider-multi-phase"5663version = "4.0.0-dev"5664source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5665dependencies = [5666 "frame-benchmarking",5667 "frame-election-provider-support",5668 "frame-support",5669 "frame-system",5670 "log",5671 "parity-scale-codec",5672 "rand 0.7.3",5673 "scale-info",5674 "sp-arithmetic",5675 "sp-core",5676 "sp-io",5677 "sp-npos-elections",5678 "sp-runtime",5679 "sp-std",5680 "static_assertions",5681 "strum 0.21.0",5682 "strum_macros 0.21.1",5683]56845685[[package]]5686name = "pallet-elections-phragmen"5687version = "5.0.0-dev"5688source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5689dependencies = [5690 "frame-benchmarking",5691 "frame-support",5692 "frame-system",5693 "log",5694 "parity-scale-codec",5695 "scale-info",5696 "sp-core",5697 "sp-io",5698 "sp-npos-elections",5699 "sp-runtime",5700 "sp-std",5701]57025703[[package]]5704name = "pallet-ethereum"5705version = "4.0.0-dev"5706source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"5707dependencies = [5708 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",5709 "ethereum-types",5710 "evm",5711 "fp-consensus",5712 "fp-evm",5713 "fp-rpc",5714 "fp-self-contained",5715 "fp-storage",5716 "frame-support",5717 "frame-system",5718 "pallet-balances",5719 "pallet-evm",5720 "pallet-timestamp",5721 "parity-scale-codec",5722 "rlp",5723 "rustc-hex",5724 "scale-info",5725 "serde",5726 "sha3 0.8.2",5727 "sp-io",5728 "sp-runtime",5729 "sp-std",5730]57315732[[package]]5733name = "pallet-evm"5734version = "6.0.0-dev"5735source = "git+https://github.com/uniquenetwork/frontier.git?branch=unique-polkadot-v0.9.12#43ce3be6274eceaf47d9664ddc71cba68a990923"5736dependencies = [5737 "evm",5738 "evm-gasometer",5739 "evm-runtime",5740 "fp-evm",5741 "frame-benchmarking",5742 "frame-support",5743 "frame-system",5744 "hex",5745 "impl-trait-for-tuples 0.2.1",5746 "log",5747 "pallet-balances",5748 "pallet-timestamp",5749 "parity-scale-codec",5750 "primitive-types 0.9.1",5751 "rlp",5752 "scale-info",5753 "serde",5754 "sha3 0.8.2",5755 "sp-core",5756 "sp-io",5757 "sp-runtime",5758 "sp-std",5759]57605761[[package]]5762name = "pallet-evm-coder-substrate"5763version = "0.1.0"5764dependencies = [5765 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",5766 "evm-coder",5767 "frame-support",5768 "frame-system",5769 "pallet-ethereum",5770 "pallet-evm",5771 "parity-scale-codec",5772 "scale-info",5773 "sp-core",5774 "sp-std",5775]57765777[[package]]5778name = "pallet-evm-contract-helpers"5779version = "0.1.0"5780dependencies = [5781 "evm-coder",5782 "frame-support",5783 "frame-system",5784 "log",5785 "pallet-evm",5786 "pallet-evm-coder-substrate",5787 "parity-scale-codec",5788 "scale-info",5789 "sp-core",5790 "sp-runtime",5791 "sp-std",5792 "up-sponsorship",5793]57945795[[package]]5796name = "pallet-evm-migration"5797version = "0.1.0"5798dependencies = [5799 "fp-evm",5800 "frame-benchmarking",5801 "frame-support",5802 "frame-system",5803 "pallet-evm",5804 "parity-scale-codec",5805 "scale-info",5806 "sp-core",5807 "sp-io",5808 "sp-runtime",5809 "sp-std",5810]58115812[[package]]5813name = "pallet-evm-transaction-payment"5814version = "0.1.0"5815dependencies = [5816 "fp-evm",5817 "frame-support",5818 "frame-system",5819 "pallet-ethereum",5820 "pallet-evm",5821 "parity-scale-codec",5822 "scale-info",5823 "sp-core",5824 "sp-io",5825 "sp-runtime",5826 "sp-std",5827 "up-sponsorship",5828]58295830[[package]]5831name = "pallet-fungible"5832version = "0.1.0"5833dependencies = [5834 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",5835 "evm-coder",5836 "frame-benchmarking",5837 "frame-support",5838 "frame-system",5839 "nft-data-structs",5840 "pallet-common",5841 "pallet-evm-coder-substrate",5842 "parity-scale-codec",5843 "scale-info",5844 "sp-core",5845 "sp-runtime",5846 "sp-std",5847]58485849[[package]]5850name = "pallet-gilt"5851version = "4.0.0-dev"5852source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5853dependencies = [5854 "frame-benchmarking",5855 "frame-support",5856 "frame-system",5857 "parity-scale-codec",5858 "scale-info",5859 "sp-arithmetic",5860 "sp-runtime",5861 "sp-std",5862]58635864[[package]]5865name = "pallet-grandpa"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 "log",5873 "pallet-authorship",5874 "pallet-session",5875 "parity-scale-codec",5876 "scale-info",5877 "sp-application-crypto",5878 "sp-core",5879 "sp-finality-grandpa",5880 "sp-io",5881 "sp-runtime",5882 "sp-session",5883 "sp-staking",5884 "sp-std",5885]58865887[[package]]5888name = "pallet-identity"5889version = "4.0.0-dev"5890source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5891dependencies = [5892 "enumflags2",5893 "frame-benchmarking",5894 "frame-support",5895 "frame-system",5896 "parity-scale-codec",5897 "scale-info",5898 "sp-io",5899 "sp-runtime",5900 "sp-std",5901]59025903[[package]]5904name = "pallet-im-online"5905version = "4.0.0-dev"5906source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5907dependencies = [5908 "frame-benchmarking",5909 "frame-support",5910 "frame-system",5911 "log",5912 "pallet-authorship",5913 "parity-scale-codec",5914 "scale-info",5915 "sp-application-crypto",5916 "sp-core",5917 "sp-io",5918 "sp-runtime",5919 "sp-staking",5920 "sp-std",5921]59225923[[package]]5924name = "pallet-indices"5925version = "4.0.0-dev"5926source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5927dependencies = [5928 "frame-benchmarking",5929 "frame-support",5930 "frame-system",5931 "parity-scale-codec",5932 "scale-info",5933 "sp-core",5934 "sp-io",5935 "sp-keyring",5936 "sp-runtime",5937 "sp-std",5938]59395940[[package]]5941name = "pallet-inflation"5942version = "3.0.0"5943dependencies = [5944 "frame-benchmarking",5945 "frame-support",5946 "frame-system",5947 "pallet-balances",5948 "pallet-randomness-collective-flip",5949 "pallet-timestamp",5950 "parity-scale-codec",5951 "scale-info",5952 "serde",5953 "sp-core",5954 "sp-io",5955 "sp-runtime",5956 "sp-std",5957]59585959[[package]]5960name = "pallet-membership"5961version = "4.0.0-dev"5962source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5963dependencies = [5964 "frame-benchmarking",5965 "frame-support",5966 "frame-system",5967 "log",5968 "parity-scale-codec",5969 "scale-info",5970 "sp-core",5971 "sp-io",5972 "sp-runtime",5973 "sp-std",5974]59755976[[package]]5977name = "pallet-mmr"5978version = "4.0.0-dev"5979source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5980dependencies = [5981 "ckb-merkle-mountain-range",5982 "frame-benchmarking",5983 "frame-support",5984 "frame-system",5985 "pallet-mmr-primitives",5986 "parity-scale-codec",5987 "scale-info",5988 "sp-core",5989 "sp-io",5990 "sp-runtime",5991 "sp-std",5992]59935994[[package]]5995name = "pallet-mmr-primitives"5996version = "4.0.0-dev"5997source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"5998dependencies = [5999 "frame-support",6000 "frame-system",6001 "log",6002 "parity-scale-codec",6003 "serde",6004 "sp-api",6005 "sp-core",6006 "sp-runtime",6007 "sp-std",6008]60096010[[package]]6011name = "pallet-mmr-rpc"6012version = "3.0.0"6013source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6014dependencies = [6015 "jsonrpc-core",6016 "jsonrpc-core-client",6017 "jsonrpc-derive",6018 "pallet-mmr-primitives",6019 "parity-scale-codec",6020 "serde",6021 "sp-api",6022 "sp-blockchain",6023 "sp-core",6024 "sp-runtime",6025]60266027[[package]]6028name = "pallet-multisig"6029version = "4.0.0-dev"6030source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6031dependencies = [6032 "frame-benchmarking",6033 "frame-support",6034 "frame-system",6035 "parity-scale-codec",6036 "scale-info",6037 "sp-io",6038 "sp-runtime",6039 "sp-std",6040]60416042[[package]]6043name = "pallet-nft"6044version = "3.0.0"6045dependencies = [6046 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",6047 "evm-coder",6048 "fp-evm",6049 "frame-benchmarking",6050 "frame-support",6051 "frame-system",6052 "hex-literal",6053 "nft-data-structs",6054 "pallet-balances",6055 "pallet-common",6056 "pallet-ethereum",6057 "pallet-evm",6058 "pallet-evm-coder-substrate",6059 "pallet-fungible",6060 "pallet-nonfungible",6061 "pallet-randomness-collective-flip",6062 "pallet-refungible",6063 "pallet-timestamp",6064 "pallet-transaction-payment",6065 "parity-scale-codec",6066 "primitive-types 0.10.1",6067 "rlp",6068 "scale-info",6069 "serde",6070 "sp-api",6071 "sp-core",6072 "sp-io",6073 "sp-runtime",6074 "sp-std",6075 "up-sponsorship",6076]60776078[[package]]6079name = "pallet-nft-charge-transaction"6080version = "3.0.0"6081dependencies = [6082 "frame-benchmarking",6083 "frame-support",6084 "frame-system",6085 "pallet-balances",6086 "pallet-nft-transaction-payment",6087 "pallet-transaction-payment",6088 "parity-scale-codec",6089 "scale-info",6090 "serde",6091 "sp-core",6092 "sp-io",6093 "sp-runtime",6094 "sp-std",6095]60966097[[package]]6098name = "pallet-nft-transaction-payment"6099version = "3.0.0"6100dependencies = [6101 "frame-benchmarking",6102 "frame-support",6103 "frame-system",6104 "pallet-transaction-payment",6105 "parity-scale-codec",6106 "scale-info",6107 "serde",6108 "sp-core",6109 "sp-io",6110 "sp-runtime",6111 "sp-std",6112 "up-sponsorship",6113]61146115[[package]]6116name = "pallet-nicks"6117version = "4.0.0-dev"6118source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6119dependencies = [6120 "frame-support",6121 "frame-system",6122 "parity-scale-codec",6123 "scale-info",6124 "sp-io",6125 "sp-runtime",6126 "sp-std",6127]61286129[[package]]6130name = "pallet-nonfungible"6131version = "0.1.0"6132dependencies = [6133 "ethereum 0.9.0 (git+https://github.com/purestake/ethereum?branch=joshy-scale-info)",6134 "evm-coder",6135 "frame-benchmarking",6136 "frame-support",6137 "frame-system",6138 "nft-data-structs",6139 "pallet-common",6140 "pallet-evm-coder-substrate",6141 "parity-scale-codec",6142 "scale-info",6143 "sp-core",6144 "sp-runtime",6145 "sp-std",6146]61476148[[package]]6149name = "pallet-offences"6150version = "4.0.0-dev"6151source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6152dependencies = [6153 "frame-support",6154 "frame-system",6155 "log",6156 "pallet-balances",6157 "parity-scale-codec",6158 "scale-info",6159 "serde",6160 "sp-runtime",6161 "sp-staking",6162 "sp-std",6163]61646165[[package]]6166name = "pallet-offences-benchmarking"6167version = "4.0.0-dev"6168source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6169dependencies = [6170 "frame-benchmarking",6171 "frame-election-provider-support",6172 "frame-support",6173 "frame-system",6174 "pallet-babe",6175 "pallet-balances",6176 "pallet-grandpa",6177 "pallet-im-online",6178 "pallet-offences",6179 "pallet-session",6180 "pallet-staking",6181 "parity-scale-codec",6182 "scale-info",6183 "sp-runtime",6184 "sp-staking",6185 "sp-std",6186]61876188[[package]]6189name = "pallet-proxy"6190version = "4.0.0-dev"6191source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6192dependencies = [6193 "frame-benchmarking",6194 "frame-support",6195 "frame-system",6196 "parity-scale-codec",6197 "scale-info",6198 "sp-io",6199 "sp-runtime",6200 "sp-std",6201]62026203[[package]]6204name = "pallet-randomness-collective-flip"6205version = "4.0.0-dev"6206source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6207dependencies = [6208 "frame-support",6209 "frame-system",6210 "parity-scale-codec",6211 "safe-mix",6212 "scale-info",6213 "sp-runtime",6214 "sp-std",6215]62166217[[package]]6218name = "pallet-recovery"6219version = "4.0.0-dev"6220source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6221dependencies = [6222 "frame-support",6223 "frame-system",6224 "parity-scale-codec",6225 "scale-info",6226 "sp-io",6227 "sp-runtime",6228 "sp-std",6229]62306231[[package]]6232name = "pallet-refungible"6233version = "0.1.0"6234dependencies = [6235 "frame-benchmarking",6236 "frame-support",6237 "frame-system",6238 "nft-data-structs",6239 "pallet-common",6240 "parity-scale-codec",6241 "scale-info",6242 "sp-core",6243 "sp-runtime",6244 "sp-std",6245]62466247[[package]]6248name = "pallet-scheduler"6249version = "4.0.0-dev"6250source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6251dependencies = [6252 "frame-benchmarking",6253 "frame-support",6254 "frame-system",6255 "log",6256 "parity-scale-codec",6257 "scale-info",6258 "sp-io",6259 "sp-runtime",6260 "sp-std",6261]62626263[[package]]6264name = "pallet-session"6265version = "4.0.0-dev"6266source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6267dependencies = [6268 "frame-support",6269 "frame-system",6270 "impl-trait-for-tuples 0.2.1",6271 "log",6272 "pallet-timestamp",6273 "parity-scale-codec",6274 "scale-info",6275 "sp-core",6276 "sp-io",6277 "sp-runtime",6278 "sp-session",6279 "sp-staking",6280 "sp-std",6281 "sp-trie",6282]62836284[[package]]6285name = "pallet-session-benchmarking"6286version = "4.0.0-dev"6287source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6288dependencies = [6289 "frame-benchmarking",6290 "frame-support",6291 "frame-system",6292 "pallet-session",6293 "pallet-staking",6294 "rand 0.7.3",6295 "sp-runtime",6296 "sp-session",6297 "sp-std",6298]62996300[[package]]6301name = "pallet-society"6302version = "4.0.0-dev"6303source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6304dependencies = [6305 "frame-support",6306 "frame-system",6307 "parity-scale-codec",6308 "rand_chacha 0.2.2",6309 "scale-info",6310 "sp-runtime",6311 "sp-std",6312]63136314[[package]]6315name = "pallet-staking"6316version = "4.0.0-dev"6317source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6318dependencies = [6319 "frame-benchmarking",6320 "frame-election-provider-support",6321 "frame-support",6322 "frame-system",6323 "log",6324 "pallet-authorship",6325 "pallet-session",6326 "parity-scale-codec",6327 "rand_chacha 0.2.2",6328 "scale-info",6329 "serde",6330 "sp-application-crypto",6331 "sp-io",6332 "sp-runtime",6333 "sp-staking",6334 "sp-std",6335]63366337[[package]]6338name = "pallet-staking-reward-curve"6339version = "4.0.0-dev"6340source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6341dependencies = [6342 "proc-macro-crate 1.1.0",6343 "proc-macro2",6344 "quote",6345 "syn",6346]63476348[[package]]6349name = "pallet-staking-reward-fn"6350version = "4.0.0-dev"6351source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6352dependencies = [6353 "log",6354 "sp-arithmetic",6355]63566357[[package]]6358name = "pallet-sudo"6359version = "4.0.0-dev"6360source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6361dependencies = [6362 "frame-support",6363 "frame-system",6364 "parity-scale-codec",6365 "scale-info",6366 "sp-io",6367 "sp-runtime",6368 "sp-std",6369]63706371[[package]]6372name = "pallet-timestamp"6373version = "4.0.0-dev"6374source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6375dependencies = [6376 "frame-benchmarking",6377 "frame-support",6378 "frame-system",6379 "log",6380 "parity-scale-codec",6381 "scale-info",6382 "sp-inherents",6383 "sp-io",6384 "sp-runtime",6385 "sp-std",6386 "sp-timestamp",6387]63886389[[package]]6390name = "pallet-tips"6391version = "4.0.0-dev"6392source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6393dependencies = [6394 "frame-benchmarking",6395 "frame-support",6396 "frame-system",6397 "log",6398 "pallet-treasury",6399 "parity-scale-codec",6400 "scale-info",6401 "serde",6402 "sp-core",6403 "sp-io",6404 "sp-runtime",6405 "sp-std",6406]64076408[[package]]6409name = "pallet-transaction-payment"6410version = "4.0.0-dev"6411source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6412dependencies = [6413 "frame-support",6414 "frame-system",6415 "parity-scale-codec",6416 "scale-info",6417 "serde",6418 "smallvec",6419 "sp-core",6420 "sp-io",6421 "sp-runtime",6422 "sp-std",6423]64246425[[package]]6426name = "pallet-transaction-payment-rpc"6427version = "4.0.0-dev"6428source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6429dependencies = [6430 "jsonrpc-core",6431 "jsonrpc-core-client",6432 "jsonrpc-derive",6433 "pallet-transaction-payment-rpc-runtime-api",6434 "parity-scale-codec",6435 "sp-api",6436 "sp-blockchain",6437 "sp-core",6438 "sp-rpc",6439 "sp-runtime",6440]64416442[[package]]6443name = "pallet-transaction-payment-rpc-runtime-api"6444version = "4.0.0-dev"6445source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6446dependencies = [6447 "pallet-transaction-payment",6448 "parity-scale-codec",6449 "sp-api",6450 "sp-runtime",6451]64526453[[package]]6454name = "pallet-treasury"6455version = "4.0.0-dev"6456source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6457dependencies = [6458 "frame-benchmarking",6459 "frame-support",6460 "frame-system",6461 "impl-trait-for-tuples 0.2.1",6462 "pallet-balances",6463 "parity-scale-codec",6464 "scale-info",6465 "serde",6466 "sp-runtime",6467 "sp-std",6468]64696470[[package]]6471name = "pallet-unq-scheduler"6472version = "3.0.0"6473dependencies = [6474 "frame-benchmarking",6475 "frame-support",6476 "frame-system",6477 "log",6478 "parity-scale-codec",6479 "scale-info",6480 "serde",6481 "sp-core",6482 "sp-io",6483 "sp-runtime",6484 "sp-std",6485 "substrate-test-utils",6486 "up-sponsorship",6487]64886489[[package]]6490name = "pallet-utility"6491version = "4.0.0-dev"6492source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"6493dependencies = [6494 "frame-benchmarking",6495 "frame-support",6496 "frame-system",6497 "parity-scale-codec",6498 "scale-info",6499 "sp-core",6500 "sp-io",6501 "sp-runtime",6502 "sp-std",6503]65046505[[package]]6506name = "pallet-vesting"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 "log",6514 "parity-scale-codec",6515 "scale-info",6516 "sp-runtime",6517 "sp-std",6518]65196520[[package]]6521name = "pallet-xcm"6522version = "0.9.12"6523source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6524dependencies = [6525 "frame-support",6526 "frame-system",6527 "log",6528 "parity-scale-codec",6529 "scale-info",6530 "serde",6531 "sp-core",6532 "sp-runtime",6533 "sp-std",6534 "xcm",6535 "xcm-executor",6536]65376538[[package]]6539name = "pallet-xcm-benchmarks"6540version = "0.9.8"6541source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6542dependencies = [6543 "frame-benchmarking",6544 "frame-support",6545 "frame-system",6546 "log",6547 "parity-scale-codec",6548 "scale-info",6549 "sp-runtime",6550 "sp-std",6551 "xcm",6552 "xcm-executor",6553]65546555[[package]]6556name = "parachain-info"6557version = "0.1.0"6558source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.12#f5926c2f50df73bf36171b138241437131d76fff"6559dependencies = [6560 "cumulus-primitives-core",6561 "frame-support",6562 "frame-system",6563 "parity-scale-codec",6564 "scale-info",6565 "serde",6566]65676568[[package]]6569name = "parity-db"6570version = "0.3.3"6571source = "registry+https://github.com/rust-lang/crates.io-index"6572checksum = "e7ccc4a8687027deb53d45c5434a1f1b330c9d1069a59cfe80a62aa9a1da25ae"6573dependencies = [6574 "blake2-rfc",6575 "crc32fast",6576 "fs2",6577 "hex",6578 "libc",6579 "log",6580 "lz4",6581 "memmap2",6582 "parking_lot 0.11.2",6583 "rand 0.8.4",6584 "snap",6585]65866587[[package]]6588name = "parity-scale-codec"6589version = "2.3.1"6590source = "registry+https://github.com/rust-lang/crates.io-index"6591checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909"6592dependencies = [6593 "arrayvec 0.7.2",6594 "bitvec 0.20.4",6595 "byte-slice-cast",6596 "impl-trait-for-tuples 0.2.1",6597 "parity-scale-codec-derive",6598 "serde",6599]66006601[[package]]6602name = "parity-scale-codec-derive"6603version = "2.3.1"6604source = "registry+https://github.com/rust-lang/crates.io-index"6605checksum = "1557010476e0595c9b568d16dcfb81b93cdeb157612726f5170d31aa707bed27"6606dependencies = [6607 "proc-macro-crate 1.1.0",6608 "proc-macro2",6609 "quote",6610 "syn",6611]66126613[[package]]6614name = "parity-send-wrapper"6615version = "0.1.0"6616source = "registry+https://github.com/rust-lang/crates.io-index"6617checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f"66186619[[package]]6620name = "parity-tokio-ipc"6621version = "0.9.0"6622source = "registry+https://github.com/rust-lang/crates.io-index"6623checksum = "9981e32fb75e004cc148f5fb70342f393830e0a4aa62e3cc93b50976218d42b6"6624dependencies = [6625 "futures 0.3.17",6626 "libc",6627 "log",6628 "rand 0.7.3",6629 "tokio 1.13.0",6630 "winapi 0.3.9",6631]66326633[[package]]6634name = "parity-util-mem"6635version = "0.10.2"6636source = "registry+https://github.com/rust-lang/crates.io-index"6637checksum = "6f4cb4e169446179cbc6b8b6320cc9fca49bd2e94e8db25f25f200a8ea774770"6638dependencies = [6639 "cfg-if 1.0.0",6640 "ethereum-types",6641 "hashbrown",6642 "impl-trait-for-tuples 0.2.1",6643 "lru 0.6.6",6644 "parity-util-mem-derive",6645 "parking_lot 0.11.2",6646 "primitive-types 0.10.1",6647 "smallvec",6648 "winapi 0.3.9",6649]66506651[[package]]6652name = "parity-util-mem-derive"6653version = "0.1.0"6654source = "registry+https://github.com/rust-lang/crates.io-index"6655checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2"6656dependencies = [6657 "proc-macro2",6658 "syn",6659 "synstructure",6660]66616662[[package]]6663name = "parity-wasm"6664version = "0.32.0"6665source = "registry+https://github.com/rust-lang/crates.io-index"6666checksum = "16ad52817c4d343339b3bc2e26861bd21478eda0b7509acf83505727000512ac"6667dependencies = [6668 "byteorder",6669]66706671[[package]]6672name = "parity-wasm"6673version = "0.42.2"6674source = "registry+https://github.com/rust-lang/crates.io-index"6675checksum = "be5e13c266502aadf83426d87d81a0f5d1ef45b8027f5a471c360abfe4bfae92"66766677[[package]]6678name = "parity-ws"6679version = "0.11.1"6680source = "registry+https://github.com/rust-lang/crates.io-index"6681checksum = "5983d3929ad50f12c3eb9a6743f19d691866ecd44da74c0a3308c3f8a56df0c6"6682dependencies = [6683 "byteorder",6684 "bytes 0.4.12",6685 "httparse",6686 "log",6687 "mio 0.6.23",6688 "mio-extras",6689 "rand 0.7.3",6690 "sha-1 0.8.2",6691 "slab",6692 "url 2.2.2",6693]66946695[[package]]6696name = "parking"6697version = "2.0.0"6698source = "registry+https://github.com/rust-lang/crates.io-index"6699checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"67006701[[package]]6702name = "parking_lot"6703version = "0.10.2"6704source = "registry+https://github.com/rust-lang/crates.io-index"6705checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"6706dependencies = [6707 "lock_api 0.3.4",6708 "parking_lot_core 0.7.2",6709]67106711[[package]]6712name = "parking_lot"6713version = "0.11.2"6714source = "registry+https://github.com/rust-lang/crates.io-index"6715checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"6716dependencies = [6717 "instant",6718 "lock_api 0.4.5",6719 "parking_lot_core 0.8.5",6720]67216722[[package]]6723name = "parking_lot_core"6724version = "0.7.2"6725source = "registry+https://github.com/rust-lang/crates.io-index"6726checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"6727dependencies = [6728 "cfg-if 0.1.10",6729 "cloudabi",6730 "libc",6731 "redox_syscall 0.1.57",6732 "smallvec",6733 "winapi 0.3.9",6734]67356736[[package]]6737name = "parking_lot_core"6738version = "0.8.5"6739source = "registry+https://github.com/rust-lang/crates.io-index"6740checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"6741dependencies = [6742 "cfg-if 1.0.0",6743 "instant",6744 "libc",6745 "redox_syscall 0.2.10",6746 "smallvec",6747 "winapi 0.3.9",6748]67496750[[package]]6751name = "paste"6752version = "1.0.5"6753source = "registry+https://github.com/rust-lang/crates.io-index"6754checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"67556756[[package]]6757name = "pbkdf2"6758version = "0.4.0"6759source = "registry+https://github.com/rust-lang/crates.io-index"6760checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd"6761dependencies = [6762 "crypto-mac 0.8.0",6763]67646765[[package]]6766name = "pbkdf2"6767version = "0.8.0"6768source = "registry+https://github.com/rust-lang/crates.io-index"6769checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa"6770dependencies = [6771 "crypto-mac 0.11.1",6772]67736774[[package]]6775name = "peeking_take_while"6776version = "0.1.2"6777source = "registry+https://github.com/rust-lang/crates.io-index"6778checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"67796780[[package]]6781name = "percent-encoding"6782version = "1.0.1"6783source = "registry+https://github.com/rust-lang/crates.io-index"6784checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"67856786[[package]]6787name = "percent-encoding"6788version = "2.1.0"6789source = "registry+https://github.com/rust-lang/crates.io-index"6790checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"67916792[[package]]6793name = "pest"6794version = "2.1.3"6795source = "registry+https://github.com/rust-lang/crates.io-index"6796checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"6797dependencies = [6798 "ucd-trie",6799]68006801[[package]]6802name = "pest_derive"6803version = "2.1.0"6804source = "registry+https://github.com/rust-lang/crates.io-index"6805checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"6806dependencies = [6807 "pest",6808 "pest_generator",6809]68106811[[package]]6812name = "pest_generator"6813version = "2.1.3"6814source = "registry+https://github.com/rust-lang/crates.io-index"6815checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"6816dependencies = [6817 "pest",6818 "pest_meta",6819 "proc-macro2",6820 "quote",6821 "syn",6822]68236824[[package]]6825name = "pest_meta"6826version = "2.1.3"6827source = "registry+https://github.com/rust-lang/crates.io-index"6828checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"6829dependencies = [6830 "maplit",6831 "pest",6832 "sha-1 0.8.2",6833]68346835[[package]]6836name = "petgraph"6837version = "0.5.1"6838source = "registry+https://github.com/rust-lang/crates.io-index"6839checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7"6840dependencies = [6841 "fixedbitset",6842 "indexmap",6843]68446845[[package]]6846name = "pin-project"6847version = "0.4.28"6848source = "registry+https://github.com/rust-lang/crates.io-index"6849checksum = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f"6850dependencies = [6851 "pin-project-internal 0.4.28",6852]68536854[[package]]6855name = "pin-project"6856version = "1.0.8"6857source = "registry+https://github.com/rust-lang/crates.io-index"6858checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08"6859dependencies = [6860 "pin-project-internal 1.0.8",6861]68626863[[package]]6864name = "pin-project-internal"6865version = "0.4.28"6866source = "registry+https://github.com/rust-lang/crates.io-index"6867checksum = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e"6868dependencies = [6869 "proc-macro2",6870 "quote",6871 "syn",6872]68736874[[package]]6875name = "pin-project-internal"6876version = "1.0.8"6877source = "registry+https://github.com/rust-lang/crates.io-index"6878checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"6879dependencies = [6880 "proc-macro2",6881 "quote",6882 "syn",6883]68846885[[package]]6886name = "pin-project-lite"6887version = "0.1.12"6888source = "registry+https://github.com/rust-lang/crates.io-index"6889checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"68906891[[package]]6892name = "pin-project-lite"6893version = "0.2.7"6894source = "registry+https://github.com/rust-lang/crates.io-index"6895checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"68966897[[package]]6898name = "pin-utils"6899version = "0.1.0"6900source = "registry+https://github.com/rust-lang/crates.io-index"6901checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"69026903[[package]]6904name = "pkg-config"6905version = "0.3.22"6906source = "registry+https://github.com/rust-lang/crates.io-index"6907checksum = "12295df4f294471248581bc09bef3c38a5e46f1e36d6a37353621a0c6c357e1f"69086909[[package]]6910name = "platforms"6911version = "1.1.0"6912source = "registry+https://github.com/rust-lang/crates.io-index"6913checksum = "989d43012e2ca1c4a02507c67282691a0a3207f9dc67cec596b43fe925b3d325"69146915[[package]]6916name = "polkadot-approval-distribution"6917version = "0.9.12"6918source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6919dependencies = [6920 "futures 0.3.17",6921 "polkadot-node-network-protocol",6922 "polkadot-node-primitives",6923 "polkadot-node-subsystem",6924 "polkadot-node-subsystem-util",6925 "polkadot-primitives",6926 "tracing",6927]69286929[[package]]6930name = "polkadot-availability-bitfield-distribution"6931version = "0.9.12"6932source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6933dependencies = [6934 "futures 0.3.17",6935 "polkadot-node-network-protocol",6936 "polkadot-node-subsystem",6937 "polkadot-node-subsystem-util",6938 "polkadot-primitives",6939 "tracing",6940]69416942[[package]]6943name = "polkadot-availability-distribution"6944version = "0.9.12"6945source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6946dependencies = [6947 "derive_more",6948 "futures 0.3.17",6949 "lru 0.7.0",6950 "parity-scale-codec",6951 "polkadot-erasure-coding",6952 "polkadot-node-network-protocol",6953 "polkadot-node-primitives",6954 "polkadot-node-subsystem",6955 "polkadot-node-subsystem-util",6956 "polkadot-primitives",6957 "rand 0.8.4",6958 "sp-core",6959 "sp-keystore",6960 "thiserror",6961 "tracing",6962]69636964[[package]]6965name = "polkadot-availability-recovery"6966version = "0.9.12"6967source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6968dependencies = [6969 "futures 0.3.17",6970 "lru 0.7.0",6971 "parity-scale-codec",6972 "polkadot-erasure-coding",6973 "polkadot-node-network-protocol",6974 "polkadot-node-primitives",6975 "polkadot-node-subsystem",6976 "polkadot-node-subsystem-util",6977 "polkadot-primitives",6978 "rand 0.8.4",6979 "sc-network",6980 "thiserror",6981 "tracing",6982]69836984[[package]]6985name = "polkadot-cli"6986version = "0.9.12"6987source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"6988dependencies = [6989 "frame-benchmarking-cli",6990 "futures 0.3.17",6991 "log",6992 "polkadot-node-core-pvf",6993 "polkadot-service",6994 "sc-cli",6995 "sc-service",6996 "sp-core",6997 "sp-trie",6998 "structopt",6999 "substrate-build-script-utils",7000 "thiserror",7001 "try-runtime-cli",7002]70037004[[package]]7005name = "polkadot-client"7006version = "0.9.12"7007source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7008dependencies = [7009 "beefy-primitives",7010 "frame-benchmarking",7011 "frame-system-rpc-runtime-api",7012 "pallet-mmr-primitives",7013 "pallet-transaction-payment-rpc-runtime-api",7014 "polkadot-primitives",7015 "polkadot-runtime",7016 "sc-client-api",7017 "sc-consensus",7018 "sc-executor",7019 "sc-service",7020 "sp-api",7021 "sp-authority-discovery",7022 "sp-block-builder",7023 "sp-blockchain",7024 "sp-consensus",7025 "sp-consensus-babe",7026 "sp-finality-grandpa",7027 "sp-offchain",7028 "sp-runtime",7029 "sp-session",7030 "sp-storage",7031 "sp-transaction-pool",7032]70337034[[package]]7035name = "polkadot-collator-protocol"7036version = "0.9.12"7037source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7038dependencies = [7039 "always-assert",7040 "derive_more",7041 "futures 0.3.17",7042 "futures-timer 3.0.2",7043 "polkadot-node-network-protocol",7044 "polkadot-node-primitives",7045 "polkadot-node-subsystem",7046 "polkadot-node-subsystem-util",7047 "polkadot-primitives",7048 "sp-core",7049 "sp-keystore",7050 "sp-runtime",7051 "thiserror",7052 "tracing",7053]70547055[[package]]7056name = "polkadot-core-primitives"7057version = "0.9.12"7058source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7059dependencies = [7060 "parity-scale-codec",7061 "parity-util-mem",7062 "scale-info",7063 "sp-core",7064 "sp-runtime",7065 "sp-std",7066]70677068[[package]]7069name = "polkadot-dispute-distribution"7070version = "0.9.12"7071source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7072dependencies = [7073 "derive_more",7074 "futures 0.3.17",7075 "lru 0.7.0",7076 "parity-scale-codec",7077 "polkadot-erasure-coding",7078 "polkadot-node-network-protocol",7079 "polkadot-node-primitives",7080 "polkadot-node-subsystem",7081 "polkadot-node-subsystem-util",7082 "polkadot-primitives",7083 "sc-network",7084 "sp-application-crypto",7085 "sp-keystore",7086 "thiserror",7087 "tracing",7088]70897090[[package]]7091name = "polkadot-erasure-coding"7092version = "0.9.12"7093source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7094dependencies = [7095 "parity-scale-codec",7096 "polkadot-node-primitives",7097 "polkadot-primitives",7098 "reed-solomon-novelpoly",7099 "sp-core",7100 "sp-trie",7101 "thiserror",7102]71037104[[package]]7105name = "polkadot-gossip-support"7106version = "0.9.12"7107source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7108dependencies = [7109 "futures 0.3.17",7110 "futures-timer 3.0.2",7111 "polkadot-node-network-protocol",7112 "polkadot-node-subsystem",7113 "polkadot-node-subsystem-util",7114 "polkadot-primitives",7115 "rand 0.8.4",7116 "rand_chacha 0.3.1",7117 "sc-network",7118 "sp-application-crypto",7119 "sp-core",7120 "sp-keystore",7121 "tracing",7122]71237124[[package]]7125name = "polkadot-network-bridge"7126version = "0.9.12"7127source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7128dependencies = [7129 "async-trait",7130 "futures 0.3.17",7131 "parity-scale-codec",7132 "parking_lot 0.11.2",7133 "polkadot-node-network-protocol",7134 "polkadot-node-subsystem",7135 "polkadot-node-subsystem-util",7136 "polkadot-overseer",7137 "polkadot-primitives",7138 "sc-network",7139 "sp-consensus",7140 "tracing",7141]71427143[[package]]7144name = "polkadot-node-collation-generation"7145version = "0.9.12"7146source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7147dependencies = [7148 "futures 0.3.17",7149 "parity-scale-codec",7150 "polkadot-erasure-coding",7151 "polkadot-node-primitives",7152 "polkadot-node-subsystem",7153 "polkadot-node-subsystem-util",7154 "polkadot-primitives",7155 "sp-core",7156 "sp-maybe-compressed-blob",7157 "thiserror",7158 "tracing",7159]71607161[[package]]7162name = "polkadot-node-core-approval-voting"7163version = "0.9.12"7164source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7165dependencies = [7166 "bitvec 0.20.4",7167 "derive_more",7168 "futures 0.3.17",7169 "futures-timer 3.0.2",7170 "kvdb",7171 "lru 0.7.0",7172 "merlin",7173 "parity-scale-codec",7174 "polkadot-node-jaeger",7175 "polkadot-node-primitives",7176 "polkadot-node-subsystem",7177 "polkadot-node-subsystem-util",7178 "polkadot-overseer",7179 "polkadot-primitives",7180 "sc-keystore",7181 "schnorrkel",7182 "sp-application-crypto",7183 "sp-consensus",7184 "sp-consensus-slots",7185 "sp-runtime",7186 "tracing",7187]71887189[[package]]7190name = "polkadot-node-core-av-store"7191version = "0.9.12"7192source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7193dependencies = [7194 "bitvec 0.20.4",7195 "futures 0.3.17",7196 "futures-timer 3.0.2",7197 "kvdb",7198 "parity-scale-codec",7199 "polkadot-erasure-coding",7200 "polkadot-node-primitives",7201 "polkadot-node-subsystem",7202 "polkadot-node-subsystem-util",7203 "polkadot-overseer",7204 "polkadot-primitives",7205 "thiserror",7206 "tracing",7207]72087209[[package]]7210name = "polkadot-node-core-backing"7211version = "0.9.12"7212source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7213dependencies = [7214 "bitvec 0.20.4",7215 "futures 0.3.17",7216 "polkadot-erasure-coding",7217 "polkadot-node-primitives",7218 "polkadot-node-subsystem",7219 "polkadot-node-subsystem-util",7220 "polkadot-primitives",7221 "polkadot-statement-table",7222 "sp-keystore",7223 "thiserror",7224 "tracing",7225]72267227[[package]]7228name = "polkadot-node-core-bitfield-signing"7229version = "0.9.12"7230source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7231dependencies = [7232 "futures 0.3.17",7233 "polkadot-node-subsystem",7234 "polkadot-node-subsystem-util",7235 "polkadot-primitives",7236 "sp-keystore",7237 "thiserror",7238 "tracing",7239 "wasm-timer",7240]72417242[[package]]7243name = "polkadot-node-core-candidate-validation"7244version = "0.9.12"7245source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7246dependencies = [7247 "async-trait",7248 "futures 0.3.17",7249 "parity-scale-codec",7250 "polkadot-node-core-pvf",7251 "polkadot-node-primitives",7252 "polkadot-node-subsystem",7253 "polkadot-node-subsystem-util",7254 "polkadot-parachain",7255 "polkadot-primitives",7256 "sp-maybe-compressed-blob",7257 "tracing",7258]72597260[[package]]7261name = "polkadot-node-core-chain-api"7262version = "0.9.12"7263source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7264dependencies = [7265 "futures 0.3.17",7266 "polkadot-node-subsystem",7267 "polkadot-node-subsystem-util",7268 "polkadot-primitives",7269 "sc-client-api",7270 "sc-consensus-babe",7271 "sp-blockchain",7272 "tracing",7273]72747275[[package]]7276name = "polkadot-node-core-chain-selection"7277version = "0.9.12"7278source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7279dependencies = [7280 "futures 0.3.17",7281 "futures-timer 3.0.2",7282 "kvdb",7283 "parity-scale-codec",7284 "polkadot-node-primitives",7285 "polkadot-node-subsystem",7286 "polkadot-node-subsystem-util",7287 "polkadot-primitives",7288 "thiserror",7289 "tracing",7290]72917292[[package]]7293name = "polkadot-node-core-dispute-coordinator"7294version = "0.9.12"7295source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7296dependencies = [7297 "bitvec 0.20.4",7298 "derive_more",7299 "futures 0.3.17",7300 "kvdb",7301 "parity-scale-codec",7302 "polkadot-node-primitives",7303 "polkadot-node-subsystem",7304 "polkadot-node-subsystem-util",7305 "polkadot-primitives",7306 "sc-keystore",7307 "thiserror",7308 "tracing",7309]73107311[[package]]7312name = "polkadot-node-core-dispute-participation"7313version = "0.9.12"7314source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7315dependencies = [7316 "futures 0.3.17",7317 "polkadot-node-primitives",7318 "polkadot-node-subsystem",7319 "polkadot-primitives",7320 "thiserror",7321 "tracing",7322]73237324[[package]]7325name = "polkadot-node-core-parachains-inherent"7326version = "0.9.12"7327source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7328dependencies = [7329 "async-trait",7330 "futures 0.3.17",7331 "futures-timer 3.0.2",7332 "polkadot-node-subsystem",7333 "polkadot-primitives",7334 "sp-blockchain",7335 "sp-inherents",7336 "sp-runtime",7337 "thiserror",7338 "tracing",7339]73407341[[package]]7342name = "polkadot-node-core-provisioner"7343version = "0.9.12"7344source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7345dependencies = [7346 "bitvec 0.20.4",7347 "futures 0.3.17",7348 "futures-timer 3.0.2",7349 "polkadot-node-subsystem",7350 "polkadot-node-subsystem-util",7351 "polkadot-primitives",7352 "thiserror",7353 "tracing",7354]73557356[[package]]7357name = "polkadot-node-core-pvf"7358version = "0.9.12"7359source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7360dependencies = [7361 "always-assert",7362 "assert_matches",7363 "async-process",7364 "async-std",7365 "futures 0.3.17",7366 "futures-timer 3.0.2",7367 "libc",7368 "parity-scale-codec",7369 "pin-project 1.0.8",7370 "polkadot-core-primitives",7371 "polkadot-node-subsystem-util",7372 "polkadot-parachain",7373 "rand 0.8.4",7374 "sc-executor",7375 "sc-executor-common",7376 "sc-executor-wasmtime",7377 "slotmap",7378 "sp-core",7379 "sp-externalities",7380 "sp-io",7381 "sp-maybe-compressed-blob",7382 "sp-tracing",7383 "sp-wasm-interface",7384 "tracing",7385]73867387[[package]]7388name = "polkadot-node-core-runtime-api"7389version = "0.9.12"7390source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7391dependencies = [7392 "futures 0.3.17",7393 "memory-lru",7394 "parity-util-mem",7395 "polkadot-node-subsystem",7396 "polkadot-node-subsystem-util",7397 "polkadot-primitives",7398 "sp-api",7399 "sp-authority-discovery",7400 "sp-consensus-babe",7401 "sp-core",7402 "tracing",7403]74047405[[package]]7406name = "polkadot-node-jaeger"7407version = "0.9.12"7408source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7409dependencies = [7410 "async-std",7411 "lazy_static",7412 "log",7413 "mick-jaeger",7414 "parity-scale-codec",7415 "parking_lot 0.11.2",7416 "polkadot-node-primitives",7417 "polkadot-primitives",7418 "sc-network",7419 "sp-core",7420 "thiserror",7421]74227423[[package]]7424name = "polkadot-node-metrics"7425version = "0.9.12"7426source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7427dependencies = [7428 "futures 0.3.17",7429 "futures-timer 3.0.2",7430 "metered-channel",7431 "substrate-prometheus-endpoint",7432]74337434[[package]]7435name = "polkadot-node-network-protocol"7436version = "0.9.12"7437source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7438dependencies = [7439 "async-trait",7440 "derive_more",7441 "futures 0.3.17",7442 "parity-scale-codec",7443 "polkadot-node-jaeger",7444 "polkadot-node-primitives",7445 "polkadot-primitives",7446 "sc-authority-discovery",7447 "sc-network",7448 "strum 0.22.0",7449 "thiserror",7450]74517452[[package]]7453name = "polkadot-node-primitives"7454version = "0.9.12"7455source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7456dependencies = [7457 "bounded-vec",7458 "futures 0.3.17",7459 "parity-scale-codec",7460 "polkadot-parachain",7461 "polkadot-primitives",7462 "schnorrkel",7463 "serde",7464 "sp-application-crypto",7465 "sp-consensus-babe",7466 "sp-consensus-vrf",7467 "sp-core",7468 "sp-keystore",7469 "sp-maybe-compressed-blob",7470 "thiserror",7471 "zstd",7472]74737474[[package]]7475name = "polkadot-node-subsystem"7476version = "0.9.12"7477source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7478dependencies = [7479 "polkadot-node-jaeger",7480 "polkadot-node-subsystem-types",7481 "polkadot-overseer",7482]74837484[[package]]7485name = "polkadot-node-subsystem-types"7486version = "0.9.12"7487source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7488dependencies = [7489 "derive_more",7490 "futures 0.3.17",7491 "polkadot-node-jaeger",7492 "polkadot-node-network-protocol",7493 "polkadot-node-primitives",7494 "polkadot-overseer-gen",7495 "polkadot-primitives",7496 "polkadot-statement-table",7497 "sc-network",7498 "smallvec",7499 "substrate-prometheus-endpoint",7500 "thiserror",7501]75027503[[package]]7504name = "polkadot-node-subsystem-util"7505version = "0.9.12"7506source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7507dependencies = [7508 "async-trait",7509 "derive_more",7510 "futures 0.3.17",7511 "itertools",7512 "lru 0.7.0",7513 "metered-channel",7514 "parity-scale-codec",7515 "pin-project 1.0.8",7516 "polkadot-node-jaeger",7517 "polkadot-node-metrics",7518 "polkadot-node-network-protocol",7519 "polkadot-node-subsystem",7520 "polkadot-overseer",7521 "polkadot-primitives",7522 "rand 0.8.4",7523 "sp-application-crypto",7524 "sp-core",7525 "sp-keystore",7526 "thiserror",7527 "tracing",7528]75297530[[package]]7531name = "polkadot-overseer"7532version = "0.9.12"7533source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7534dependencies = [7535 "futures 0.3.17",7536 "futures-timer 3.0.2",7537 "lru 0.7.0",7538 "parity-util-mem",7539 "parking_lot 0.11.2",7540 "polkadot-node-metrics",7541 "polkadot-node-network-protocol",7542 "polkadot-node-primitives",7543 "polkadot-node-subsystem-types",7544 "polkadot-overseer-gen",7545 "polkadot-primitives",7546 "sc-client-api",7547 "sp-api",7548 "tracing",7549]75507551[[package]]7552name = "polkadot-overseer-gen"7553version = "0.9.12"7554source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7555dependencies = [7556 "async-trait",7557 "futures 0.3.17",7558 "futures-timer 3.0.2",7559 "metered-channel",7560 "pin-project 1.0.8",7561 "polkadot-node-network-protocol",7562 "polkadot-node-primitives",7563 "polkadot-overseer-gen-proc-macro",7564 "thiserror",7565 "tracing",7566]75677568[[package]]7569name = "polkadot-overseer-gen-proc-macro"7570version = "0.9.12"7571source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7572dependencies = [7573 "proc-macro-crate 1.1.0",7574 "proc-macro2",7575 "quote",7576 "syn",7577]75787579[[package]]7580name = "polkadot-parachain"7581version = "0.9.12"7582source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7583dependencies = [7584 "derive_more",7585 "frame-support",7586 "parity-scale-codec",7587 "parity-util-mem",7588 "polkadot-core-primitives",7589 "scale-info",7590 "serde",7591 "sp-core",7592 "sp-runtime",7593 "sp-std",7594]75957596[[package]]7597name = "polkadot-primitives"7598version = "0.9.12"7599source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7600dependencies = [7601 "bitvec 0.20.4",7602 "frame-system",7603 "hex-literal",7604 "parity-scale-codec",7605 "parity-util-mem",7606 "polkadot-core-primitives",7607 "polkadot-parachain",7608 "scale-info",7609 "serde",7610 "sp-api",7611 "sp-application-crypto",7612 "sp-arithmetic",7613 "sp-authority-discovery",7614 "sp-consensus-slots",7615 "sp-core",7616 "sp-inherents",7617 "sp-io",7618 "sp-keystore",7619 "sp-runtime",7620 "sp-staking",7621 "sp-std",7622 "sp-trie",7623 "sp-version",7624]76257626[[package]]7627name = "polkadot-rpc"7628version = "0.9.12"7629source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7630dependencies = [7631 "beefy-gadget",7632 "beefy-gadget-rpc",7633 "jsonrpc-core",7634 "pallet-mmr-rpc",7635 "pallet-transaction-payment-rpc",7636 "polkadot-primitives",7637 "sc-chain-spec",7638 "sc-client-api",7639 "sc-consensus-babe",7640 "sc-consensus-babe-rpc",7641 "sc-consensus-epochs",7642 "sc-finality-grandpa",7643 "sc-finality-grandpa-rpc",7644 "sc-rpc",7645 "sc-sync-state-rpc",7646 "sc-transaction-pool-api",7647 "sp-api",7648 "sp-block-builder",7649 "sp-blockchain",7650 "sp-consensus",7651 "sp-consensus-babe",7652 "sp-keystore",7653 "sp-runtime",7654 "substrate-frame-rpc-system",7655]76567657[[package]]7658name = "polkadot-runtime"7659version = "0.9.12"7660source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7661dependencies = [7662 "beefy-primitives",7663 "bitvec 0.20.4",7664 "frame-benchmarking",7665 "frame-election-provider-support",7666 "frame-executive",7667 "frame-support",7668 "frame-system",7669 "frame-system-benchmarking",7670 "frame-system-rpc-runtime-api",7671 "frame-try-runtime",7672 "hex-literal",7673 "log",7674 "pallet-authority-discovery",7675 "pallet-authorship",7676 "pallet-babe",7677 "pallet-balances",7678 "pallet-bounties",7679 "pallet-collective",7680 "pallet-democracy",7681 "pallet-election-provider-multi-phase",7682 "pallet-elections-phragmen",7683 "pallet-grandpa",7684 "pallet-identity",7685 "pallet-im-online",7686 "pallet-indices",7687 "pallet-membership",7688 "pallet-mmr-primitives",7689 "pallet-multisig",7690 "pallet-nicks",7691 "pallet-offences",7692 "pallet-offences-benchmarking",7693 "pallet-proxy",7694 "pallet-scheduler",7695 "pallet-session",7696 "pallet-session-benchmarking",7697 "pallet-staking",7698 "pallet-staking-reward-curve",7699 "pallet-timestamp",7700 "pallet-tips",7701 "pallet-transaction-payment",7702 "pallet-transaction-payment-rpc-runtime-api",7703 "pallet-treasury",7704 "pallet-utility",7705 "pallet-vesting",7706 "parity-scale-codec",7707 "polkadot-primitives",7708 "polkadot-runtime-common",7709 "polkadot-runtime-parachains",7710 "rustc-hex",7711 "scale-info",7712 "serde",7713 "serde_derive",7714 "smallvec",7715 "sp-api",7716 "sp-authority-discovery",7717 "sp-block-builder",7718 "sp-consensus-babe",7719 "sp-core",7720 "sp-inherents",7721 "sp-io",7722 "sp-npos-elections",7723 "sp-offchain",7724 "sp-runtime",7725 "sp-session",7726 "sp-staking",7727 "sp-std",7728 "sp-transaction-pool",7729 "sp-version",7730 "static_assertions",7731 "substrate-wasm-builder",7732]77337734[[package]]7735name = "polkadot-runtime-common"7736version = "0.9.12"7737source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7738dependencies = [7739 "beefy-primitives",7740 "bitvec 0.20.4",7741 "frame-benchmarking",7742 "frame-election-provider-support",7743 "frame-support",7744 "frame-system",7745 "impl-trait-for-tuples 0.2.1",7746 "libsecp256k1 0.7.0",7747 "log",7748 "pallet-authorship",7749 "pallet-babe",7750 "pallet-bags-list",7751 "pallet-balances",7752 "pallet-beefy-mmr",7753 "pallet-election-provider-multi-phase",7754 "pallet-session",7755 "pallet-staking",7756 "pallet-timestamp",7757 "pallet-transaction-payment",7758 "pallet-treasury",7759 "pallet-vesting",7760 "parity-scale-codec",7761 "polkadot-primitives",7762 "polkadot-runtime-parachains",7763 "rustc-hex",7764 "scale-info",7765 "serde",7766 "serde_derive",7767 "slot-range-helper",7768 "sp-api",7769 "sp-core",7770 "sp-inherents",7771 "sp-io",7772 "sp-npos-elections",7773 "sp-runtime",7774 "sp-session",7775 "sp-staking",7776 "sp-std",7777 "static_assertions",7778 "xcm",7779]77807781[[package]]7782name = "polkadot-runtime-parachains"7783version = "0.9.12"7784source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7785dependencies = [7786 "bitflags",7787 "bitvec 0.20.4",7788 "derive_more",7789 "frame-benchmarking",7790 "frame-support",7791 "frame-system",7792 "log",7793 "pallet-authority-discovery",7794 "pallet-authorship",7795 "pallet-balances",7796 "pallet-session",7797 "pallet-staking",7798 "pallet-timestamp",7799 "pallet-vesting",7800 "parity-scale-codec",7801 "polkadot-primitives",7802 "rand 0.8.4",7803 "rand_chacha 0.3.1",7804 "rustc-hex",7805 "scale-info",7806 "serde",7807 "sp-api",7808 "sp-core",7809 "sp-inherents",7810 "sp-io",7811 "sp-keystore",7812 "sp-runtime",7813 "sp-session",7814 "sp-staking",7815 "sp-std",7816 "xcm",7817 "xcm-executor",7818]78197820[[package]]7821name = "polkadot-service"7822version = "0.9.12"7823source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7824dependencies = [7825 "async-trait",7826 "beefy-gadget",7827 "beefy-primitives",7828 "frame-system-rpc-runtime-api",7829 "futures 0.3.17",7830 "hex-literal",7831 "kusama-runtime",7832 "kvdb",7833 "kvdb-rocksdb",7834 "lru 0.7.0",7835 "pallet-babe",7836 "pallet-im-online",7837 "pallet-mmr-primitives",7838 "pallet-staking",7839 "pallet-transaction-payment-rpc-runtime-api",7840 "polkadot-approval-distribution",7841 "polkadot-availability-bitfield-distribution",7842 "polkadot-availability-distribution",7843 "polkadot-availability-recovery",7844 "polkadot-client",7845 "polkadot-collator-protocol",7846 "polkadot-dispute-distribution",7847 "polkadot-gossip-support",7848 "polkadot-network-bridge",7849 "polkadot-node-collation-generation",7850 "polkadot-node-core-approval-voting",7851 "polkadot-node-core-av-store",7852 "polkadot-node-core-backing",7853 "polkadot-node-core-bitfield-signing",7854 "polkadot-node-core-candidate-validation",7855 "polkadot-node-core-chain-api",7856 "polkadot-node-core-chain-selection",7857 "polkadot-node-core-dispute-coordinator",7858 "polkadot-node-core-dispute-participation",7859 "polkadot-node-core-parachains-inherent",7860 "polkadot-node-core-provisioner",7861 "polkadot-node-core-runtime-api",7862 "polkadot-node-network-protocol",7863 "polkadot-node-primitives",7864 "polkadot-node-subsystem",7865 "polkadot-node-subsystem-util",7866 "polkadot-overseer",7867 "polkadot-parachain",7868 "polkadot-primitives",7869 "polkadot-rpc",7870 "polkadot-runtime",7871 "polkadot-runtime-parachains",7872 "polkadot-statement-distribution",7873 "rococo-runtime",7874 "sc-authority-discovery",7875 "sc-basic-authorship",7876 "sc-block-builder",7877 "sc-chain-spec",7878 "sc-client-api",7879 "sc-client-db",7880 "sc-consensus",7881 "sc-consensus-babe",7882 "sc-consensus-slots",7883 "sc-consensus-uncles",7884 "sc-executor",7885 "sc-finality-grandpa",7886 "sc-keystore",7887 "sc-network",7888 "sc-service",7889 "sc-sync-state-rpc",7890 "sc-telemetry",7891 "sc-transaction-pool",7892 "serde",7893 "sp-api",7894 "sp-authority-discovery",7895 "sp-block-builder",7896 "sp-blockchain",7897 "sp-consensus",7898 "sp-consensus-babe",7899 "sp-core",7900 "sp-finality-grandpa",7901 "sp-inherents",7902 "sp-io",7903 "sp-keystore",7904 "sp-offchain",7905 "sp-runtime",7906 "sp-session",7907 "sp-state-machine",7908 "sp-storage",7909 "sp-timestamp",7910 "sp-transaction-pool",7911 "sp-trie",7912 "substrate-prometheus-endpoint",7913 "thiserror",7914 "tracing",7915 "westend-runtime",7916]79177918[[package]]7919name = "polkadot-statement-distribution"7920version = "0.9.12"7921source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7922dependencies = [7923 "arrayvec 0.5.2",7924 "derive_more",7925 "futures 0.3.17",7926 "indexmap",7927 "parity-scale-codec",7928 "polkadot-node-network-protocol",7929 "polkadot-node-primitives",7930 "polkadot-node-subsystem",7931 "polkadot-node-subsystem-util",7932 "polkadot-primitives",7933 "sp-keystore",7934 "sp-staking",7935 "thiserror",7936 "tracing",7937]79387939[[package]]7940name = "polkadot-statement-table"7941version = "0.9.12"7942source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7943dependencies = [7944 "parity-scale-codec",7945 "polkadot-primitives",7946 "sp-core",7947]79487949[[package]]7950name = "polkadot-test-runtime"7951version = "0.9.12"7952source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"7953dependencies = [7954 "beefy-primitives",7955 "bitvec 0.20.4",7956 "frame-election-provider-support",7957 "frame-executive",7958 "frame-support",7959 "frame-system",7960 "frame-system-rpc-runtime-api",7961 "log",7962 "pallet-authority-discovery",7963 "pallet-authorship",7964 "pallet-babe",7965 "pallet-balances",7966 "pallet-grandpa",7967 "pallet-indices",7968 "pallet-mmr-primitives",7969 "pallet-nicks",7970 "pallet-offences",7971 "pallet-session",7972 "pallet-staking",7973 "pallet-staking-reward-curve",7974 "pallet-sudo",7975 "pallet-timestamp",7976 "pallet-transaction-payment",7977 "pallet-transaction-payment-rpc-runtime-api",7978 "pallet-vesting",7979 "pallet-xcm",7980 "parity-scale-codec",7981 "polkadot-parachain",7982 "polkadot-primitives",7983 "polkadot-runtime-common",7984 "polkadot-runtime-parachains",7985 "rustc-hex",7986 "scale-info",7987 "serde",7988 "serde_derive",7989 "smallvec",7990 "sp-api",7991 "sp-authority-discovery",7992 "sp-block-builder",7993 "sp-consensus-babe",7994 "sp-core",7995 "sp-inherents",7996 "sp-io",7997 "sp-offchain",7998 "sp-runtime",7999 "sp-session",8000 "sp-staking",8001 "sp-std",8002 "sp-transaction-pool",8003 "sp-version",8004 "substrate-wasm-builder",8005 "xcm",8006 "xcm-builder",8007 "xcm-executor",8008]80098010[[package]]8011name = "polkadot-test-service"8012version = "0.9.12"8013source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"8014dependencies = [8015 "frame-benchmarking",8016 "frame-system",8017 "futures 0.1.31",8018 "futures 0.3.17",8019 "hex",8020 "pallet-balances",8021 "pallet-staking",8022 "pallet-transaction-payment",8023 "polkadot-node-primitives",8024 "polkadot-node-subsystem",8025 "polkadot-overseer",8026 "polkadot-parachain",8027 "polkadot-primitives",8028 "polkadot-rpc",8029 "polkadot-runtime-common",8030 "polkadot-runtime-parachains",8031 "polkadot-service",8032 "polkadot-test-runtime",8033 "rand 0.8.4",8034 "sc-authority-discovery",8035 "sc-chain-spec",8036 "sc-cli",8037 "sc-client-api",8038 "sc-consensus",8039 "sc-consensus-babe",8040 "sc-executor",8041 "sc-finality-grandpa",8042 "sc-network",8043 "sc-service",8044 "sc-tracing",8045 "sc-transaction-pool",8046 "sp-arithmetic",8047 "sp-authority-discovery",8048 "sp-blockchain",8049 "sp-consensus",8050 "sp-consensus-babe",8051 "sp-core",8052 "sp-finality-grandpa",8053 "sp-inherents",8054 "sp-keyring",8055 "sp-runtime",8056 "sp-state-machine",8057 "substrate-test-client",8058 "tempfile",8059 "tokio 1.13.0",8060 "tracing",8061]80628063[[package]]8064name = "polling"8065version = "2.1.0"8066source = "registry+https://github.com/rust-lang/crates.io-index"8067checksum = "92341d779fa34ea8437ef4d82d440d5e1ce3f3ff7f824aa64424cd481f9a1f25"8068dependencies = [8069 "cfg-if 1.0.0",8070 "libc",8071 "log",8072 "wepoll-ffi",8073 "winapi 0.3.9",8074]80758076[[package]]8077name = "poly1305"8078version = "0.7.2"8079source = "registry+https://github.com/rust-lang/crates.io-index"8080checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"8081dependencies = [8082 "cpufeatures 0.2.1",8083 "opaque-debug 0.3.0",8084 "universal-hash",8085]80868087[[package]]8088name = "polyval"8089version = "0.5.3"8090source = "registry+https://github.com/rust-lang/crates.io-index"8091checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"8092dependencies = [8093 "cfg-if 1.0.0",8094 "cpufeatures 0.2.1",8095 "opaque-debug 0.3.0",8096 "universal-hash",8097]80988099[[package]]8100name = "ppv-lite86"8101version = "0.2.15"8102source = "registry+https://github.com/rust-lang/crates.io-index"8103checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"81048105[[package]]8106name = "primitive-types"8107version = "0.9.1"8108source = "registry+https://github.com/rust-lang/crates.io-index"8109checksum = "06345ee39fbccfb06ab45f3a1a5798d9dafa04cb8921a76d227040003a234b0e"8110dependencies = [8111 "fixed-hash",8112 "impl-codec",8113 "impl-rlp",8114 "uint",8115]81168117[[package]]8118name = "primitive-types"8119version = "0.10.1"8120source = "registry+https://github.com/rust-lang/crates.io-index"8121checksum = "05e4722c697a58a99d5d06a08c30821d7c082a4632198de1eaa5a6c22ef42373"8122dependencies = [8123 "fixed-hash",8124 "impl-codec",8125 "impl-rlp",8126 "impl-serde",8127 "scale-info",8128 "uint",8129]81308131[[package]]8132name = "proc-macro-crate"8133version = "0.1.5"8134source = "registry+https://github.com/rust-lang/crates.io-index"8135checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"8136dependencies = [8137 "toml",8138]81398140[[package]]8141name = "proc-macro-crate"8142version = "1.1.0"8143source = "registry+https://github.com/rust-lang/crates.io-index"8144checksum = "1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83"8145dependencies = [8146 "thiserror",8147 "toml",8148]81498150[[package]]8151name = "proc-macro-error"8152version = "0.4.12"8153source = "registry+https://github.com/rust-lang/crates.io-index"8154checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7"8155dependencies = [8156 "proc-macro-error-attr 0.4.12",8157 "proc-macro2",8158 "quote",8159 "syn",8160 "version_check",8161]81628163[[package]]8164name = "proc-macro-error"8165version = "1.0.4"8166source = "registry+https://github.com/rust-lang/crates.io-index"8167checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"8168dependencies = [8169 "proc-macro-error-attr 1.0.4",8170 "proc-macro2",8171 "quote",8172 "syn",8173 "version_check",8174]81758176[[package]]8177name = "proc-macro-error-attr"8178version = "0.4.12"8179source = "registry+https://github.com/rust-lang/crates.io-index"8180checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de"8181dependencies = [8182 "proc-macro2",8183 "quote",8184 "syn",8185 "syn-mid",8186 "version_check",8187]81888189[[package]]8190name = "proc-macro-error-attr"8191version = "1.0.4"8192source = "registry+https://github.com/rust-lang/crates.io-index"8193checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"8194dependencies = [8195 "proc-macro2",8196 "quote",8197 "version_check",8198]81998200[[package]]8201name = "proc-macro-hack"8202version = "0.5.19"8203source = "registry+https://github.com/rust-lang/crates.io-index"8204checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"82058206[[package]]8207name = "proc-macro-nested"8208version = "0.1.7"8209source = "registry+https://github.com/rust-lang/crates.io-index"8210checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"82118212[[package]]8213name = "proc-macro2"8214version = "1.0.32"8215source = "registry+https://github.com/rust-lang/crates.io-index"8216checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43"8217dependencies = [8218 "unicode-xid",8219]82208221[[package]]8222name = "prometheus"8223version = "0.12.0"8224source = "registry+https://github.com/rust-lang/crates.io-index"8225checksum = "5986aa8d62380092d2f50f8b1cdba9cb9b6731ffd4b25b51fd126b6c3e05b99c"8226dependencies = [8227 "cfg-if 1.0.0",8228 "fnv",8229 "lazy_static",8230 "memchr",8231 "parking_lot 0.11.2",8232 "thiserror",8233]82348235[[package]]8236name = "prost"8237version = "0.8.0"8238source = "registry+https://github.com/rust-lang/crates.io-index"8239checksum = "de5e2533f59d08fcf364fd374ebda0692a70bd6d7e66ef97f306f45c6c5d8020"8240dependencies = [8241 "bytes 1.1.0",8242 "prost-derive",8243]82448245[[package]]8246name = "prost-build"8247version = "0.8.0"8248source = "registry+https://github.com/rust-lang/crates.io-index"8249checksum = "355f634b43cdd80724ee7848f95770e7e70eefa6dcf14fea676216573b8fd603"8250dependencies = [8251 "bytes 1.1.0",8252 "heck",8253 "itertools",8254 "log",8255 "multimap",8256 "petgraph",8257 "prost",8258 "prost-types",8259 "tempfile",8260 "which",8261]82628263[[package]]8264name = "prost-derive"8265version = "0.8.0"8266source = "registry+https://github.com/rust-lang/crates.io-index"8267checksum = "600d2f334aa05acb02a755e217ef1ab6dea4d51b58b7846588b747edec04efba"8268dependencies = [8269 "anyhow",8270 "itertools",8271 "proc-macro2",8272 "quote",8273 "syn",8274]82758276[[package]]8277name = "prost-types"8278version = "0.8.0"8279source = "registry+https://github.com/rust-lang/crates.io-index"8280checksum = "603bbd6394701d13f3f25aada59c7de9d35a6a5887cfc156181234a44002771b"8281dependencies = [8282 "bytes 1.1.0",8283 "prost",8284]82858286[[package]]8287name = "psm"8288version = "0.1.16"8289source = "registry+https://github.com/rust-lang/crates.io-index"8290checksum = "cd136ff4382c4753fc061cb9e4712ab2af263376b95bbd5bd8cd50c020b78e69"8291dependencies = [8292 "cc",8293]82948295[[package]]8296name = "pwasm-utils"8297version = "0.18.2"8298source = "registry+https://github.com/rust-lang/crates.io-index"8299checksum = "880b3384fb00b8f6ecccd5d358b93bd2201900ae3daad213791d1864f6441f5c"8300dependencies = [8301 "byteorder",8302 "log",8303 "parity-wasm 0.42.2",8304]83058306[[package]]8307name = "quick-error"8308version = "1.2.3"8309source = "registry+https://github.com/rust-lang/crates.io-index"8310checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"83118312[[package]]8313name = "quick-error"8314version = "2.0.1"8315source = "registry+https://github.com/rust-lang/crates.io-index"8316checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"83178318[[package]]8319name = "quicksink"8320version = "0.1.2"8321source = "registry+https://github.com/rust-lang/crates.io-index"8322checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858"8323dependencies = [8324 "futures-core",8325 "futures-sink",8326 "pin-project-lite 0.1.12",8327]83288329[[package]]8330name = "quote"8331version = "1.0.10"8332source = "registry+https://github.com/rust-lang/crates.io-index"8333checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"8334dependencies = [8335 "proc-macro2",8336]83378338[[package]]8339name = "radium"8340version = "0.5.3"8341source = "registry+https://github.com/rust-lang/crates.io-index"8342checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"83438344[[package]]8345name = "radium"8346version = "0.6.2"8347source = "registry+https://github.com/rust-lang/crates.io-index"8348checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb"83498350[[package]]8351name = "rand"8352version = "0.7.3"8353source = "registry+https://github.com/rust-lang/crates.io-index"8354checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"8355dependencies = [8356 "getrandom 0.1.16",8357 "libc",8358 "rand_chacha 0.2.2",8359 "rand_core 0.5.1",8360 "rand_hc 0.2.0",8361 "rand_pcg",8362]83638364[[package]]8365name = "rand"8366version = "0.8.4"8367source = "registry+https://github.com/rust-lang/crates.io-index"8368checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"8369dependencies = [8370 "libc",8371 "rand_chacha 0.3.1",8372 "rand_core 0.6.3",8373 "rand_hc 0.3.1",8374]83758376[[package]]8377name = "rand_chacha"8378version = "0.2.2"8379source = "registry+https://github.com/rust-lang/crates.io-index"8380checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"8381dependencies = [8382 "ppv-lite86",8383 "rand_core 0.5.1",8384]83858386[[package]]8387name = "rand_chacha"8388version = "0.3.1"8389source = "registry+https://github.com/rust-lang/crates.io-index"8390checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"8391dependencies = [8392 "ppv-lite86",8393 "rand_core 0.6.3",8394]83958396[[package]]8397name = "rand_core"8398version = "0.5.1"8399source = "registry+https://github.com/rust-lang/crates.io-index"8400checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"8401dependencies = [8402 "getrandom 0.1.16",8403]84048405[[package]]8406name = "rand_core"8407version = "0.6.3"8408source = "registry+https://github.com/rust-lang/crates.io-index"8409checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"8410dependencies = [8411 "getrandom 0.2.3",8412]84138414[[package]]8415name = "rand_distr"8416version = "0.4.2"8417source = "registry+https://github.com/rust-lang/crates.io-index"8418checksum = "964d548f8e7d12e102ef183a0de7e98180c9f8729f555897a857b96e48122d2f"8419dependencies = [8420 "num-traits",8421 "rand 0.8.4",8422]84238424[[package]]8425name = "rand_hc"8426version = "0.2.0"8427source = "registry+https://github.com/rust-lang/crates.io-index"8428checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"8429dependencies = [8430 "rand_core 0.5.1",8431]84328433[[package]]8434name = "rand_hc"8435version = "0.3.1"8436source = "registry+https://github.com/rust-lang/crates.io-index"8437checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"8438dependencies = [8439 "rand_core 0.6.3",8440]84418442[[package]]8443name = "rand_pcg"8444version = "0.2.1"8445source = "registry+https://github.com/rust-lang/crates.io-index"8446checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"8447dependencies = [8448 "rand_core 0.5.1",8449]84508451[[package]]8452name = "rawpointer"8453version = "0.2.1"8454source = "registry+https://github.com/rust-lang/crates.io-index"8455checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"84568457[[package]]8458name = "rayon"8459version = "1.5.1"8460source = "registry+https://github.com/rust-lang/crates.io-index"8461checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"8462dependencies = [8463 "autocfg",8464 "crossbeam-deque",8465 "either",8466 "rayon-core",8467]84688469[[package]]8470name = "rayon-core"8471version = "1.9.1"8472source = "registry+https://github.com/rust-lang/crates.io-index"8473checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"8474dependencies = [8475 "crossbeam-channel",8476 "crossbeam-deque",8477 "crossbeam-utils",8478 "lazy_static",8479 "num_cpus",8480]84818482[[package]]8483name = "redox_syscall"8484version = "0.1.57"8485source = "registry+https://github.com/rust-lang/crates.io-index"8486checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"84878488[[package]]8489name = "redox_syscall"8490version = "0.2.10"8491source = "registry+https://github.com/rust-lang/crates.io-index"8492checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"8493dependencies = [8494 "bitflags",8495]84968497[[package]]8498name = "redox_users"8499version = "0.4.0"8500source = "registry+https://github.com/rust-lang/crates.io-index"8501checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"8502dependencies = [8503 "getrandom 0.2.3",8504 "redox_syscall 0.2.10",8505]85068507[[package]]8508name = "reed-solomon-novelpoly"8509version = "1.0.0"8510source = "registry+https://github.com/rust-lang/crates.io-index"8511checksum = "3bd8f48b2066e9f69ab192797d66da804d1935bf22763204ed3675740cb0f221"8512dependencies = [8513 "derive_more",8514 "fs-err",8515 "itertools",8516 "static_init",8517 "thiserror",8518]85198520[[package]]8521name = "ref-cast"8522version = "1.0.6"8523source = "registry+https://github.com/rust-lang/crates.io-index"8524checksum = "300f2a835d808734ee295d45007adacb9ebb29dd3ae2424acfa17930cae541da"8525dependencies = [8526 "ref-cast-impl",8527]85288529[[package]]8530name = "ref-cast-impl"8531version = "1.0.6"8532source = "registry+https://github.com/rust-lang/crates.io-index"8533checksum = "4c38e3aecd2b21cb3959637b883bb3714bc7e43f0268b9a29d3743ee3e55cdd2"8534dependencies = [8535 "proc-macro2",8536 "quote",8537 "syn",8538]85398540[[package]]8541name = "regalloc"8542version = "0.0.31"8543source = "registry+https://github.com/rust-lang/crates.io-index"8544checksum = "571f7f397d61c4755285cd37853fe8e03271c243424a907415909379659381c5"8545dependencies = [8546 "log",8547 "rustc-hash",8548 "smallvec",8549]85508551[[package]]8552name = "regex"8553version = "1.5.4"8554source = "registry+https://github.com/rust-lang/crates.io-index"8555checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"8556dependencies = [8557 "aho-corasick",8558 "memchr",8559 "regex-syntax",8560]85618562[[package]]8563name = "regex-automata"8564version = "0.1.10"8565source = "registry+https://github.com/rust-lang/crates.io-index"8566checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"8567dependencies = [8568 "regex-syntax",8569]85708571[[package]]8572name = "regex-syntax"8573version = "0.6.25"8574source = "registry+https://github.com/rust-lang/crates.io-index"8575checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"85768577[[package]]8578name = "region"8579version = "2.2.0"8580source = "registry+https://github.com/rust-lang/crates.io-index"8581checksum = "877e54ea2adcd70d80e9179344c97f93ef0dffd6b03e1f4529e6e83ab2fa9ae0"8582dependencies = [8583 "bitflags",8584 "libc",8585 "mach",8586 "winapi 0.3.9",8587]85888589[[package]]8590name = "remote-externalities"8591version = "0.10.0-dev"8592source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8593dependencies = [8594 "env_logger 0.9.0",8595 "jsonrpsee-proc-macros",8596 "jsonrpsee-ws-client",8597 "log",8598 "parity-scale-codec",8599 "serde",8600 "serde_json",8601 "sp-core",8602 "sp-io",8603 "sp-runtime",8604 "sp-version",8605]86068607[[package]]8608name = "remove_dir_all"8609version = "0.5.3"8610source = "registry+https://github.com/rust-lang/crates.io-index"8611checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"8612dependencies = [8613 "winapi 0.3.9",8614]86158616[[package]]8617name = "resolv-conf"8618version = "0.7.0"8619source = "registry+https://github.com/rust-lang/crates.io-index"8620checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"8621dependencies = [8622 "hostname",8623 "quick-error 1.2.3",8624]86258626[[package]]8627name = "retain_mut"8628version = "0.1.4"8629source = "registry+https://github.com/rust-lang/crates.io-index"8630checksum = "448296241d034b96c11173591deaa1302f2c17b56092106c1f92c1bc0183a8c9"86318632[[package]]8633name = "ring"8634version = "0.16.20"8635source = "registry+https://github.com/rust-lang/crates.io-index"8636checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"8637dependencies = [8638 "cc",8639 "libc",8640 "once_cell",8641 "spin",8642 "untrusted",8643 "web-sys",8644 "winapi 0.3.9",8645]86468647[[package]]8648name = "rlp"8649version = "0.5.1"8650source = "registry+https://github.com/rust-lang/crates.io-index"8651checksum = "999508abb0ae792aabed2460c45b89106d97fe4adac593bdaef433c2605847b5"8652dependencies = [8653 "bytes 1.1.0",8654 "rustc-hex",8655]86568657[[package]]8658name = "rlp-derive"8659version = "0.1.0"8660source = "registry+https://github.com/rust-lang/crates.io-index"8661checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a"8662dependencies = [8663 "proc-macro2",8664 "quote",8665 "syn",8666]86678668[[package]]8669name = "rocksdb"8670version = "0.17.0"8671source = "registry+https://github.com/rust-lang/crates.io-index"8672checksum = "7a62eca5cacf2c8261128631bed9f045598d40bfbe4b29f5163f0f802f8f44a7"8673dependencies = [8674 "libc",8675 "librocksdb-sys",8676]86778678[[package]]8679name = "rococo-runtime"8680version = "0.9.12"8681source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"8682dependencies = [8683 "beefy-primitives",8684 "bp-messages",8685 "bp-rococo",8686 "bp-runtime",8687 "bp-wococo",8688 "bridge-runtime-common",8689 "frame-benchmarking",8690 "frame-executive",8691 "frame-support",8692 "frame-system",8693 "frame-system-rpc-runtime-api",8694 "hex-literal",8695 "log",8696 "pallet-authority-discovery",8697 "pallet-authorship",8698 "pallet-babe",8699 "pallet-balances",8700 "pallet-beefy",8701 "pallet-beefy-mmr",8702 "pallet-bridge-dispatch",8703 "pallet-bridge-grandpa",8704 "pallet-bridge-messages",8705 "pallet-collective",8706 "pallet-grandpa",8707 "pallet-im-online",8708 "pallet-indices",8709 "pallet-membership",8710 "pallet-mmr",8711 "pallet-mmr-primitives",8712 "pallet-multisig",8713 "pallet-offences",8714 "pallet-proxy",8715 "pallet-session",8716 "pallet-staking",8717 "pallet-sudo",8718 "pallet-timestamp",8719 "pallet-transaction-payment",8720 "pallet-transaction-payment-rpc-runtime-api",8721 "pallet-utility",8722 "pallet-xcm",8723 "parity-scale-codec",8724 "polkadot-parachain",8725 "polkadot-primitives",8726 "polkadot-runtime-common",8727 "polkadot-runtime-parachains",8728 "scale-info",8729 "serde",8730 "serde_derive",8731 "smallvec",8732 "sp-api",8733 "sp-authority-discovery",8734 "sp-block-builder",8735 "sp-consensus-babe",8736 "sp-core",8737 "sp-inherents",8738 "sp-io",8739 "sp-offchain",8740 "sp-runtime",8741 "sp-session",8742 "sp-staking",8743 "sp-std",8744 "sp-transaction-pool",8745 "sp-version",8746 "substrate-wasm-builder",8747 "xcm",8748 "xcm-builder",8749 "xcm-executor",8750]87518752[[package]]8753name = "rpassword"8754version = "5.0.1"8755source = "registry+https://github.com/rust-lang/crates.io-index"8756checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb"8757dependencies = [8758 "libc",8759 "winapi 0.3.9",8760]87618762[[package]]8763name = "rustc-demangle"8764version = "0.1.21"8765source = "registry+https://github.com/rust-lang/crates.io-index"8766checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"87678768[[package]]8769name = "rustc-hash"8770version = "1.1.0"8771source = "registry+https://github.com/rust-lang/crates.io-index"8772checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"87738774[[package]]8775name = "rustc-hex"8776version = "2.1.0"8777source = "registry+https://github.com/rust-lang/crates.io-index"8778checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"87798780[[package]]8781name = "rustc_version"8782version = "0.2.3"8783source = "registry+https://github.com/rust-lang/crates.io-index"8784checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"8785dependencies = [8786 "semver 0.9.0",8787]87888789[[package]]8790name = "rustc_version"8791version = "0.3.3"8792source = "registry+https://github.com/rust-lang/crates.io-index"8793checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"8794dependencies = [8795 "semver 0.11.0",8796]87978798[[package]]8799name = "rustls"8800version = "0.19.1"8801source = "registry+https://github.com/rust-lang/crates.io-index"8802checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"8803dependencies = [8804 "base64 0.13.0",8805 "log",8806 "ring",8807 "sct",8808 "webpki",8809]88108811[[package]]8812name = "rustls-native-certs"8813version = "0.5.0"8814source = "registry+https://github.com/rust-lang/crates.io-index"8815checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092"8816dependencies = [8817 "openssl-probe",8818 "rustls",8819 "schannel",8820 "security-framework",8821]88228823[[package]]8824name = "rw-stream-sink"8825version = "0.2.1"8826source = "registry+https://github.com/rust-lang/crates.io-index"8827checksum = "4da5fcb054c46f5a5dff833b129285a93d3f0179531735e6c866e8cc307d2020"8828dependencies = [8829 "futures 0.3.17",8830 "pin-project 0.4.28",8831 "static_assertions",8832]88338834[[package]]8835name = "ryu"8836version = "1.0.5"8837source = "registry+https://github.com/rust-lang/crates.io-index"8838checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"88398840[[package]]8841name = "safe-mix"8842version = "1.0.1"8843source = "registry+https://github.com/rust-lang/crates.io-index"8844checksum = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c"8845dependencies = [8846 "rustc_version 0.2.3",8847]88488849[[package]]8850name = "salsa20"8851version = "0.8.1"8852source = "registry+https://github.com/rust-lang/crates.io-index"8853checksum = "ecbd2eb639fd7cab5804a0837fe373cc2172d15437e804c054a9fb885cb923b0"8854dependencies = [8855 "cipher",8856]88578858[[package]]8859name = "same-file"8860version = "1.0.6"8861source = "registry+https://github.com/rust-lang/crates.io-index"8862checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"8863dependencies = [8864 "winapi-util",8865]88668867[[package]]8868name = "sc-allocator"8869version = "4.0.0-dev"8870source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8871dependencies = [8872 "log",8873 "sp-core",8874 "sp-wasm-interface",8875 "thiserror",8876]88778878[[package]]8879name = "sc-authority-discovery"8880version = "0.10.0-dev"8881source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8882dependencies = [8883 "async-trait",8884 "derive_more",8885 "futures 0.3.17",8886 "futures-timer 3.0.2",8887 "ip_network",8888 "libp2p",8889 "log",8890 "parity-scale-codec",8891 "prost",8892 "prost-build",8893 "rand 0.7.3",8894 "sc-client-api",8895 "sc-network",8896 "sp-api",8897 "sp-authority-discovery",8898 "sp-blockchain",8899 "sp-core",8900 "sp-keystore",8901 "sp-runtime",8902 "substrate-prometheus-endpoint",8903]89048905[[package]]8906name = "sc-basic-authorship"8907version = "0.10.0-dev"8908source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8909dependencies = [8910 "futures 0.3.17",8911 "futures-timer 3.0.2",8912 "log",8913 "parity-scale-codec",8914 "sc-block-builder",8915 "sc-client-api",8916 "sc-proposer-metrics",8917 "sc-telemetry",8918 "sc-transaction-pool-api",8919 "sp-api",8920 "sp-blockchain",8921 "sp-consensus",8922 "sp-core",8923 "sp-inherents",8924 "sp-runtime",8925 "substrate-prometheus-endpoint",8926]89278928[[package]]8929name = "sc-block-builder"8930version = "0.10.0-dev"8931source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8932dependencies = [8933 "parity-scale-codec",8934 "sc-client-api",8935 "sp-api",8936 "sp-block-builder",8937 "sp-blockchain",8938 "sp-core",8939 "sp-inherents",8940 "sp-runtime",8941 "sp-state-machine",8942]89438944[[package]]8945name = "sc-chain-spec"8946version = "4.0.0-dev"8947source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8948dependencies = [8949 "impl-trait-for-tuples 0.2.1",8950 "parity-scale-codec",8951 "sc-chain-spec-derive",8952 "sc-network",8953 "sc-telemetry",8954 "serde",8955 "serde_json",8956 "sp-core",8957 "sp-runtime",8958]89598960[[package]]8961name = "sc-chain-spec-derive"8962version = "4.0.0-dev"8963source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8964dependencies = [8965 "proc-macro-crate 1.1.0",8966 "proc-macro2",8967 "quote",8968 "syn",8969]89708971[[package]]8972name = "sc-cli"8973version = "0.10.0-dev"8974source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"8975dependencies = [8976 "chrono",8977 "fdlimit",8978 "futures 0.3.17",8979 "hex",8980 "libp2p",8981 "log",8982 "names",8983 "parity-scale-codec",8984 "rand 0.7.3",8985 "regex",8986 "rpassword",8987 "sc-client-api",8988 "sc-keystore",8989 "sc-network",8990 "sc-service",8991 "sc-telemetry",8992 "sc-tracing",8993 "sc-utils",8994 "serde",8995 "serde_json",8996 "sp-blockchain",8997 "sp-core",8998 "sp-keyring",8999 "sp-keystore",9000 "sp-panic-handler",9001 "sp-runtime",9002 "sp-version",9003 "structopt",9004 "thiserror",9005 "tiny-bip39",9006 "tokio 1.13.0",9007]90089009[[package]]9010name = "sc-client-api"9011version = "4.0.0-dev"9012source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9013dependencies = [9014 "fnv",9015 "futures 0.3.17",9016 "hash-db",9017 "log",9018 "parity-scale-codec",9019 "parking_lot 0.11.2",9020 "sc-executor",9021 "sc-transaction-pool-api",9022 "sc-utils",9023 "sp-api",9024 "sp-blockchain",9025 "sp-consensus",9026 "sp-core",9027 "sp-database",9028 "sp-externalities",9029 "sp-keystore",9030 "sp-runtime",9031 "sp-state-machine",9032 "sp-storage",9033 "sp-trie",9034 "substrate-prometheus-endpoint",9035]90369037[[package]]9038name = "sc-client-db"9039version = "0.10.0-dev"9040source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9041dependencies = [9042 "hash-db",9043 "kvdb",9044 "kvdb-memorydb",9045 "kvdb-rocksdb",9046 "linked-hash-map",9047 "log",9048 "parity-db",9049 "parity-scale-codec",9050 "parking_lot 0.11.2",9051 "sc-client-api",9052 "sc-state-db",9053 "sp-arithmetic",9054 "sp-blockchain",9055 "sp-core",9056 "sp-database",9057 "sp-runtime",9058 "sp-state-machine",9059 "sp-trie",9060]90619062[[package]]9063name = "sc-consensus"9064version = "0.10.0-dev"9065source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9066dependencies = [9067 "async-trait",9068 "futures 0.3.17",9069 "futures-timer 3.0.2",9070 "libp2p",9071 "log",9072 "parking_lot 0.11.2",9073 "sc-client-api",9074 "sc-utils",9075 "serde",9076 "sp-api",9077 "sp-blockchain",9078 "sp-consensus",9079 "sp-core",9080 "sp-runtime",9081 "sp-state-machine",9082 "substrate-prometheus-endpoint",9083 "thiserror",9084]90859086[[package]]9087name = "sc-consensus-aura"9088version = "0.10.0-dev"9089source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9090dependencies = [9091 "async-trait",9092 "derive_more",9093 "futures 0.3.17",9094 "log",9095 "parity-scale-codec",9096 "sc-block-builder",9097 "sc-client-api",9098 "sc-consensus",9099 "sc-consensus-slots",9100 "sc-telemetry",9101 "sp-api",9102 "sp-application-crypto",9103 "sp-block-builder",9104 "sp-blockchain",9105 "sp-consensus",9106 "sp-consensus-aura",9107 "sp-consensus-slots",9108 "sp-core",9109 "sp-inherents",9110 "sp-keystore",9111 "sp-runtime",9112 "substrate-prometheus-endpoint",9113]91149115[[package]]9116name = "sc-consensus-babe"9117version = "0.10.0-dev"9118source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9119dependencies = [9120 "async-trait",9121 "derive_more",9122 "fork-tree",9123 "futures 0.3.17",9124 "log",9125 "merlin",9126 "num-bigint",9127 "num-rational 0.2.4",9128 "num-traits",9129 "parity-scale-codec",9130 "parking_lot 0.11.2",9131 "rand 0.7.3",9132 "retain_mut",9133 "sc-client-api",9134 "sc-consensus",9135 "sc-consensus-epochs",9136 "sc-consensus-slots",9137 "sc-keystore",9138 "sc-telemetry",9139 "schnorrkel",9140 "serde",9141 "sp-api",9142 "sp-application-crypto",9143 "sp-block-builder",9144 "sp-blockchain",9145 "sp-consensus",9146 "sp-consensus-babe",9147 "sp-consensus-slots",9148 "sp-consensus-vrf",9149 "sp-core",9150 "sp-inherents",9151 "sp-io",9152 "sp-keystore",9153 "sp-runtime",9154 "sp-version",9155 "substrate-prometheus-endpoint",9156]91579158[[package]]9159name = "sc-consensus-babe-rpc"9160version = "0.10.0-dev"9161source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9162dependencies = [9163 "derive_more",9164 "futures 0.3.17",9165 "jsonrpc-core",9166 "jsonrpc-core-client",9167 "jsonrpc-derive",9168 "sc-consensus-babe",9169 "sc-consensus-epochs",9170 "sc-rpc-api",9171 "serde",9172 "sp-api",9173 "sp-application-crypto",9174 "sp-blockchain",9175 "sp-consensus",9176 "sp-consensus-babe",9177 "sp-core",9178 "sp-keystore",9179 "sp-runtime",9180]91819182[[package]]9183name = "sc-consensus-epochs"9184version = "0.10.0-dev"9185source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9186dependencies = [9187 "fork-tree",9188 "parity-scale-codec",9189 "sc-client-api",9190 "sc-consensus",9191 "sp-blockchain",9192 "sp-runtime",9193]91949195[[package]]9196name = "sc-consensus-slots"9197version = "0.10.0-dev"9198source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9199dependencies = [9200 "async-trait",9201 "futures 0.3.17",9202 "futures-timer 3.0.2",9203 "log",9204 "parity-scale-codec",9205 "sc-client-api",9206 "sc-consensus",9207 "sc-telemetry",9208 "sp-api",9209 "sp-arithmetic",9210 "sp-blockchain",9211 "sp-consensus",9212 "sp-consensus-slots",9213 "sp-core",9214 "sp-inherents",9215 "sp-runtime",9216 "sp-state-machine",9217 "sp-timestamp",9218 "thiserror",9219]92209221[[package]]9222name = "sc-consensus-uncles"9223version = "0.10.0-dev"9224source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9225dependencies = [9226 "sc-client-api",9227 "sp-authorship",9228 "sp-runtime",9229 "thiserror",9230]92319232[[package]]9233name = "sc-executor"9234version = "0.10.0-dev"9235source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9236dependencies = [9237 "lazy_static",9238 "libsecp256k1 0.6.0",9239 "log",9240 "parity-scale-codec",9241 "parking_lot 0.11.2",9242 "sc-executor-common",9243 "sc-executor-wasmi",9244 "sc-executor-wasmtime",9245 "sp-api",9246 "sp-core",9247 "sp-externalities",9248 "sp-io",9249 "sp-panic-handler",9250 "sp-runtime-interface",9251 "sp-tasks",9252 "sp-trie",9253 "sp-version",9254 "sp-wasm-interface",9255 "wasmi",9256]92579258[[package]]9259name = "sc-executor-common"9260version = "0.10.0-dev"9261source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9262dependencies = [9263 "derive_more",9264 "environmental",9265 "parity-scale-codec",9266 "pwasm-utils",9267 "sc-allocator",9268 "sp-core",9269 "sp-maybe-compressed-blob",9270 "sp-serializer",9271 "sp-wasm-interface",9272 "thiserror",9273 "wasmi",9274]92759276[[package]]9277name = "sc-executor-wasmi"9278version = "0.10.0-dev"9279source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9280dependencies = [9281 "log",9282 "parity-scale-codec",9283 "sc-allocator",9284 "sc-executor-common",9285 "scoped-tls",9286 "sp-core",9287 "sp-runtime-interface",9288 "sp-wasm-interface",9289 "wasmi",9290]92919292[[package]]9293name = "sc-executor-wasmtime"9294version = "0.10.0-dev"9295source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9296dependencies = [9297 "cfg-if 1.0.0",9298 "libc",9299 "log",9300 "parity-scale-codec",9301 "parity-wasm 0.42.2",9302 "sc-allocator",9303 "sc-executor-common",9304 "sp-core",9305 "sp-runtime-interface",9306 "sp-wasm-interface",9307 "wasmtime",9308]93099310[[package]]9311name = "sc-finality-grandpa"9312version = "0.10.0-dev"9313source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9314dependencies = [9315 "async-trait",9316 "derive_more",9317 "dyn-clone",9318 "finality-grandpa",9319 "fork-tree",9320 "futures 0.3.17",9321 "futures-timer 3.0.2",9322 "log",9323 "parity-scale-codec",9324 "parking_lot 0.11.2",9325 "rand 0.8.4",9326 "sc-block-builder",9327 "sc-client-api",9328 "sc-consensus",9329 "sc-keystore",9330 "sc-network",9331 "sc-network-gossip",9332 "sc-telemetry",9333 "sc-utils",9334 "serde_json",9335 "sp-api",9336 "sp-application-crypto",9337 "sp-arithmetic",9338 "sp-blockchain",9339 "sp-consensus",9340 "sp-core",9341 "sp-finality-grandpa",9342 "sp-keystore",9343 "sp-runtime",9344 "substrate-prometheus-endpoint",9345]93469347[[package]]9348name = "sc-finality-grandpa-rpc"9349version = "0.10.0-dev"9350source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9351dependencies = [9352 "derive_more",9353 "finality-grandpa",9354 "futures 0.3.17",9355 "jsonrpc-core",9356 "jsonrpc-core-client",9357 "jsonrpc-derive",9358 "jsonrpc-pubsub",9359 "log",9360 "parity-scale-codec",9361 "sc-client-api",9362 "sc-finality-grandpa",9363 "sc-rpc",9364 "serde",9365 "serde_json",9366 "sp-blockchain",9367 "sp-core",9368 "sp-runtime",9369]93709371[[package]]9372name = "sc-informant"9373version = "0.10.0-dev"9374source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9375dependencies = [9376 "ansi_term 0.12.1",9377 "futures 0.3.17",9378 "futures-timer 3.0.2",9379 "log",9380 "parity-util-mem",9381 "sc-client-api",9382 "sc-network",9383 "sc-transaction-pool-api",9384 "sp-blockchain",9385 "sp-runtime",9386]93879388[[package]]9389name = "sc-keystore"9390version = "4.0.0-dev"9391source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9392dependencies = [9393 "async-trait",9394 "derive_more",9395 "hex",9396 "parking_lot 0.11.2",9397 "serde_json",9398 "sp-application-crypto",9399 "sp-core",9400 "sp-keystore",9401]94029403[[package]]9404name = "sc-light"9405version = "4.0.0-dev"9406source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9407dependencies = [9408 "hash-db",9409 "parity-scale-codec",9410 "parking_lot 0.11.2",9411 "sc-client-api",9412 "sc-executor",9413 "sp-api",9414 "sp-blockchain",9415 "sp-core",9416 "sp-externalities",9417 "sp-runtime",9418 "sp-state-machine",9419]94209421[[package]]9422name = "sc-network"9423version = "0.10.0-dev"9424source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9425dependencies = [9426 "async-std",9427 "async-trait",9428 "asynchronous-codec 0.5.0",9429 "bitflags",9430 "bytes 1.1.0",9431 "cid",9432 "derive_more",9433 "either",9434 "fnv",9435 "fork-tree",9436 "futures 0.3.17",9437 "futures-timer 3.0.2",9438 "hex",9439 "ip_network",9440 "libp2p",9441 "linked-hash-map",9442 "linked_hash_set",9443 "log",9444 "lru 0.6.6",9445 "parity-scale-codec",9446 "parking_lot 0.11.2",9447 "pin-project 1.0.8",9448 "prost",9449 "prost-build",9450 "rand 0.7.3",9451 "sc-block-builder",9452 "sc-client-api",9453 "sc-consensus",9454 "sc-peerset",9455 "sc-utils",9456 "serde",9457 "serde_json",9458 "smallvec",9459 "sp-arithmetic",9460 "sp-blockchain",9461 "sp-consensus",9462 "sp-core",9463 "sp-finality-grandpa",9464 "sp-runtime",9465 "substrate-prometheus-endpoint",9466 "thiserror",9467 "unsigned-varint 0.6.0",9468 "void",9469 "zeroize",9470]94719472[[package]]9473name = "sc-network-gossip"9474version = "0.10.0-dev"9475source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9476dependencies = [9477 "futures 0.3.17",9478 "futures-timer 3.0.2",9479 "libp2p",9480 "log",9481 "lru 0.6.6",9482 "sc-network",9483 "sp-runtime",9484 "substrate-prometheus-endpoint",9485 "tracing",9486]94879488[[package]]9489name = "sc-offchain"9490version = "4.0.0-dev"9491source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9492dependencies = [9493 "bytes 1.1.0",9494 "fnv",9495 "futures 0.3.17",9496 "futures-timer 3.0.2",9497 "hex",9498 "hyper",9499 "hyper-rustls",9500 "log",9501 "num_cpus",9502 "parity-scale-codec",9503 "parking_lot 0.11.2",9504 "rand 0.7.3",9505 "sc-client-api",9506 "sc-network",9507 "sc-utils",9508 "sp-api",9509 "sp-core",9510 "sp-offchain",9511 "sp-runtime",9512 "threadpool",9513]95149515[[package]]9516name = "sc-peerset"9517version = "4.0.0-dev"9518source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9519dependencies = [9520 "futures 0.3.17",9521 "libp2p",9522 "log",9523 "sc-utils",9524 "serde_json",9525 "wasm-timer",9526]95279528[[package]]9529name = "sc-proposer-metrics"9530version = "0.9.0"9531source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9532dependencies = [9533 "log",9534 "substrate-prometheus-endpoint",9535]95369537[[package]]9538name = "sc-rpc"9539version = "4.0.0-dev"9540source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9541dependencies = [9542 "futures 0.3.17",9543 "hash-db",9544 "jsonrpc-core",9545 "jsonrpc-pubsub",9546 "log",9547 "parity-scale-codec",9548 "parking_lot 0.11.2",9549 "sc-block-builder",9550 "sc-chain-spec",9551 "sc-client-api",9552 "sc-rpc-api",9553 "sc-tracing",9554 "sc-transaction-pool-api",9555 "sc-utils",9556 "serde_json",9557 "sp-api",9558 "sp-blockchain",9559 "sp-core",9560 "sp-keystore",9561 "sp-offchain",9562 "sp-rpc",9563 "sp-runtime",9564 "sp-session",9565 "sp-version",9566]95679568[[package]]9569name = "sc-rpc-api"9570version = "0.10.0-dev"9571source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9572dependencies = [9573 "futures 0.3.17",9574 "jsonrpc-core",9575 "jsonrpc-core-client",9576 "jsonrpc-derive",9577 "jsonrpc-pubsub",9578 "log",9579 "parity-scale-codec",9580 "parking_lot 0.11.2",9581 "sc-chain-spec",9582 "sc-transaction-pool-api",9583 "serde",9584 "serde_json",9585 "sp-core",9586 "sp-rpc",9587 "sp-runtime",9588 "sp-tracing",9589 "sp-version",9590 "thiserror",9591]95929593[[package]]9594name = "sc-rpc-server"9595version = "4.0.0-dev"9596source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9597dependencies = [9598 "futures 0.3.17",9599 "jsonrpc-core",9600 "jsonrpc-http-server",9601 "jsonrpc-ipc-server",9602 "jsonrpc-pubsub",9603 "jsonrpc-ws-server",9604 "log",9605 "serde_json",9606 "substrate-prometheus-endpoint",9607 "tokio 1.13.0",9608]96099610[[package]]9611name = "sc-service"9612version = "0.10.0-dev"9613source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9614dependencies = [9615 "async-trait",9616 "directories",9617 "exit-future",9618 "futures 0.3.17",9619 "futures-timer 3.0.2",9620 "hash-db",9621 "jsonrpc-core",9622 "jsonrpc-pubsub",9623 "log",9624 "parity-scale-codec",9625 "parity-util-mem",9626 "parking_lot 0.11.2",9627 "pin-project 1.0.8",9628 "rand 0.7.3",9629 "sc-block-builder",9630 "sc-chain-spec",9631 "sc-client-api",9632 "sc-client-db",9633 "sc-consensus",9634 "sc-executor",9635 "sc-informant",9636 "sc-keystore",9637 "sc-light",9638 "sc-network",9639 "sc-offchain",9640 "sc-rpc",9641 "sc-rpc-server",9642 "sc-telemetry",9643 "sc-tracing",9644 "sc-transaction-pool",9645 "sc-transaction-pool-api",9646 "sc-utils",9647 "serde",9648 "serde_json",9649 "sp-api",9650 "sp-application-crypto",9651 "sp-block-builder",9652 "sp-blockchain",9653 "sp-consensus",9654 "sp-core",9655 "sp-externalities",9656 "sp-inherents",9657 "sp-keystore",9658 "sp-runtime",9659 "sp-session",9660 "sp-state-machine",9661 "sp-storage",9662 "sp-tracing",9663 "sp-transaction-pool",9664 "sp-transaction-storage-proof",9665 "sp-trie",9666 "sp-version",9667 "substrate-prometheus-endpoint",9668 "tempfile",9669 "thiserror",9670 "tokio 1.13.0",9671 "tracing",9672 "tracing-futures",9673]96749675[[package]]9676name = "sc-state-db"9677version = "0.10.0-dev"9678source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9679dependencies = [9680 "log",9681 "parity-scale-codec",9682 "parity-util-mem",9683 "parity-util-mem-derive",9684 "parking_lot 0.11.2",9685 "sc-client-api",9686 "sp-core",9687]96889689[[package]]9690name = "sc-sync-state-rpc"9691version = "0.10.0-dev"9692source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9693dependencies = [9694 "jsonrpc-core",9695 "jsonrpc-core-client",9696 "jsonrpc-derive",9697 "parity-scale-codec",9698 "sc-chain-spec",9699 "sc-client-api",9700 "sc-consensus-babe",9701 "sc-consensus-epochs",9702 "sc-finality-grandpa",9703 "sc-rpc-api",9704 "serde",9705 "serde_json",9706 "sp-blockchain",9707 "sp-runtime",9708 "thiserror",9709]97109711[[package]]9712name = "sc-telemetry"9713version = "4.0.0-dev"9714source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9715dependencies = [9716 "chrono",9717 "futures 0.3.17",9718 "libp2p",9719 "log",9720 "parking_lot 0.11.2",9721 "pin-project 1.0.8",9722 "rand 0.7.3",9723 "serde",9724 "serde_json",9725 "thiserror",9726 "wasm-timer",9727]97289729[[package]]9730name = "sc-tracing"9731version = "4.0.0-dev"9732source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9733dependencies = [9734 "ansi_term 0.12.1",9735 "atty",9736 "chrono",9737 "lazy_static",9738 "log",9739 "once_cell",9740 "parking_lot 0.11.2",9741 "regex",9742 "rustc-hash",9743 "sc-client-api",9744 "sc-rpc-server",9745 "sc-tracing-proc-macro",9746 "serde",9747 "sp-api",9748 "sp-blockchain",9749 "sp-core",9750 "sp-rpc",9751 "sp-runtime",9752 "sp-tracing",9753 "thiserror",9754 "tracing",9755 "tracing-log",9756 "tracing-subscriber",9757]97589759[[package]]9760name = "sc-tracing-proc-macro"9761version = "4.0.0-dev"9762source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9763dependencies = [9764 "proc-macro-crate 1.1.0",9765 "proc-macro2",9766 "quote",9767 "syn",9768]97699770[[package]]9771name = "sc-transaction-pool"9772version = "4.0.0-dev"9773source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9774dependencies = [9775 "futures 0.3.17",9776 "intervalier",9777 "linked-hash-map",9778 "log",9779 "parity-scale-codec",9780 "parity-util-mem",9781 "parking_lot 0.11.2",9782 "retain_mut",9783 "sc-client-api",9784 "sc-transaction-pool-api",9785 "sc-utils",9786 "serde",9787 "sp-api",9788 "sp-blockchain",9789 "sp-core",9790 "sp-runtime",9791 "sp-tracing",9792 "sp-transaction-pool",9793 "substrate-prometheus-endpoint",9794 "thiserror",9795]97969797[[package]]9798name = "sc-transaction-pool-api"9799version = "4.0.0-dev"9800source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9801dependencies = [9802 "derive_more",9803 "futures 0.3.17",9804 "log",9805 "serde",9806 "sp-blockchain",9807 "sp-runtime",9808 "thiserror",9809]98109811[[package]]9812name = "sc-utils"9813version = "4.0.0-dev"9814source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"9815dependencies = [9816 "futures 0.3.17",9817 "futures-timer 3.0.2",9818 "lazy_static",9819 "prometheus",9820]98219822[[package]]9823name = "scale-info"9824version = "1.0.0"9825source = "registry+https://github.com/rust-lang/crates.io-index"9826checksum = "5c55b744399c25532d63a0d2789b109df8d46fc93752d46b0782991a931a782f"9827dependencies = [9828 "bitvec 0.20.4",9829 "cfg-if 1.0.0",9830 "derive_more",9831 "parity-scale-codec",9832 "scale-info-derive",9833 "serde",9834]98359836[[package]]9837name = "scale-info-derive"9838version = "1.0.0"9839source = "registry+https://github.com/rust-lang/crates.io-index"9840checksum = "baeb2780690380592f86205aa4ee49815feb2acad8c2f59e6dd207148c3f1fcd"9841dependencies = [9842 "proc-macro-crate 1.1.0",9843 "proc-macro2",9844 "quote",9845 "syn",9846]98479848[[package]]9849name = "schannel"9850version = "0.1.19"9851source = "registry+https://github.com/rust-lang/crates.io-index"9852checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"9853dependencies = [9854 "lazy_static",9855 "winapi 0.3.9",9856]98579858[[package]]9859name = "schnorrkel"9860version = "0.9.1"9861source = "registry+https://github.com/rust-lang/crates.io-index"9862checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"9863dependencies = [9864 "arrayref",9865 "arrayvec 0.5.2",9866 "curve25519-dalek 2.1.3",9867 "getrandom 0.1.16",9868 "merlin",9869 "rand 0.7.3",9870 "rand_core 0.5.1",9871 "sha2 0.8.2",9872 "subtle 2.4.1",9873 "zeroize",9874]98759876[[package]]9877name = "scoped-tls"9878version = "1.0.0"9879source = "registry+https://github.com/rust-lang/crates.io-index"9880checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"98819882[[package]]9883name = "scopeguard"9884version = "1.1.0"9885source = "registry+https://github.com/rust-lang/crates.io-index"9886checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"98879888[[package]]9889name = "sct"9890version = "0.6.1"9891source = "registry+https://github.com/rust-lang/crates.io-index"9892checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"9893dependencies = [9894 "ring",9895 "untrusted",9896]98979898[[package]]9899name = "secrecy"9900version = "0.8.0"9901source = "registry+https://github.com/rust-lang/crates.io-index"9902checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"9903dependencies = [9904 "zeroize",9905]99069907[[package]]9908name = "security-framework"9909version = "2.4.2"9910source = "registry+https://github.com/rust-lang/crates.io-index"9911checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87"9912dependencies = [9913 "bitflags",9914 "core-foundation",9915 "core-foundation-sys",9916 "libc",9917 "security-framework-sys",9918]99199920[[package]]9921name = "security-framework-sys"9922version = "2.4.2"9923source = "registry+https://github.com/rust-lang/crates.io-index"9924checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e"9925dependencies = [9926 "core-foundation-sys",9927 "libc",9928]99299930[[package]]9931name = "semver"9932version = "0.6.0"9933source = "registry+https://github.com/rust-lang/crates.io-index"9934checksum = "7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537"9935dependencies = [9936 "semver-parser 0.7.0",9937]99389939[[package]]9940name = "semver"9941version = "0.9.0"9942source = "registry+https://github.com/rust-lang/crates.io-index"9943checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"9944dependencies = [9945 "semver-parser 0.7.0",9946]99479948[[package]]9949name = "semver"9950version = "0.11.0"9951source = "registry+https://github.com/rust-lang/crates.io-index"9952checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"9953dependencies = [9954 "semver-parser 0.10.2",9955 "serde",9956]99579958[[package]]9959name = "semver-parser"9960version = "0.7.0"9961source = "registry+https://github.com/rust-lang/crates.io-index"9962checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"99639964[[package]]9965name = "semver-parser"9966version = "0.10.2"9967source = "registry+https://github.com/rust-lang/crates.io-index"9968checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"9969dependencies = [9970 "pest",9971]99729973[[package]]9974name = "serde"9975version = "1.0.130"9976source = "registry+https://github.com/rust-lang/crates.io-index"9977checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"9978dependencies = [9979 "serde_derive",9980]99819982[[package]]9983name = "serde_derive"9984version = "1.0.130"9985source = "registry+https://github.com/rust-lang/crates.io-index"9986checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"9987dependencies = [9988 "proc-macro2",9989 "quote",9990 "syn",9991]99929993[[package]]9994name = "serde_json"9995version = "1.0.68"9996source = "registry+https://github.com/rust-lang/crates.io-index"9997checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"9998dependencies = [9999 "itoa",10000 "ryu",10001 "serde",10002]1000310004[[package]]10005name = "sha-1"10006version = "0.8.2"10007source = "registry+https://github.com/rust-lang/crates.io-index"10008checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"10009dependencies = [10010 "block-buffer 0.7.3",10011 "digest 0.8.1",10012 "fake-simd",10013 "opaque-debug 0.2.3",10014]1001510016[[package]]10017name = "sha-1"10018version = "0.9.8"10019source = "registry+https://github.com/rust-lang/crates.io-index"10020checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"10021dependencies = [10022 "block-buffer 0.9.0",10023 "cfg-if 1.0.0",10024 "cpufeatures 0.2.1",10025 "digest 0.9.0",10026 "opaque-debug 0.3.0",10027]1002810029[[package]]10030name = "sha2"10031version = "0.8.2"10032source = "registry+https://github.com/rust-lang/crates.io-index"10033checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"10034dependencies = [10035 "block-buffer 0.7.3",10036 "digest 0.8.1",10037 "fake-simd",10038 "opaque-debug 0.2.3",10039]1004010041[[package]]10042name = "sha2"10043version = "0.9.8"10044source = "registry+https://github.com/rust-lang/crates.io-index"10045checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa"10046dependencies = [10047 "block-buffer 0.9.0",10048 "cfg-if 1.0.0",10049 "cpufeatures 0.2.1",10050 "digest 0.9.0",10051 "opaque-debug 0.3.0",10052]1005310054[[package]]10055name = "sha3"10056version = "0.8.2"10057source = "registry+https://github.com/rust-lang/crates.io-index"10058checksum = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf"10059dependencies = [10060 "block-buffer 0.7.3",10061 "byte-tools",10062 "digest 0.8.1",10063 "keccak",10064 "opaque-debug 0.2.3",10065]1006610067[[package]]10068name = "sha3"10069version = "0.9.1"10070source = "registry+https://github.com/rust-lang/crates.io-index"10071checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809"10072dependencies = [10073 "block-buffer 0.9.0",10074 "digest 0.9.0",10075 "keccak",10076 "opaque-debug 0.3.0",10077]1007810079[[package]]10080name = "sharded-slab"10081version = "0.1.4"10082source = "registry+https://github.com/rust-lang/crates.io-index"10083checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"10084dependencies = [10085 "lazy_static",10086]1008710088[[package]]10089name = "shlex"10090version = "1.1.0"10091source = "registry+https://github.com/rust-lang/crates.io-index"10092checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"1009310094[[package]]10095name = "signal-hook"10096version = "0.3.10"10097source = "registry+https://github.com/rust-lang/crates.io-index"10098checksum = "9c98891d737e271a2954825ef19e46bd16bdb98e2746f2eec4f7a4ef7946efd1"10099dependencies = [10100 "libc",10101 "signal-hook-registry",10102]1010310104[[package]]10105name = "signal-hook-registry"10106version = "1.4.0"10107source = "registry+https://github.com/rust-lang/crates.io-index"10108checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"10109dependencies = [10110 "libc",10111]1011210113[[package]]10114name = "signature"10115version = "1.4.0"10116source = "registry+https://github.com/rust-lang/crates.io-index"10117checksum = "02658e48d89f2bec991f9a78e69cfa4c316f8d6a6c4ec12fae1aeb263d486788"1011810119[[package]]10120name = "simba"10121version = "0.5.1"10122source = "registry+https://github.com/rust-lang/crates.io-index"10123checksum = "8e82063457853d00243beda9952e910b82593e4b07ae9f721b9278a99a0d3d5c"10124dependencies = [10125 "approx",10126 "num-complex",10127 "num-traits",10128 "paste",10129]1013010131[[package]]10132name = "slab"10133version = "0.4.5"10134source = "registry+https://github.com/rust-lang/crates.io-index"10135checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"1013610137[[package]]10138name = "slot-range-helper"10139version = "0.9.12"10140source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"10141dependencies = [10142 "enumn",10143 "parity-scale-codec",10144 "paste",10145 "sp-runtime",10146 "sp-std",10147]1014810149[[package]]10150name = "slotmap"10151version = "1.0.6"10152source = "registry+https://github.com/rust-lang/crates.io-index"10153checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342"10154dependencies = [10155 "version_check",10156]1015710158[[package]]10159name = "smallvec"10160version = "1.7.0"10161source = "registry+https://github.com/rust-lang/crates.io-index"10162checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"1016310164[[package]]10165name = "snap"10166version = "1.0.5"10167source = "registry+https://github.com/rust-lang/crates.io-index"10168checksum = "45456094d1983e2ee2a18fdfebce3189fa451699d0502cb8e3b49dba5ba41451"1016910170[[package]]10171name = "snow"10172version = "0.8.0"10173source = "registry+https://github.com/rust-lang/crates.io-index"10174checksum = "6142f7c25e94f6fd25a32c3348ec230df9109b463f59c8c7acc4bd34936babb7"10175dependencies = [10176 "aes-gcm",10177 "blake2",10178 "chacha20poly1305",10179 "rand 0.8.4",10180 "rand_core 0.6.3",10181 "ring",10182 "rustc_version 0.3.3",10183 "sha2 0.9.8",10184 "subtle 2.4.1",10185 "x25519-dalek",10186]1018710188[[package]]10189name = "socket2"10190version = "0.3.19"10191source = "registry+https://github.com/rust-lang/crates.io-index"10192checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"10193dependencies = [10194 "cfg-if 1.0.0",10195 "libc",10196 "winapi 0.3.9",10197]1019810199[[package]]10200name = "socket2"10201version = "0.4.2"10202source = "registry+https://github.com/rust-lang/crates.io-index"10203checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"10204dependencies = [10205 "libc",10206 "winapi 0.3.9",10207]1020810209[[package]]10210name = "soketto"10211version = "0.4.2"10212source = "registry+https://github.com/rust-lang/crates.io-index"10213checksum = "b5c71ed3d54db0a699f4948e1bb3e45b450fa31fe602621dee6680361d569c88"10214dependencies = [10215 "base64 0.12.3",10216 "bytes 0.5.6",10217 "flate2",10218 "futures 0.3.17",10219 "httparse",10220 "log",10221 "rand 0.7.3",10222 "sha-1 0.9.8",10223]1022410225[[package]]10226name = "soketto"10227version = "0.6.0"10228source = "registry+https://github.com/rust-lang/crates.io-index"10229checksum = "a74e48087dbeed4833785c2f3352b59140095dc192dce966a3bfc155020a439f"10230dependencies = [10231 "base64 0.13.0",10232 "bytes 1.1.0",10233 "futures 0.3.17",10234 "httparse",10235 "log",10236 "rand 0.8.4",10237 "sha-1 0.9.8",10238]1023910240[[package]]10241name = "sp-api"10242version = "4.0.0-dev"10243source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10244dependencies = [10245 "hash-db",10246 "log",10247 "parity-scale-codec",10248 "sp-api-proc-macro",10249 "sp-core",10250 "sp-runtime",10251 "sp-state-machine",10252 "sp-std",10253 "sp-version",10254 "thiserror",10255]1025610257[[package]]10258name = "sp-api-proc-macro"10259version = "4.0.0-dev"10260source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10261dependencies = [10262 "blake2-rfc",10263 "proc-macro-crate 1.1.0",10264 "proc-macro2",10265 "quote",10266 "syn",10267]1026810269[[package]]10270name = "sp-application-crypto"10271version = "4.0.0-dev"10272source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10273dependencies = [10274 "parity-scale-codec",10275 "scale-info",10276 "serde",10277 "sp-core",10278 "sp-io",10279 "sp-std",10280]1028110282[[package]]10283name = "sp-arithmetic"10284version = "4.0.0-dev"10285source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10286dependencies = [10287 "integer-sqrt",10288 "num-traits",10289 "parity-scale-codec",10290 "scale-info",10291 "serde",10292 "sp-debug-derive",10293 "sp-std",10294 "static_assertions",10295]1029610297[[package]]10298name = "sp-authority-discovery"10299version = "4.0.0-dev"10300source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10301dependencies = [10302 "parity-scale-codec",10303 "scale-info",10304 "sp-api",10305 "sp-application-crypto",10306 "sp-runtime",10307 "sp-std",10308]1030910310[[package]]10311name = "sp-authorship"10312version = "4.0.0-dev"10313source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10314dependencies = [10315 "async-trait",10316 "parity-scale-codec",10317 "sp-inherents",10318 "sp-runtime",10319 "sp-std",10320]1032110322[[package]]10323name = "sp-block-builder"10324version = "4.0.0-dev"10325source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10326dependencies = [10327 "parity-scale-codec",10328 "sp-api",10329 "sp-inherents",10330 "sp-runtime",10331 "sp-std",10332]1033310334[[package]]10335name = "sp-blockchain"10336version = "4.0.0-dev"10337source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10338dependencies = [10339 "futures 0.3.17",10340 "log",10341 "lru 0.6.6",10342 "parity-scale-codec",10343 "parking_lot 0.11.2",10344 "sp-api",10345 "sp-consensus",10346 "sp-database",10347 "sp-runtime",10348 "sp-state-machine",10349 "thiserror",10350]1035110352[[package]]10353name = "sp-consensus"10354version = "0.10.0-dev"10355source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10356dependencies = [10357 "async-trait",10358 "futures 0.3.17",10359 "futures-timer 3.0.2",10360 "log",10361 "parity-scale-codec",10362 "sp-core",10363 "sp-inherents",10364 "sp-runtime",10365 "sp-state-machine",10366 "sp-std",10367 "sp-version",10368 "thiserror",10369]1037010371[[package]]10372name = "sp-consensus-aura"10373version = "0.10.0-dev"10374source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10375dependencies = [10376 "async-trait",10377 "parity-scale-codec",10378 "scale-info",10379 "sp-api",10380 "sp-application-crypto",10381 "sp-consensus",10382 "sp-consensus-slots",10383 "sp-inherents",10384 "sp-runtime",10385 "sp-std",10386 "sp-timestamp",10387]1038810389[[package]]10390name = "sp-consensus-babe"10391version = "0.10.0-dev"10392source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10393dependencies = [10394 "async-trait",10395 "merlin",10396 "parity-scale-codec",10397 "scale-info",10398 "serde",10399 "sp-api",10400 "sp-application-crypto",10401 "sp-consensus",10402 "sp-consensus-slots",10403 "sp-consensus-vrf",10404 "sp-core",10405 "sp-inherents",10406 "sp-keystore",10407 "sp-runtime",10408 "sp-std",10409 "sp-timestamp",10410]1041110412[[package]]10413name = "sp-consensus-slots"10414version = "0.10.0-dev"10415source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10416dependencies = [10417 "parity-scale-codec",10418 "scale-info",10419 "sp-arithmetic",10420 "sp-runtime",10421]1042210423[[package]]10424name = "sp-consensus-vrf"10425version = "0.10.0-dev"10426source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10427dependencies = [10428 "parity-scale-codec",10429 "schnorrkel",10430 "sp-core",10431 "sp-runtime",10432 "sp-std",10433]1043410435[[package]]10436name = "sp-core"10437version = "4.0.0-dev"10438source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10439dependencies = [10440 "base58",10441 "blake2-rfc",10442 "byteorder",10443 "dyn-clonable",10444 "ed25519-dalek",10445 "futures 0.3.17",10446 "hash-db",10447 "hash256-std-hasher",10448 "hex",10449 "impl-serde",10450 "lazy_static",10451 "libsecp256k1 0.6.0",10452 "log",10453 "merlin",10454 "num-traits",10455 "parity-scale-codec",10456 "parity-util-mem",10457 "parking_lot 0.11.2",10458 "primitive-types 0.10.1",10459 "rand 0.7.3",10460 "regex",10461 "scale-info",10462 "schnorrkel",10463 "secrecy",10464 "serde",10465 "sha2 0.9.8",10466 "sp-debug-derive",10467 "sp-externalities",10468 "sp-runtime-interface",10469 "sp-std",10470 "sp-storage",10471 "ss58-registry",10472 "substrate-bip39",10473 "thiserror",10474 "tiny-bip39",10475 "tiny-keccak",10476 "twox-hash",10477 "wasmi",10478 "zeroize",10479]1048010481[[package]]10482name = "sp-database"10483version = "4.0.0-dev"10484source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10485dependencies = [10486 "kvdb",10487 "parking_lot 0.11.2",10488]1048910490[[package]]10491name = "sp-debug-derive"10492version = "3.0.0"10493source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10494dependencies = [10495 "proc-macro2",10496 "quote",10497 "syn",10498]1049910500[[package]]10501name = "sp-externalities"10502version = "0.10.0-dev"10503source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10504dependencies = [10505 "environmental",10506 "parity-scale-codec",10507 "sp-std",10508 "sp-storage",10509]1051010511[[package]]10512name = "sp-finality-grandpa"10513version = "4.0.0-dev"10514source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10515dependencies = [10516 "finality-grandpa",10517 "log",10518 "parity-scale-codec",10519 "scale-info",10520 "serde",10521 "sp-api",10522 "sp-application-crypto",10523 "sp-core",10524 "sp-keystore",10525 "sp-runtime",10526 "sp-std",10527]1052810529[[package]]10530name = "sp-inherents"10531version = "4.0.0-dev"10532source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10533dependencies = [10534 "async-trait",10535 "impl-trait-for-tuples 0.2.1",10536 "parity-scale-codec",10537 "sp-core",10538 "sp-runtime",10539 "sp-std",10540 "thiserror",10541]1054210543[[package]]10544name = "sp-io"10545version = "4.0.0-dev"10546source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10547dependencies = [10548 "futures 0.3.17",10549 "hash-db",10550 "libsecp256k1 0.6.0",10551 "log",10552 "parity-scale-codec",10553 "parking_lot 0.11.2",10554 "sp-core",10555 "sp-externalities",10556 "sp-keystore",10557 "sp-runtime-interface",10558 "sp-state-machine",10559 "sp-std",10560 "sp-tracing",10561 "sp-trie",10562 "sp-wasm-interface",10563 "tracing",10564 "tracing-core",10565]1056610567[[package]]10568name = "sp-keyring"10569version = "4.0.0-dev"10570source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10571dependencies = [10572 "lazy_static",10573 "sp-core",10574 "sp-runtime",10575 "strum 0.20.0",10576]1057710578[[package]]10579name = "sp-keystore"10580version = "0.10.0-dev"10581source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10582dependencies = [10583 "async-trait",10584 "derive_more",10585 "futures 0.3.17",10586 "merlin",10587 "parity-scale-codec",10588 "parking_lot 0.11.2",10589 "schnorrkel",10590 "serde",10591 "sp-core",10592 "sp-externalities",10593]1059410595[[package]]10596name = "sp-maybe-compressed-blob"10597version = "4.0.0-dev"10598source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10599dependencies = [10600 "zstd",10601]1060210603[[package]]10604name = "sp-npos-elections"10605version = "4.0.0-dev"10606source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10607dependencies = [10608 "parity-scale-codec",10609 "scale-info",10610 "serde",10611 "sp-arithmetic",10612 "sp-core",10613 "sp-npos-elections-solution-type",10614 "sp-runtime",10615 "sp-std",10616]1061710618[[package]]10619name = "sp-npos-elections-solution-type"10620version = "4.0.0-dev"10621source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10622dependencies = [10623 "proc-macro-crate 1.1.0",10624 "proc-macro2",10625 "quote",10626 "syn",10627]1062810629[[package]]10630name = "sp-offchain"10631version = "4.0.0-dev"10632source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10633dependencies = [10634 "sp-api",10635 "sp-core",10636 "sp-runtime",10637]1063810639[[package]]10640name = "sp-panic-handler"10641version = "3.0.0"10642source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10643dependencies = [10644 "backtrace",10645]1064610647[[package]]10648name = "sp-rpc"10649version = "4.0.0-dev"10650source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10651dependencies = [10652 "rustc-hash",10653 "serde",10654 "sp-core",10655]1065610657[[package]]10658name = "sp-runtime"10659version = "4.0.0-dev"10660source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10661dependencies = [10662 "either",10663 "hash256-std-hasher",10664 "impl-trait-for-tuples 0.2.1",10665 "log",10666 "parity-scale-codec",10667 "parity-util-mem",10668 "paste",10669 "rand 0.7.3",10670 "scale-info",10671 "serde",10672 "sp-application-crypto",10673 "sp-arithmetic",10674 "sp-core",10675 "sp-io",10676 "sp-std",10677]1067810679[[package]]10680name = "sp-runtime-interface"10681version = "4.0.0-dev"10682source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10683dependencies = [10684 "impl-trait-for-tuples 0.2.1",10685 "parity-scale-codec",10686 "primitive-types 0.10.1",10687 "sp-externalities",10688 "sp-runtime-interface-proc-macro",10689 "sp-std",10690 "sp-storage",10691 "sp-tracing",10692 "sp-wasm-interface",10693 "static_assertions",10694]1069510696[[package]]10697name = "sp-runtime-interface-proc-macro"10698version = "4.0.0-dev"10699source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10700dependencies = [10701 "Inflector",10702 "proc-macro-crate 1.1.0",10703 "proc-macro2",10704 "quote",10705 "syn",10706]1070710708[[package]]10709name = "sp-sandbox"10710version = "0.10.0-dev"10711source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10712dependencies = [10713 "log",10714 "parity-scale-codec",10715 "sp-core",10716 "sp-io",10717 "sp-std",10718 "sp-wasm-interface",10719 "wasmi",10720]1072110722[[package]]10723name = "sp-serializer"10724version = "3.0.0"10725source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10726dependencies = [10727 "serde",10728 "serde_json",10729]1073010731[[package]]10732name = "sp-session"10733version = "4.0.0-dev"10734source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10735dependencies = [10736 "parity-scale-codec",10737 "scale-info",10738 "sp-api",10739 "sp-core",10740 "sp-runtime",10741 "sp-staking",10742 "sp-std",10743]1074410745[[package]]10746name = "sp-staking"10747version = "4.0.0-dev"10748source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10749dependencies = [10750 "parity-scale-codec",10751 "scale-info",10752 "sp-runtime",10753 "sp-std",10754]1075510756[[package]]10757name = "sp-state-machine"10758version = "0.10.0-dev"10759source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10760dependencies = [10761 "hash-db",10762 "log",10763 "num-traits",10764 "parity-scale-codec",10765 "parking_lot 0.11.2",10766 "rand 0.7.3",10767 "smallvec",10768 "sp-core",10769 "sp-externalities",10770 "sp-panic-handler",10771 "sp-std",10772 "sp-trie",10773 "thiserror",10774 "tracing",10775 "trie-db",10776 "trie-root",10777]1077810779[[package]]10780name = "sp-std"10781version = "4.0.0-dev"10782source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"1078310784[[package]]10785name = "sp-storage"10786version = "4.0.0-dev"10787source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10788dependencies = [10789 "impl-serde",10790 "parity-scale-codec",10791 "ref-cast",10792 "serde",10793 "sp-debug-derive",10794 "sp-std",10795]1079610797[[package]]10798name = "sp-tasks"10799version = "4.0.0-dev"10800source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10801dependencies = [10802 "log",10803 "sp-core",10804 "sp-externalities",10805 "sp-io",10806 "sp-runtime-interface",10807 "sp-std",10808]1080910810[[package]]10811name = "sp-timestamp"10812version = "4.0.0-dev"10813source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10814dependencies = [10815 "async-trait",10816 "futures-timer 3.0.2",10817 "log",10818 "parity-scale-codec",10819 "sp-api",10820 "sp-inherents",10821 "sp-runtime",10822 "sp-std",10823 "thiserror",10824]1082510826[[package]]10827name = "sp-tracing"10828version = "4.0.0-dev"10829source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10830dependencies = [10831 "parity-scale-codec",10832 "sp-std",10833 "tracing",10834 "tracing-core",10835 "tracing-subscriber",10836]1083710838[[package]]10839name = "sp-transaction-pool"10840version = "4.0.0-dev"10841source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10842dependencies = [10843 "sp-api",10844 "sp-runtime",10845]1084610847[[package]]10848name = "sp-transaction-storage-proof"10849version = "4.0.0-dev"10850source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10851dependencies = [10852 "async-trait",10853 "log",10854 "parity-scale-codec",10855 "scale-info",10856 "sp-core",10857 "sp-inherents",10858 "sp-runtime",10859 "sp-std",10860 "sp-trie",10861]1086210863[[package]]10864name = "sp-trie"10865version = "4.0.0-dev"10866source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10867dependencies = [10868 "hash-db",10869 "memory-db",10870 "parity-scale-codec",10871 "scale-info",10872 "sp-core",10873 "sp-std",10874 "trie-db",10875 "trie-root",10876]1087710878[[package]]10879name = "sp-version"10880version = "4.0.0-dev"10881source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10882dependencies = [10883 "impl-serde",10884 "parity-scale-codec",10885 "parity-wasm 0.42.2",10886 "scale-info",10887 "serde",10888 "sp-runtime",10889 "sp-std",10890 "sp-version-proc-macro",10891 "thiserror",10892]1089310894[[package]]10895name = "sp-version-proc-macro"10896version = "4.0.0-dev"10897source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10898dependencies = [10899 "parity-scale-codec",10900 "proc-macro2",10901 "quote",10902 "syn",10903]1090410905[[package]]10906name = "sp-wasm-interface"10907version = "4.0.0-dev"10908source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"10909dependencies = [10910 "impl-trait-for-tuples 0.2.1",10911 "parity-scale-codec",10912 "sp-std",10913 "wasmi",10914]1091510916[[package]]10917name = "spin"10918version = "0.5.2"10919source = "registry+https://github.com/rust-lang/crates.io-index"10920checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"1092110922[[package]]10923name = "ss58-registry"10924version = "1.2.0"10925source = "registry+https://github.com/rust-lang/crates.io-index"10926checksum = "bb102b328df61c67f8ccf8471b29c31c7d6da646a867aff95fe8bff386fe7c4d"10927dependencies = [10928 "Inflector",10929 "proc-macro2",10930 "quote",10931 "serde",10932 "serde_json",10933 "unicode-xid",10934]1093510936[[package]]10937name = "stable_deref_trait"10938version = "1.2.0"10939source = "registry+https://github.com/rust-lang/crates.io-index"10940checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"1094110942[[package]]10943name = "static_assertions"10944version = "1.1.0"10945source = "registry+https://github.com/rust-lang/crates.io-index"10946checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"1094710948[[package]]10949name = "static_init"10950version = "0.5.2"10951source = "registry+https://github.com/rust-lang/crates.io-index"10952checksum = "11b73400442027c4adedda20a9f9b7945234a5bd8d5f7e86da22bd5d0622369c"10953dependencies = [10954 "cfg_aliases",10955 "libc",10956 "parking_lot 0.11.2",10957 "static_init_macro",10958]1095910960[[package]]10961name = "static_init_macro"10962version = "0.5.0"10963source = "registry+https://github.com/rust-lang/crates.io-index"10964checksum = "f2261c91034a1edc3fc4d1b80e89d82714faede0515c14a75da10cb941546bbf"10965dependencies = [10966 "cfg_aliases",10967 "memchr",10968 "proc-macro2",10969 "quote",10970 "syn",10971]1097210973[[package]]10974name = "statrs"10975version = "0.15.0"10976source = "registry+https://github.com/rust-lang/crates.io-index"10977checksum = "05bdbb8e4e78216a85785a85d3ec3183144f98d0097b9281802c019bb07a6f05"10978dependencies = [10979 "approx",10980 "lazy_static",10981 "nalgebra",10982 "num-traits",10983 "rand 0.8.4",10984]1098510986[[package]]10987name = "strsim"10988version = "0.8.0"10989source = "registry+https://github.com/rust-lang/crates.io-index"10990checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"1099110992[[package]]10993name = "strsim"10994version = "0.10.0"10995source = "registry+https://github.com/rust-lang/crates.io-index"10996checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"1099710998[[package]]10999name = "structopt"11000version = "0.3.25"11001source = "registry+https://github.com/rust-lang/crates.io-index"11002checksum = "40b9788f4202aa75c240ecc9c15c65185e6a39ccdeb0fd5d008b98825464c87c"11003dependencies = [11004 "clap",11005 "lazy_static",11006 "structopt-derive",11007]1100811009[[package]]11010name = "structopt-derive"11011version = "0.4.18"11012source = "registry+https://github.com/rust-lang/crates.io-index"11013checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"11014dependencies = [11015 "heck",11016 "proc-macro-error 1.0.4",11017 "proc-macro2",11018 "quote",11019 "syn",11020]1102111022[[package]]11023name = "strum"11024version = "0.20.0"11025source = "registry+https://github.com/rust-lang/crates.io-index"11026checksum = "7318c509b5ba57f18533982607f24070a55d353e90d4cae30c467cdb2ad5ac5c"11027dependencies = [11028 "strum_macros 0.20.1",11029]1103011031[[package]]11032name = "strum"11033version = "0.21.0"11034source = "registry+https://github.com/rust-lang/crates.io-index"11035checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"1103611037[[package]]11038name = "strum"11039version = "0.22.0"11040source = "registry+https://github.com/rust-lang/crates.io-index"11041checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"11042dependencies = [11043 "strum_macros 0.22.0",11044]1104511046[[package]]11047name = "strum_macros"11048version = "0.20.1"11049source = "registry+https://github.com/rust-lang/crates.io-index"11050checksum = "ee8bc6b87a5112aeeab1f4a9f7ab634fe6cbefc4850006df31267f4cfb9e3149"11051dependencies = [11052 "heck",11053 "proc-macro2",11054 "quote",11055 "syn",11056]1105711058[[package]]11059name = "strum_macros"11060version = "0.21.1"11061source = "registry+https://github.com/rust-lang/crates.io-index"11062checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"11063dependencies = [11064 "heck",11065 "proc-macro2",11066 "quote",11067 "syn",11068]1106911070[[package]]11071name = "strum_macros"11072version = "0.22.0"11073source = "registry+https://github.com/rust-lang/crates.io-index"11074checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"11075dependencies = [11076 "heck",11077 "proc-macro2",11078 "quote",11079 "syn",11080]1108111082[[package]]11083name = "substrate-bip39"11084version = "0.4.4"11085source = "registry+https://github.com/rust-lang/crates.io-index"11086checksum = "49eee6965196b32f882dd2ee85a92b1dbead41b04e53907f269de3b0dc04733c"11087dependencies = [11088 "hmac 0.11.0",11089 "pbkdf2 0.8.0",11090 "schnorrkel",11091 "sha2 0.9.8",11092 "zeroize",11093]1109411095[[package]]11096name = "substrate-build-script-utils"11097version = "3.0.0"11098source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11099dependencies = [11100 "platforms",11101]1110211103[[package]]11104name = "substrate-frame-rpc-system"11105version = "4.0.0-dev"11106source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11107dependencies = [11108 "frame-system-rpc-runtime-api",11109 "futures 0.3.17",11110 "jsonrpc-core",11111 "jsonrpc-core-client",11112 "jsonrpc-derive",11113 "log",11114 "parity-scale-codec",11115 "sc-client-api",11116 "sc-rpc-api",11117 "sc-transaction-pool-api",11118 "sp-api",11119 "sp-block-builder",11120 "sp-blockchain",11121 "sp-core",11122 "sp-runtime",11123]1112411125[[package]]11126name = "substrate-prometheus-endpoint"11127version = "0.9.0"11128source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11129dependencies = [11130 "async-std",11131 "derive_more",11132 "futures-util",11133 "hyper",11134 "log",11135 "prometheus",11136 "tokio 1.13.0",11137]1113811139[[package]]11140name = "substrate-test-client"11141version = "2.0.1"11142source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11143dependencies = [11144 "async-trait",11145 "futures 0.3.17",11146 "hex",11147 "parity-scale-codec",11148 "sc-client-api",11149 "sc-client-db",11150 "sc-consensus",11151 "sc-executor",11152 "sc-light",11153 "sc-offchain",11154 "sc-service",11155 "serde",11156 "serde_json",11157 "sp-blockchain",11158 "sp-consensus",11159 "sp-core",11160 "sp-keyring",11161 "sp-keystore",11162 "sp-runtime",11163 "sp-state-machine",11164]1116511166[[package]]11167name = "substrate-test-utils"11168version = "4.0.0-dev"11169source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11170dependencies = [11171 "futures 0.3.17",11172 "substrate-test-utils-derive",11173 "tokio 1.13.0",11174]1117511176[[package]]11177name = "substrate-test-utils-derive"11178version = "0.10.0-dev"11179source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11180dependencies = [11181 "proc-macro-crate 1.1.0",11182 "proc-macro2",11183 "quote",11184 "syn",11185]1118611187[[package]]11188name = "substrate-wasm-builder"11189version = "5.0.0-dev"11190source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11191dependencies = [11192 "ansi_term 0.12.1",11193 "build-helper",11194 "cargo_metadata",11195 "sp-maybe-compressed-blob",11196 "tempfile",11197 "toml",11198 "walkdir",11199 "wasm-gc-api",11200]1120111202[[package]]11203name = "subtle"11204version = "1.0.0"11205source = "registry+https://github.com/rust-lang/crates.io-index"11206checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"1120711208[[package]]11209name = "subtle"11210version = "2.4.1"11211source = "registry+https://github.com/rust-lang/crates.io-index"11212checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"1121311214[[package]]11215name = "syn"11216version = "1.0.81"11217source = "registry+https://github.com/rust-lang/crates.io-index"11218checksum = "f2afee18b8beb5a596ecb4a2dce128c719b4ba399d34126b9e4396e3f9860966"11219dependencies = [11220 "proc-macro2",11221 "quote",11222 "unicode-xid",11223]1122411225[[package]]11226name = "syn-mid"11227version = "0.5.3"11228source = "registry+https://github.com/rust-lang/crates.io-index"11229checksum = "baa8e7560a164edb1621a55d18a0c59abf49d360f47aa7b821061dd7eea7fac9"11230dependencies = [11231 "proc-macro2",11232 "quote",11233 "syn",11234]1123511236[[package]]11237name = "synstructure"11238version = "0.12.6"11239source = "registry+https://github.com/rust-lang/crates.io-index"11240checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"11241dependencies = [11242 "proc-macro2",11243 "quote",11244 "syn",11245 "unicode-xid",11246]1124711248[[package]]11249name = "tap"11250version = "1.0.1"11251source = "registry+https://github.com/rust-lang/crates.io-index"11252checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"1125311254[[package]]11255name = "target-lexicon"11256version = "0.12.2"11257source = "registry+https://github.com/rust-lang/crates.io-index"11258checksum = "d9bffcddbc2458fa3e6058414599e3c838a022abae82e5c67b4f7f80298d5bff"1125911260[[package]]11261name = "tempfile"11262version = "3.2.0"11263source = "registry+https://github.com/rust-lang/crates.io-index"11264checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"11265dependencies = [11266 "cfg-if 1.0.0",11267 "libc",11268 "rand 0.8.4",11269 "redox_syscall 0.2.10",11270 "remove_dir_all",11271 "winapi 0.3.9",11272]1127311274[[package]]11275name = "termcolor"11276version = "1.1.2"11277source = "registry+https://github.com/rust-lang/crates.io-index"11278checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"11279dependencies = [11280 "winapi-util",11281]1128211283[[package]]11284name = "textwrap"11285version = "0.11.0"11286source = "registry+https://github.com/rust-lang/crates.io-index"11287checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"11288dependencies = [11289 "unicode-width",11290]1129111292[[package]]11293name = "thiserror"11294version = "1.0.30"11295source = "registry+https://github.com/rust-lang/crates.io-index"11296checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"11297dependencies = [11298 "thiserror-impl",11299]1130011301[[package]]11302name = "thiserror-impl"11303version = "1.0.30"11304source = "registry+https://github.com/rust-lang/crates.io-index"11305checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"11306dependencies = [11307 "proc-macro2",11308 "quote",11309 "syn",11310]1131111312[[package]]11313name = "thread_local"11314version = "1.1.3"11315source = "registry+https://github.com/rust-lang/crates.io-index"11316checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"11317dependencies = [11318 "once_cell",11319]1132011321[[package]]11322name = "threadpool"11323version = "1.8.1"11324source = "registry+https://github.com/rust-lang/crates.io-index"11325checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"11326dependencies = [11327 "num_cpus",11328]1132911330[[package]]11331name = "thrift"11332version = "0.13.0"11333source = "registry+https://github.com/rust-lang/crates.io-index"11334checksum = "0c6d965454947cc7266d22716ebfd07b18d84ebaf35eec558586bbb2a8cb6b5b"11335dependencies = [11336 "byteorder",11337 "integer-encoding",11338 "log",11339 "ordered-float",11340 "threadpool",11341]1134211343[[package]]11344name = "time"11345version = "0.1.44"11346source = "registry+https://github.com/rust-lang/crates.io-index"11347checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"11348dependencies = [11349 "libc",11350 "wasi 0.10.0+wasi-snapshot-preview1",11351 "winapi 0.3.9",11352]1135311354[[package]]11355name = "tiny-bip39"11356version = "0.8.2"11357source = "registry+https://github.com/rust-lang/crates.io-index"11358checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d"11359dependencies = [11360 "anyhow",11361 "hmac 0.8.1",11362 "once_cell",11363 "pbkdf2 0.4.0",11364 "rand 0.7.3",11365 "rustc-hash",11366 "sha2 0.9.8",11367 "thiserror",11368 "unicode-normalization",11369 "wasm-bindgen",11370 "zeroize",11371]1137211373[[package]]11374name = "tiny-keccak"11375version = "2.0.2"11376source = "registry+https://github.com/rust-lang/crates.io-index"11377checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"11378dependencies = [11379 "crunchy",11380]1138111382[[package]]11383name = "tinyvec"11384version = "1.5.0"11385source = "registry+https://github.com/rust-lang/crates.io-index"11386checksum = "f83b2a3d4d9091d0abd7eba4dc2710b1718583bd4d8992e2190720ea38f391f7"11387dependencies = [11388 "tinyvec_macros",11389]1139011391[[package]]11392name = "tinyvec_macros"11393version = "0.1.0"11394source = "registry+https://github.com/rust-lang/crates.io-index"11395checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"1139611397[[package]]11398name = "tokio"11399version = "0.2.25"11400source = "registry+https://github.com/rust-lang/crates.io-index"11401checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"11402dependencies = [11403 "bytes 0.5.6",11404 "fnv",11405 "pin-project-lite 0.1.12",11406 "tokio-macros 0.2.6",11407]1140811409[[package]]11410name = "tokio"11411version = "1.13.0"11412source = "registry+https://github.com/rust-lang/crates.io-index"11413checksum = "588b2d10a336da58d877567cd8fb8a14b463e2104910f8132cd054b4b96e29ee"11414dependencies = [11415 "autocfg",11416 "bytes 1.1.0",11417 "libc",11418 "memchr",11419 "mio 0.7.14",11420 "num_cpus",11421 "once_cell",11422 "pin-project-lite 0.2.7",11423 "signal-hook-registry",11424 "tokio-macros 1.5.1",11425 "winapi 0.3.9",11426]1142711428[[package]]11429name = "tokio-macros"11430version = "0.2.6"11431source = "registry+https://github.com/rust-lang/crates.io-index"11432checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"11433dependencies = [11434 "proc-macro2",11435 "quote",11436 "syn",11437]1143811439[[package]]11440name = "tokio-macros"11441version = "1.5.1"11442source = "registry+https://github.com/rust-lang/crates.io-index"11443checksum = "114383b041aa6212c579467afa0075fbbdd0718de036100bc0ba7961d8cb9095"11444dependencies = [11445 "proc-macro2",11446 "quote",11447 "syn",11448]1144911450[[package]]11451name = "tokio-rustls"11452version = "0.22.0"11453source = "registry+https://github.com/rust-lang/crates.io-index"11454checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"11455dependencies = [11456 "rustls",11457 "tokio 1.13.0",11458 "webpki",11459]1146011461[[package]]11462name = "tokio-stream"11463version = "0.1.8"11464source = "registry+https://github.com/rust-lang/crates.io-index"11465checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3"11466dependencies = [11467 "futures-core",11468 "pin-project-lite 0.2.7",11469 "tokio 1.13.0",11470]1147111472[[package]]11473name = "tokio-util"11474version = "0.6.9"11475source = "registry+https://github.com/rust-lang/crates.io-index"11476checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"11477dependencies = [11478 "bytes 1.1.0",11479 "futures-core",11480 "futures-io",11481 "futures-sink",11482 "log",11483 "pin-project-lite 0.2.7",11484 "tokio 1.13.0",11485]1148611487[[package]]11488name = "toml"11489version = "0.5.8"11490source = "registry+https://github.com/rust-lang/crates.io-index"11491checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"11492dependencies = [11493 "serde",11494]1149511496[[package]]11497name = "tower-service"11498version = "0.3.1"11499source = "registry+https://github.com/rust-lang/crates.io-index"11500checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"1150111502[[package]]11503name = "tracing"11504version = "0.1.29"11505source = "registry+https://github.com/rust-lang/crates.io-index"11506checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"11507dependencies = [11508 "cfg-if 1.0.0",11509 "pin-project-lite 0.2.7",11510 "tracing-attributes",11511 "tracing-core",11512]1151311514[[package]]11515name = "tracing-attributes"11516version = "0.1.18"11517source = "registry+https://github.com/rust-lang/crates.io-index"11518checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"11519dependencies = [11520 "proc-macro2",11521 "quote",11522 "syn",11523]1152411525[[package]]11526name = "tracing-core"11527version = "0.1.21"11528source = "registry+https://github.com/rust-lang/crates.io-index"11529checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"11530dependencies = [11531 "lazy_static",11532]1153311534[[package]]11535name = "tracing-futures"11536version = "0.2.5"11537source = "registry+https://github.com/rust-lang/crates.io-index"11538checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"11539dependencies = [11540 "pin-project 1.0.8",11541 "tracing",11542]1154311544[[package]]11545name = "tracing-log"11546version = "0.1.2"11547source = "registry+https://github.com/rust-lang/crates.io-index"11548checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3"11549dependencies = [11550 "lazy_static",11551 "log",11552 "tracing-core",11553]1155411555[[package]]11556name = "tracing-serde"11557version = "0.1.2"11558source = "registry+https://github.com/rust-lang/crates.io-index"11559checksum = "fb65ea441fbb84f9f6748fd496cf7f63ec9af5bca94dd86456978d055e8eb28b"11560dependencies = [11561 "serde",11562 "tracing-core",11563]1156411565[[package]]11566name = "tracing-subscriber"11567version = "0.2.25"11568source = "registry+https://github.com/rust-lang/crates.io-index"11569checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"11570dependencies = [11571 "ansi_term 0.12.1",11572 "chrono",11573 "lazy_static",11574 "matchers",11575 "regex",11576 "serde",11577 "serde_json",11578 "sharded-slab",11579 "smallvec",11580 "thread_local",11581 "tracing",11582 "tracing-core",11583 "tracing-log",11584 "tracing-serde",11585]1158611587[[package]]11588name = "trie-db"11589version = "0.22.6"11590source = "registry+https://github.com/rust-lang/crates.io-index"11591checksum = "9eac131e334e81b6b3be07399482042838adcd7957aa0010231d0813e39e02fa"11592dependencies = [11593 "hash-db",11594 "hashbrown",11595 "log",11596 "rustc-hex",11597 "smallvec",11598]1159911600[[package]]11601name = "trie-root"11602version = "0.16.0"11603source = "registry+https://github.com/rust-lang/crates.io-index"11604checksum = "652931506d2c1244d7217a70b99f56718a7b4161b37f04e7cd868072a99f68cd"11605dependencies = [11606 "hash-db",11607]1160811609[[package]]11610name = "triehash"11611version = "0.8.4"11612source = "registry+https://github.com/rust-lang/crates.io-index"11613checksum = "a1631b201eb031b563d2e85ca18ec8092508e262a3196ce9bd10a67ec87b9f5c"11614dependencies = [11615 "hash-db",11616 "rlp",11617]1161811619[[package]]11620name = "trust-dns-proto"11621version = "0.20.3"11622source = "registry+https://github.com/rust-lang/crates.io-index"11623checksum = "ad0d7f5db438199a6e2609debe3f69f808d074e0a2888ee0bccb45fe234d03f4"11624dependencies = [11625 "async-trait",11626 "cfg-if 1.0.0",11627 "data-encoding",11628 "enum-as-inner",11629 "futures-channel",11630 "futures-io",11631 "futures-util",11632 "idna 0.2.3",11633 "ipnet",11634 "lazy_static",11635 "log",11636 "rand 0.8.4",11637 "smallvec",11638 "thiserror",11639 "tinyvec",11640 "url 2.2.2",11641]1164211643[[package]]11644name = "trust-dns-resolver"11645version = "0.20.3"11646source = "registry+https://github.com/rust-lang/crates.io-index"11647checksum = "f6ad17b608a64bd0735e67bde16b0636f8aa8591f831a25d18443ed00a699770"11648dependencies = [11649 "cfg-if 1.0.0",11650 "futures-util",11651 "ipconfig",11652 "lazy_static",11653 "log",11654 "lru-cache",11655 "parking_lot 0.11.2",11656 "resolv-conf",11657 "smallvec",11658 "thiserror",11659 "trust-dns-proto",11660]1166111662[[package]]11663name = "try-lock"11664version = "0.2.3"11665source = "registry+https://github.com/rust-lang/crates.io-index"11666checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"1166711668[[package]]11669name = "try-runtime-cli"11670version = "0.10.0-dev"11671source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044"11672dependencies = [11673 "jsonrpsee-ws-client",11674 "log",11675 "parity-scale-codec",11676 "remote-externalities",11677 "sc-chain-spec",11678 "sc-cli",11679 "sc-executor",11680 "sc-service",11681 "serde",11682 "sp-core",11683 "sp-externalities",11684 "sp-io",11685 "sp-keystore",11686 "sp-runtime",11687 "sp-state-machine",11688 "sp-version",11689 "structopt",11690]1169111692[[package]]11693name = "twox-hash"11694version = "1.6.1"11695source = "registry+https://github.com/rust-lang/crates.io-index"11696checksum = "1f559b464de2e2bdabcac6a210d12e9b5a5973c251e102c44c585c71d51bd78e"11697dependencies = [11698 "cfg-if 1.0.0",11699 "rand 0.8.4",11700 "static_assertions",11701]1170211703[[package]]11704name = "typenum"11705version = "1.14.0"11706source = "registry+https://github.com/rust-lang/crates.io-index"11707checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"1170811709[[package]]11710name = "uc-rpc"11711version = "0.1.0"11712dependencies = [11713 "jsonrpc-core",11714 "jsonrpc-core-client",11715 "jsonrpc-derive",11716 "nft-data-structs",11717 "pallet-common",11718 "parity-scale-codec",11719 "sp-api",11720 "sp-blockchain",11721 "sp-core",11722 "sp-rpc",11723 "sp-runtime",11724 "up-rpc",11725]1172611727[[package]]11728name = "ucd-trie"11729version = "0.1.3"11730source = "registry+https://github.com/rust-lang/crates.io-index"11731checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"1173211733[[package]]11734name = "uint"11735version = "0.9.1"11736source = "registry+https://github.com/rust-lang/crates.io-index"11737checksum = "6470ab50f482bde894a037a57064480a246dbfdd5960bd65a44824693f08da5f"11738dependencies = [11739 "byteorder",11740 "crunchy",11741 "hex",11742 "static_assertions",11743]1174411745[[package]]11746name = "unicase"11747version = "2.6.0"11748source = "registry+https://github.com/rust-lang/crates.io-index"11749checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"11750dependencies = [11751 "version_check",11752]1175311754[[package]]11755name = "unicode-bidi"11756version = "0.3.7"11757source = "registry+https://github.com/rust-lang/crates.io-index"11758checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"1175911760[[package]]11761name = "unicode-normalization"11762version = "0.1.19"11763source = "registry+https://github.com/rust-lang/crates.io-index"11764checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"11765dependencies = [11766 "tinyvec",11767]1176811769[[package]]11770name = "unicode-segmentation"11771version = "1.8.0"11772source = "registry+https://github.com/rust-lang/crates.io-index"11773checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"1177411775[[package]]11776name = "unicode-width"11777version = "0.1.9"11778source = "registry+https://github.com/rust-lang/crates.io-index"11779checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"1178011781[[package]]11782name = "unicode-xid"11783version = "0.2.2"11784source = "registry+https://github.com/rust-lang/crates.io-index"11785checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"1178611787[[package]]11788name = "universal-hash"11789version = "0.4.1"11790source = "registry+https://github.com/rust-lang/crates.io-index"11791checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"11792dependencies = [11793 "generic-array 0.14.4",11794 "subtle 2.4.1",11795]1179611797[[package]]11798name = "unsigned-varint"11799version = "0.5.1"11800source = "registry+https://github.com/rust-lang/crates.io-index"11801checksum = "f7fdeedbf205afadfe39ae559b75c3240f24e257d0ca27e85f85cb82aa19ac35"1180211803[[package]]11804name = "unsigned-varint"11805version = "0.6.0"11806source = "registry+https://github.com/rust-lang/crates.io-index"11807checksum = "35581ff83d4101e58b582e607120c7f5ffb17e632a980b1f38334d76b36908b2"11808dependencies = [11809 "asynchronous-codec 0.5.0",11810 "bytes 1.1.0",11811 "futures-io",11812 "futures-util",11813]1181411815[[package]]11816name = "unsigned-varint"11817version = "0.7.0"11818source = "registry+https://github.com/rust-lang/crates.io-index"11819checksum = "5f8d425fafb8cd76bc3f22aace4af471d3156301d7508f2107e98fbeae10bc7f"11820dependencies = [11821 "asynchronous-codec 0.6.0",11822 "bytes 1.1.0",11823 "futures-io",11824 "futures-util",11825]1182611827[[package]]11828name = "untrusted"11829version = "0.7.1"11830source = "registry+https://github.com/rust-lang/crates.io-index"11831checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"1183211833[[package]]11834name = "up-rpc"11835version = "0.1.0"11836dependencies = [11837 "nft-data-structs",11838 "pallet-common",11839 "parity-scale-codec",11840 "sp-api",11841 "sp-core",11842 "sp-runtime",11843 "sp-std",11844]1184511846[[package]]11847name = "up-sponsorship"11848version = "0.1.0"11849dependencies = [11850 "impl-trait-for-tuples 0.2.1",11851]1185211853[[package]]11854name = "url"11855version = "1.7.2"11856source = "registry+https://github.com/rust-lang/crates.io-index"11857checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"11858dependencies = [11859 "idna 0.1.5",11860 "matches",11861 "percent-encoding 1.0.1",11862]1186311864[[package]]11865name = "url"11866version = "2.2.2"11867source = "registry+https://github.com/rust-lang/crates.io-index"11868checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"11869dependencies = [11870 "form_urlencoded",11871 "idna 0.2.3",11872 "matches",11873 "percent-encoding 2.1.0",11874]1187511876[[package]]11877name = "value-bag"11878version = "1.0.0-alpha.8"11879source = "registry+https://github.com/rust-lang/crates.io-index"11880checksum = "79923f7731dc61ebfba3633098bf3ac533bbd35ccd8c57e7088d9a5eebe0263f"11881dependencies = [11882 "ctor",11883 "version_check",11884]1188511886[[package]]11887name = "vcpkg"11888version = "0.2.15"11889source = "registry+https://github.com/rust-lang/crates.io-index"11890checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"1189111892[[package]]11893name = "vec_map"11894version = "0.8.2"11895source = "registry+https://github.com/rust-lang/crates.io-index"11896checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"1189711898[[package]]11899name = "version_check"11900version = "0.9.3"11901source = "registry+https://github.com/rust-lang/crates.io-index"11902checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"1190311904[[package]]11905name = "void"11906version = "1.0.2"11907source = "registry+https://github.com/rust-lang/crates.io-index"11908checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"1190911910[[package]]11911name = "waker-fn"11912version = "1.1.0"11913source = "registry+https://github.com/rust-lang/crates.io-index"11914checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"1191511916[[package]]11917name = "walkdir"11918version = "2.3.2"11919source = "registry+https://github.com/rust-lang/crates.io-index"11920checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"11921dependencies = [11922 "same-file",11923 "winapi 0.3.9",11924 "winapi-util",11925]1192611927[[package]]11928name = "want"11929version = "0.3.0"11930source = "registry+https://github.com/rust-lang/crates.io-index"11931checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"11932dependencies = [11933 "log",11934 "try-lock",11935]1193611937[[package]]11938name = "wasi"11939version = "0.9.0+wasi-snapshot-preview1"11940source = "registry+https://github.com/rust-lang/crates.io-index"11941checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"1194211943[[package]]11944name = "wasi"11945version = "0.10.0+wasi-snapshot-preview1"11946source = "registry+https://github.com/rust-lang/crates.io-index"11947checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"1194811949[[package]]11950name = "wasm-bindgen"11951version = "0.2.78"11952source = "registry+https://github.com/rust-lang/crates.io-index"11953checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"11954dependencies = [11955 "cfg-if 1.0.0",11956 "wasm-bindgen-macro",11957]1195811959[[package]]11960name = "wasm-bindgen-backend"11961version = "0.2.78"11962source = "registry+https://github.com/rust-lang/crates.io-index"11963checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"11964dependencies = [11965 "bumpalo",11966 "lazy_static",11967 "log",11968 "proc-macro2",11969 "quote",11970 "syn",11971 "wasm-bindgen-shared",11972]1197311974[[package]]11975name = "wasm-bindgen-futures"11976version = "0.4.28"11977source = "registry+https://github.com/rust-lang/crates.io-index"11978checksum = "8e8d7523cb1f2a4c96c1317ca690031b714a51cc14e05f712446691f413f5d39"11979dependencies = [11980 "cfg-if 1.0.0",11981 "js-sys",11982 "wasm-bindgen",11983 "web-sys",11984]1198511986[[package]]11987name = "wasm-bindgen-macro"11988version = "0.2.78"11989source = "registry+https://github.com/rust-lang/crates.io-index"11990checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"11991dependencies = [11992 "quote",11993 "wasm-bindgen-macro-support",11994]1199511996[[package]]11997name = "wasm-bindgen-macro-support"11998version = "0.2.78"11999source = "registry+https://github.com/rust-lang/crates.io-index"12000checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"12001dependencies = [12002 "proc-macro2",12003 "quote",12004 "syn",12005 "wasm-bindgen-backend",12006 "wasm-bindgen-shared",12007]1200812009[[package]]12010name = "wasm-bindgen-shared"12011version = "0.2.78"12012source = "registry+https://github.com/rust-lang/crates.io-index"12013checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"1201412015[[package]]12016name = "wasm-gc-api"12017version = "0.1.11"12018source = "registry+https://github.com/rust-lang/crates.io-index"12019checksum = "d0c32691b6c7e6c14e7f8fd55361a9088b507aa49620fcd06c09b3a1082186b9"12020dependencies = [12021 "log",12022 "parity-wasm 0.32.0",12023 "rustc-demangle",12024]1202512026[[package]]12027name = "wasm-timer"12028version = "0.2.5"12029source = "registry+https://github.com/rust-lang/crates.io-index"12030checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"12031dependencies = [12032 "futures 0.3.17",12033 "js-sys",12034 "parking_lot 0.11.2",12035 "pin-utils",12036 "wasm-bindgen",12037 "wasm-bindgen-futures",12038 "web-sys",12039]1204012041[[package]]12042name = "wasmi"12043version = "0.9.1"12044source = "registry+https://github.com/rust-lang/crates.io-index"12045checksum = "ca00c5147c319a8ec91ec1a0edbec31e566ce2c9cc93b3f9bb86a9efd0eb795d"12046dependencies = [12047 "downcast-rs",12048 "libc",12049 "libm",12050 "memory_units",12051 "num-rational 0.2.4",12052 "num-traits",12053 "parity-wasm 0.42.2",12054 "wasmi-validation",12055]1205612057[[package]]12058name = "wasmi-validation"12059version = "0.4.1"12060source = "registry+https://github.com/rust-lang/crates.io-index"12061checksum = "165343ecd6c018fc09ebcae280752702c9a2ef3e6f8d02f1cfcbdb53ef6d7937"12062dependencies = [12063 "parity-wasm 0.42.2",12064]1206512066[[package]]12067name = "wasmparser"12068version = "0.80.2"12069source = "registry+https://github.com/rust-lang/crates.io-index"12070checksum = "449167e2832691a1bff24cde28d2804e90e09586a448c8e76984792c44334a6b"1207112072[[package]]12073name = "wasmtime"12074version = "0.30.0"12075source = "registry+https://github.com/rust-lang/crates.io-index"12076checksum = "899b1e5261e3d3420860dacfb952871ace9d7ba9f953b314f67aaf9f8e2a4d89"12077dependencies = [12078 "anyhow",12079 "backtrace",12080 "bincode",12081 "cfg-if 1.0.0",12082 "cpp_demangle",12083 "indexmap",12084 "lazy_static",12085 "libc",12086 "log",12087 "object 0.26.2",12088 "paste",12089 "psm",12090 "rayon",12091 "region",12092 "rustc-demangle",12093 "serde",12094 "target-lexicon",12095 "wasmparser",12096 "wasmtime-cache",12097 "wasmtime-cranelift",12098 "wasmtime-environ",12099 "wasmtime-jit",12100 "wasmtime-runtime",12101 "winapi 0.3.9",12102]1210312104[[package]]12105name = "wasmtime-cache"12106version = "0.30.0"12107source = "registry+https://github.com/rust-lang/crates.io-index"12108checksum = "e2493b81d7a9935f7af15e06beec806f256bc974a90a843685f3d61f2fc97058"12109dependencies = [12110 "anyhow",12111 "base64 0.13.0",12112 "bincode",12113 "directories-next",12114 "errno",12115 "file-per-thread-logger",12116 "libc",12117 "log",12118 "serde",12119 "sha2 0.9.8",12120 "toml",12121 "winapi 0.3.9",12122 "zstd",12123]1212412125[[package]]12126name = "wasmtime-cranelift"12127version = "0.30.0"12128source = "registry+https://github.com/rust-lang/crates.io-index"12129checksum = "99706bacdf5143f7f967d417f0437cce83a724cf4518cb1a3ff40e519d793021"12130dependencies = [12131 "anyhow",12132 "cranelift-codegen",12133 "cranelift-entity",12134 "cranelift-frontend",12135 "cranelift-native",12136 "cranelift-wasm",12137 "gimli 0.25.0",12138 "more-asserts",12139 "object 0.26.2",12140 "target-lexicon",12141 "thiserror",12142 "wasmparser",12143 "wasmtime-environ",12144]1214512146[[package]]12147name = "wasmtime-environ"12148version = "0.30.0"12149source = "registry+https://github.com/rust-lang/crates.io-index"12150checksum = "ac42cb562a2f98163857605f02581d719a410c5abe93606128c59a10e84de85b"12151dependencies = [12152 "anyhow",12153 "cfg-if 1.0.0",12154 "cranelift-entity",12155 "gimli 0.25.0",12156 "indexmap",12157 "log",12158 "more-asserts",12159 "object 0.26.2",12160 "serde",12161 "target-lexicon",12162 "thiserror",12163 "wasmparser",12164 "wasmtime-types",12165]1216612167[[package]]12168name = "wasmtime-jit"12169version = "0.30.0"12170source = "registry+https://github.com/rust-lang/crates.io-index"12171checksum = "24f46dd757225f29a419be415ea6fb8558df9b0194f07e3a6a9c99d0e14dd534"12172dependencies = [12173 "addr2line 0.16.0",12174 "anyhow",12175 "bincode",12176 "cfg-if 1.0.0",12177 "gimli 0.25.0",12178 "libc",12179 "log",12180 "more-asserts",12181 "object 0.26.2",12182 "region",12183 "serde",12184 "target-lexicon",12185 "thiserror",12186 "wasmparser",12187 "wasmtime-environ",12188 "wasmtime-runtime",12189 "winapi 0.3.9",12190]1219112192[[package]]12193name = "wasmtime-runtime"12194version = "0.30.0"12195source = "registry+https://github.com/rust-lang/crates.io-index"12196checksum = "0122215a44923f395487048cb0a1d60b5b32c73aab15cf9364b798dbaff0996f"12197dependencies = [12198 "anyhow",12199 "backtrace",12200 "cc",12201 "cfg-if 1.0.0",12202 "indexmap",12203 "lazy_static",12204 "libc",12205 "log",12206 "mach",12207 "memoffset",12208 "more-asserts",12209 "rand 0.8.4",12210 "region",12211 "thiserror",12212 "wasmtime-environ",12213 "winapi 0.3.9",12214]1221512216[[package]]12217name = "wasmtime-types"12218version = "0.30.0"12219source = "registry+https://github.com/rust-lang/crates.io-index"12220checksum = "f9b01caf8a204ef634ebac99700e77ba716d3ebbb68a1abbc2ceb6b16dbec9e4"12221dependencies = [12222 "cranelift-entity",12223 "serde",12224 "thiserror",12225 "wasmparser",12226]1222712228[[package]]12229name = "web-sys"12230version = "0.3.55"12231source = "registry+https://github.com/rust-lang/crates.io-index"12232checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"12233dependencies = [12234 "js-sys",12235 "wasm-bindgen",12236]1223712238[[package]]12239name = "webpki"12240version = "0.21.4"12241source = "registry+https://github.com/rust-lang/crates.io-index"12242checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"12243dependencies = [12244 "ring",12245 "untrusted",12246]1224712248[[package]]12249name = "webpki-roots"12250version = "0.21.1"12251source = "registry+https://github.com/rust-lang/crates.io-index"12252checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"12253dependencies = [12254 "webpki",12255]1225612257[[package]]12258name = "wepoll-ffi"12259version = "0.1.2"12260source = "registry+https://github.com/rust-lang/crates.io-index"12261checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"12262dependencies = [12263 "cc",12264]1226512266[[package]]12267name = "westend-runtime"12268version = "0.9.12"12269source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12270dependencies = [12271 "beefy-primitives",12272 "bitvec 0.20.4",12273 "frame-benchmarking",12274 "frame-election-provider-support",12275 "frame-executive",12276 "frame-support",12277 "frame-system",12278 "frame-system-benchmarking",12279 "frame-system-rpc-runtime-api",12280 "frame-try-runtime",12281 "hex-literal",12282 "log",12283 "pallet-authority-discovery",12284 "pallet-authorship",12285 "pallet-babe",12286 "pallet-bags-list",12287 "pallet-balances",12288 "pallet-collective",12289 "pallet-democracy",12290 "pallet-election-provider-multi-phase",12291 "pallet-elections-phragmen",12292 "pallet-grandpa",12293 "pallet-identity",12294 "pallet-im-online",12295 "pallet-indices",12296 "pallet-membership",12297 "pallet-mmr-primitives",12298 "pallet-multisig",12299 "pallet-nicks",12300 "pallet-offences",12301 "pallet-offences-benchmarking",12302 "pallet-proxy",12303 "pallet-recovery",12304 "pallet-scheduler",12305 "pallet-session",12306 "pallet-session-benchmarking",12307 "pallet-society",12308 "pallet-staking",12309 "pallet-staking-reward-curve",12310 "pallet-sudo",12311 "pallet-timestamp",12312 "pallet-transaction-payment",12313 "pallet-transaction-payment-rpc-runtime-api",12314 "pallet-treasury",12315 "pallet-utility",12316 "pallet-vesting",12317 "pallet-xcm",12318 "pallet-xcm-benchmarks",12319 "parity-scale-codec",12320 "polkadot-parachain",12321 "polkadot-primitives",12322 "polkadot-runtime-common",12323 "polkadot-runtime-parachains",12324 "rustc-hex",12325 "scale-info",12326 "serde",12327 "serde_derive",12328 "smallvec",12329 "sp-api",12330 "sp-authority-discovery",12331 "sp-block-builder",12332 "sp-consensus-babe",12333 "sp-core",12334 "sp-inherents",12335 "sp-io",12336 "sp-npos-elections",12337 "sp-offchain",12338 "sp-runtime",12339 "sp-session",12340 "sp-staking",12341 "sp-std",12342 "sp-transaction-pool",12343 "sp-version",12344 "substrate-wasm-builder",12345 "xcm",12346 "xcm-builder",12347 "xcm-executor",12348]1234912350[[package]]12351name = "which"12352version = "4.2.2"12353source = "registry+https://github.com/rust-lang/crates.io-index"12354checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9"12355dependencies = [12356 "either",12357 "lazy_static",12358 "libc",12359]1236012361[[package]]12362name = "widestring"12363version = "0.4.3"12364source = "registry+https://github.com/rust-lang/crates.io-index"12365checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"1236612367[[package]]12368name = "winapi"12369version = "0.2.8"12370source = "registry+https://github.com/rust-lang/crates.io-index"12371checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"1237212373[[package]]12374name = "winapi"12375version = "0.3.9"12376source = "registry+https://github.com/rust-lang/crates.io-index"12377checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"12378dependencies = [12379 "winapi-i686-pc-windows-gnu",12380 "winapi-x86_64-pc-windows-gnu",12381]1238212383[[package]]12384name = "winapi-build"12385version = "0.1.1"12386source = "registry+https://github.com/rust-lang/crates.io-index"12387checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"1238812389[[package]]12390name = "winapi-i686-pc-windows-gnu"12391version = "0.4.0"12392source = "registry+https://github.com/rust-lang/crates.io-index"12393checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"1239412395[[package]]12396name = "winapi-util"12397version = "0.1.5"12398source = "registry+https://github.com/rust-lang/crates.io-index"12399checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"12400dependencies = [12401 "winapi 0.3.9",12402]1240312404[[package]]12405name = "winapi-x86_64-pc-windows-gnu"12406version = "0.4.0"12407source = "registry+https://github.com/rust-lang/crates.io-index"12408checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"1240912410[[package]]12411name = "winreg"12412version = "0.6.2"12413source = "registry+https://github.com/rust-lang/crates.io-index"12414checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"12415dependencies = [12416 "winapi 0.3.9",12417]1241812419[[package]]12420name = "ws2_32-sys"12421version = "0.2.1"12422source = "registry+https://github.com/rust-lang/crates.io-index"12423checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"12424dependencies = [12425 "winapi 0.2.8",12426 "winapi-build",12427]1242812429[[package]]12430name = "wyz"12431version = "0.2.0"12432source = "registry+https://github.com/rust-lang/crates.io-index"12433checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"1243412435[[package]]12436name = "x25519-dalek"12437version = "1.1.1"12438source = "registry+https://github.com/rust-lang/crates.io-index"12439checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f"12440dependencies = [12441 "curve25519-dalek 3.2.0",12442 "rand_core 0.5.1",12443 "zeroize",12444]1244512446[[package]]12447name = "xcm"12448version = "0.9.12"12449source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12450dependencies = [12451 "derivative",12452 "impl-trait-for-tuples 0.2.1",12453 "log",12454 "parity-scale-codec",12455 "scale-info",12456 "xcm-procedural",12457]1245812459[[package]]12460name = "xcm-builder"12461version = "0.9.12"12462source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12463dependencies = [12464 "frame-support",12465 "frame-system",12466 "log",12467 "pallet-transaction-payment",12468 "parity-scale-codec",12469 "polkadot-parachain",12470 "scale-info",12471 "sp-arithmetic",12472 "sp-io",12473 "sp-runtime",12474 "sp-std",12475 "xcm",12476 "xcm-executor",12477]1247812479[[package]]12480name = "xcm-executor"12481version = "0.9.12"12482source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12483dependencies = [12484 "frame-benchmarking",12485 "frame-support",12486 "impl-trait-for-tuples 0.2.1",12487 "log",12488 "parity-scale-codec",12489 "sp-arithmetic",12490 "sp-core",12491 "sp-io",12492 "sp-runtime",12493 "sp-std",12494 "xcm",12495]1249612497[[package]]12498name = "xcm-procedural"12499version = "0.1.0"12500source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.12#5feed981cf0fe671447eabaa9c0d235a8dd0003e"12501dependencies = [12502 "proc-macro2",12503 "quote",12504 "syn",12505]1250612507[[package]]12508name = "yamux"12509version = "0.9.0"12510source = "registry+https://github.com/rust-lang/crates.io-index"12511checksum = "e7d9028f208dd5e63c614be69f115c1b53cacc1111437d4c765185856666c107"12512dependencies = [12513 "futures 0.3.17",12514 "log",12515 "nohash-hasher",12516 "parking_lot 0.11.2",12517 "rand 0.8.4",12518 "static_assertions",12519]1252012521[[package]]12522name = "yansi"12523version = "0.5.0"12524source = "registry+https://github.com/rust-lang/crates.io-index"12525checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"1252612527[[package]]12528name = "zeroize"12529version = "1.4.2"12530source = "registry+https://github.com/rust-lang/crates.io-index"12531checksum = "bf68b08513768deaa790264a7fac27a58cbf2705cfcdc9448362229217d7e970"12532dependencies = [12533 "zeroize_derive",12534]1253512536[[package]]12537name = "zeroize_derive"12538version = "1.2.0"12539source = "registry+https://github.com/rust-lang/crates.io-index"12540checksum = "bdff2024a851a322b08f179173ae2ba620445aef1e838f0c196820eade4ae0c7"12541dependencies = [12542 "proc-macro2",12543 "quote",12544 "syn",12545 "synstructure",12546]1254712548[[package]]12549name = "zstd"12550version = "0.9.0+zstd.1.5.0"12551source = "registry+https://github.com/rust-lang/crates.io-index"12552checksum = "07749a5dc2cb6b36661290245e350f15ec3bbb304e493db54a1d354480522ccd"12553dependencies = [12554 "zstd-safe",12555]1255612557[[package]]12558name = "zstd-safe"12559version = "4.1.1+zstd.1.5.0"12560source = "registry+https://github.com/rust-lang/crates.io-index"12561checksum = "c91c90f2c593b003603e5e0493c837088df4469da25aafff8bce42ba48caf079"12562dependencies = [12563 "libc",12564 "zstd-sys",12565]1256612567[[package]]12568name = "zstd-sys"12569version = "1.6.1+zstd.1.5.0"12570source = "registry+https://github.com/rust-lang/crates.io-index"12571checksum = "615120c7a2431d16cf1cf979e7fc31ba7a5b5e5707b29c8a99e5dbf8a8392a33"12572dependencies = [12573 "cc",12574 "libc",12575]