123[[package]]4name = "Inflector"5version = "0.11.4"6source = "registry+https://github.com/rust-lang/crates.io-index"7checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"8dependencies = [9 "lazy_static",10 "regex",11]1213[[package]]14name = "adler32"15version = "1.0.4"16source = "registry+https://github.com/rust-lang/crates.io-index"17checksum = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"1819[[package]]20name = "ahash"21version = "0.2.18"22source = "registry+https://github.com/rust-lang/crates.io-index"23checksum = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3"24dependencies = [25 "const-random",26]2728[[package]]29name = "aho-corasick"30version = "0.7.10"31source = "registry+https://github.com/rust-lang/crates.io-index"32checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"33dependencies = [34 "memchr",35]3637[[package]]38name = "alga"39version = "0.9.3"40source = "registry+https://github.com/rust-lang/crates.io-index"41checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"42dependencies = [43 "approx",44 "num-complex",45 "num-traits 0.2.11",46]4748[[package]]49name = "ansi_term"50version = "0.11.0"51source = "registry+https://github.com/rust-lang/crates.io-index"52checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"53dependencies = [54 "winapi 0.3.8",55]5657[[package]]58name = "ansi_term"59version = "0.12.1"60source = "registry+https://github.com/rust-lang/crates.io-index"61checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"62dependencies = [63 "winapi 0.3.8",64]6566[[package]]67name = "anyhow"68version = "1.0.28"69source = "registry+https://github.com/rust-lang/crates.io-index"70checksum = "d9a60d744a80c30fcb657dfe2c1b22bcb3e814c1a1e3674f32bf5820b570fbff"7172[[package]]73name = "app_dirs"74version = "1.2.1"75source = "registry+https://github.com/rust-lang/crates.io-index"76checksum = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d"77dependencies = [78 "ole32-sys",79 "shell32-sys",80 "winapi 0.2.8",81 "xdg",82]8384[[package]]85name = "approx"86version = "0.3.2"87source = "registry+https://github.com/rust-lang/crates.io-index"88checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"89dependencies = [90 "num-traits 0.2.11",91]9293[[package]]94name = "arc-swap"95version = "0.4.5"96source = "registry+https://github.com/rust-lang/crates.io-index"97checksum = "d663a8e9a99154b5fb793032533f6328da35e23aac63d5c152279aa8ba356825"9899[[package]]100name = "arrayref"101version = "0.3.6"102source = "registry+https://github.com/rust-lang/crates.io-index"103checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"104105[[package]]106name = "arrayvec"107version = "0.4.12"108source = "registry+https://github.com/rust-lang/crates.io-index"109checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"110dependencies = [111 "nodrop",112]113114[[package]]115name = "arrayvec"116version = "0.5.1"117source = "registry+https://github.com/rust-lang/crates.io-index"118checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"119120[[package]]121name = "asn1_der"122version = "0.6.3"123source = "registry+https://github.com/rust-lang/crates.io-index"124checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"125dependencies = [126 "asn1_der_derive",127]128129[[package]]130name = "asn1_der_derive"131version = "0.1.2"132source = "registry+https://github.com/rust-lang/crates.io-index"133checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"134dependencies = [135 "quote 1.0.3",136 "syn 1.0.17",137]138139[[package]]140name = "assert_matches"141version = "1.3.0"142source = "registry+https://github.com/rust-lang/crates.io-index"143checksum = "7deb0a829ca7bcfaf5da70b073a8d128619259a7be8216a355e23f00763059e5"144145[[package]]146name = "async-std"147version = "1.5.0"148source = "registry+https://github.com/rust-lang/crates.io-index"149checksum = "538ecb01eb64eecd772087e5b6f7540cbc917f047727339a472dafed2185b267"150dependencies = [151 "async-task",152 "broadcaster",153 "crossbeam-channel",154 "crossbeam-deque",155 "crossbeam-utils",156 "futures-core",157 "futures-io",158 "futures-timer 2.0.2",159 "kv-log-macro",160 "log",161 "memchr",162 "mio",163 "mio-uds",164 "num_cpus",165 "once_cell",166 "pin-project-lite",167 "pin-utils",168 "slab",169]170171[[package]]172name = "async-task"173version = "1.3.1"174source = "registry+https://github.com/rust-lang/crates.io-index"175checksum = "0ac2c016b079e771204030951c366db398864f5026f84a44dafb0ff20f02085d"176dependencies = [177 "libc",178 "winapi 0.3.8",179]180181[[package]]182name = "async-tls"183version = "0.7.0"184source = "registry+https://github.com/rust-lang/crates.io-index"185checksum = "95fd83426b89b034bf4e9ceb9c533c2f2386b813fd3dcae0a425ec6f1837d78a"186dependencies = [187 "futures 0.3.4",188 "rustls",189 "webpki",190 "webpki-roots 0.19.0",191]192193[[package]]194name = "atty"195version = "0.2.14"196source = "registry+https://github.com/rust-lang/crates.io-index"197checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"198dependencies = [199 "hermit-abi",200 "libc",201 "winapi 0.3.8",202]203204[[package]]205name = "autocfg"206version = "0.1.7"207source = "registry+https://github.com/rust-lang/crates.io-index"208checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"209210[[package]]211name = "autocfg"212version = "1.0.0"213source = "registry+https://github.com/rust-lang/crates.io-index"214checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"215216[[package]]217name = "backtrace"218version = "0.3.46"219source = "registry+https://github.com/rust-lang/crates.io-index"220checksum = "b1e692897359247cc6bb902933361652380af0f1b7651ae5c5013407f30e109e"221dependencies = [222 "backtrace-sys",223 "cfg-if",224 "libc",225 "rustc-demangle",226]227228[[package]]229name = "backtrace-sys"230version = "0.1.35"231source = "registry+https://github.com/rust-lang/crates.io-index"232checksum = "7de8aba10a69c8e8d7622c5710229485ec32e9d55fdad160ea559c086fdcd118"233dependencies = [234 "cc",235 "libc",236]237238[[package]]239name = "base58"240version = "0.1.0"241source = "registry+https://github.com/rust-lang/crates.io-index"242checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"243244[[package]]245name = "base64"246version = "0.11.0"247source = "registry+https://github.com/rust-lang/crates.io-index"248checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"249250[[package]]251name = "bindgen"252version = "0.53.2"253source = "registry+https://github.com/rust-lang/crates.io-index"254checksum = "6bb26d6a69a335b8cb0e7c7e9775cd5666611dc50a37177c3f2cedcfc040e8c8"255dependencies = [256 "bitflags",257 "cexpr",258 "cfg-if",259 "clang-sys",260 "clap",261 "env_logger",262 "lazy_static",263 "lazycell",264 "log",265 "peeking_take_while",266 "proc-macro2",267 "quote 1.0.3",268 "regex",269 "rustc-hash",270 "shlex",271 "which",272]273274[[package]]275name = "bitflags"276version = "1.2.1"277source = "registry+https://github.com/rust-lang/crates.io-index"278checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"279280[[package]]281name = "bitmask"282version = "0.5.0"283source = "registry+https://github.com/rust-lang/crates.io-index"284checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"285286[[package]]287name = "bitvec"288version = "0.17.4"289source = "registry+https://github.com/rust-lang/crates.io-index"290checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"291dependencies = [292 "either",293 "radium",294]295296[[package]]297name = "blake2"298version = "0.8.1"299source = "registry+https://github.com/rust-lang/crates.io-index"300checksum = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330"301dependencies = [302 "byte-tools",303 "crypto-mac",304 "digest",305 "opaque-debug",306]307308[[package]]309name = "blake2-rfc"310version = "0.2.18"311source = "registry+https://github.com/rust-lang/crates.io-index"312checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"313dependencies = [314 "arrayvec 0.4.12",315 "constant_time_eq",316]317318[[package]]319name = "blake2b_simd"320version = "0.5.10"321source = "registry+https://github.com/rust-lang/crates.io-index"322checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"323dependencies = [324 "arrayref",325 "arrayvec 0.5.1",326 "constant_time_eq",327]328329[[package]]330name = "blake2s_simd"331version = "0.5.10"332source = "registry+https://github.com/rust-lang/crates.io-index"333checksum = "ab9e07352b829279624ceb7c64adb4f585dacdb81d35cafae81139ccd617cf44"334dependencies = [335 "arrayref",336 "arrayvec 0.5.1",337 "constant_time_eq",338]339340[[package]]341name = "block-buffer"342version = "0.7.3"343source = "registry+https://github.com/rust-lang/crates.io-index"344checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"345dependencies = [346 "block-padding",347 "byte-tools",348 "byteorder",349 "generic-array",350]351352[[package]]353name = "block-padding"354version = "0.1.5"355source = "registry+https://github.com/rust-lang/crates.io-index"356checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"357dependencies = [358 "byte-tools",359]360361[[package]]362name = "broadcaster"363version = "1.0.0"364source = "registry+https://github.com/rust-lang/crates.io-index"365checksum = "d9c972e21e0d055a36cf73e4daae870941fe7a8abcd5ac3396aab9e4c126bd87"366dependencies = [367 "futures-channel",368 "futures-core",369 "futures-sink",370 "futures-util",371 "parking_lot 0.10.2",372 "slab",373]374375[[package]]376name = "bs58"377version = "0.3.0"378source = "registry+https://github.com/rust-lang/crates.io-index"379checksum = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae"380381[[package]]382name = "bstr"383version = "0.2.12"384source = "registry+https://github.com/rust-lang/crates.io-index"385checksum = "2889e6d50f394968c8bf4240dc3f2a7eb4680844d27308f798229ac9d4725f41"386dependencies = [387 "memchr",388]389390[[package]]391name = "bumpalo"392version = "3.2.1"393source = "registry+https://github.com/rust-lang/crates.io-index"394checksum = "12ae9db68ad7fac5fe51304d20f016c911539251075a214f8e663babefa35187"395396[[package]]397name = "byte-slice-cast"398version = "0.3.5"399source = "registry+https://github.com/rust-lang/crates.io-index"400checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"401402[[package]]403name = "byte-tools"404version = "0.3.1"405source = "registry+https://github.com/rust-lang/crates.io-index"406checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"407408[[package]]409name = "byteorder"410version = "1.3.4"411source = "registry+https://github.com/rust-lang/crates.io-index"412checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"413414[[package]]415name = "bytes"416version = "0.4.12"417source = "registry+https://github.com/rust-lang/crates.io-index"418checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"419dependencies = [420 "byteorder",421 "either",422 "iovec",423]424425[[package]]426name = "bytes"427version = "0.5.4"428source = "registry+https://github.com/rust-lang/crates.io-index"429checksum = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1"430431[[package]]432name = "c_linked_list"433version = "1.1.1"434source = "registry+https://github.com/rust-lang/crates.io-index"435checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b"436437[[package]]438name = "cc"439version = "1.0.50"440source = "registry+https://github.com/rust-lang/crates.io-index"441checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"442dependencies = [443 "jobserver",444]445446[[package]]447name = "cexpr"448version = "0.4.0"449source = "registry+https://github.com/rust-lang/crates.io-index"450checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"451dependencies = [452 "nom",453]454455[[package]]456name = "cfg-if"457version = "0.1.10"458source = "registry+https://github.com/rust-lang/crates.io-index"459checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"460461[[package]]462name = "chacha20-poly1305-aead"463version = "0.1.2"464source = "registry+https://github.com/rust-lang/crates.io-index"465checksum = "77d2058ba29594f69c75e8a9018e0485e3914ca5084e3613cd64529042f5423b"466dependencies = [467 "constant_time_eq",468]469470[[package]]471name = "chrono"472version = "0.4.11"473source = "registry+https://github.com/rust-lang/crates.io-index"474checksum = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2"475dependencies = [476 "num-integer",477 "num-traits 0.2.11",478 "time",479]480481[[package]]482name = "clang-sys"483version = "0.29.3"484source = "registry+https://github.com/rust-lang/crates.io-index"485checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"486dependencies = [487 "glob",488 "libc",489 "libloading",490]491492[[package]]493name = "clap"494version = "2.33.0"495source = "registry+https://github.com/rust-lang/crates.io-index"496checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"497dependencies = [498 "ansi_term 0.11.0",499 "atty",500 "bitflags",501 "strsim",502 "textwrap",503 "unicode-width",504 "vec_map",505]506507[[package]]508name = "clear_on_drop"509version = "0.2.3"510source = "registry+https://github.com/rust-lang/crates.io-index"511checksum = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17"512dependencies = [513 "cc",514]515516[[package]]517name = "cloudabi"518version = "0.0.3"519source = "registry+https://github.com/rust-lang/crates.io-index"520checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"521dependencies = [522 "bitflags",523]524525[[package]]526name = "const-random"527version = "0.1.8"528source = "registry+https://github.com/rust-lang/crates.io-index"529checksum = "2f1af9ac737b2dd2d577701e59fd09ba34822f6f2ebdb30a7647405d9e55e16a"530dependencies = [531 "const-random-macro",532 "proc-macro-hack",533]534535[[package]]536name = "const-random-macro"537version = "0.1.8"538source = "registry+https://github.com/rust-lang/crates.io-index"539checksum = "25e4c606eb459dd29f7c57b2e0879f2b6f14ee130918c2b78ccb58a9624e6c7a"540dependencies = [541 "getrandom",542 "proc-macro-hack",543]544545[[package]]546name = "constant_time_eq"547version = "0.1.5"548source = "registry+https://github.com/rust-lang/crates.io-index"549checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"550551[[package]]552name = "core-foundation"553version = "0.7.0"554source = "registry+https://github.com/rust-lang/crates.io-index"555checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"556dependencies = [557 "core-foundation-sys",558 "libc",559]560561[[package]]562name = "core-foundation-sys"563version = "0.7.0"564source = "registry+https://github.com/rust-lang/crates.io-index"565checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"566567[[package]]568name = "crc32fast"569version = "1.2.0"570source = "registry+https://github.com/rust-lang/crates.io-index"571checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"572dependencies = [573 "cfg-if",574]575576[[package]]577name = "crossbeam-channel"578version = "0.4.2"579source = "registry+https://github.com/rust-lang/crates.io-index"580checksum = "cced8691919c02aac3cb0a1bc2e9b73d89e832bf9a06fc579d4e71b68a2da061"581dependencies = [582 "crossbeam-utils",583 "maybe-uninit",584]585586[[package]]587name = "crossbeam-deque"588version = "0.7.3"589source = "registry+https://github.com/rust-lang/crates.io-index"590checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"591dependencies = [592 "crossbeam-epoch",593 "crossbeam-utils",594 "maybe-uninit",595]596597[[package]]598name = "crossbeam-epoch"599version = "0.8.2"600source = "registry+https://github.com/rust-lang/crates.io-index"601checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"602dependencies = [603 "autocfg 1.0.0",604 "cfg-if",605 "crossbeam-utils",606 "lazy_static",607 "maybe-uninit",608 "memoffset",609 "scopeguard",610]611612[[package]]613name = "crossbeam-queue"614version = "0.2.1"615source = "registry+https://github.com/rust-lang/crates.io-index"616checksum = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"617dependencies = [618 "cfg-if",619 "crossbeam-utils",620]621622[[package]]623name = "crossbeam-utils"624version = "0.7.2"625source = "registry+https://github.com/rust-lang/crates.io-index"626checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"627dependencies = [628 "autocfg 1.0.0",629 "cfg-if",630 "lazy_static",631]632633[[package]]634name = "crunchy"635version = "0.2.2"636source = "registry+https://github.com/rust-lang/crates.io-index"637checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"638639[[package]]640name = "crypto-mac"641version = "0.7.0"642source = "registry+https://github.com/rust-lang/crates.io-index"643checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"644dependencies = [645 "generic-array",646 "subtle 1.0.0",647]648649[[package]]650name = "ct-logs"651version = "0.6.0"652source = "registry+https://github.com/rust-lang/crates.io-index"653checksum = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113"654dependencies = [655 "sct",656]657658[[package]]659name = "curve25519-dalek"660version = "2.0.0"661source = "registry+https://github.com/rust-lang/crates.io-index"662checksum = "26778518a7f6cffa1d25a44b602b62b979bd88adb9e99ffec546998cf3404839"663dependencies = [664 "byteorder",665 "digest",666 "rand_core 0.5.1",667 "subtle 2.2.2",668 "zeroize",669]670671[[package]]672name = "data-encoding"673version = "2.2.0"674source = "registry+https://github.com/rust-lang/crates.io-index"675checksum = "11c0346158a19b3627234e15596f5e465c360fcdb97d817bcb255e0510f5a788"676677[[package]]678name = "derive_more"679version = "0.99.5"680source = "registry+https://github.com/rust-lang/crates.io-index"681checksum = "e2323f3f47db9a0e77ce7a300605d8d2098597fc451ed1a97bb1f6411bb550a7"682dependencies = [683 "proc-macro2",684 "quote 1.0.3",685 "syn 1.0.17",686]687688[[package]]689name = "digest"690version = "0.8.1"691source = "registry+https://github.com/rust-lang/crates.io-index"692checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"693dependencies = [694 "generic-array",695]696697[[package]]698name = "dns-parser"699version = "0.8.0"700source = "registry+https://github.com/rust-lang/crates.io-index"701checksum = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea"702dependencies = [703 "byteorder",704 "quick-error",705]706707[[package]]708name = "doc-comment"709version = "0.3.3"710source = "registry+https://github.com/rust-lang/crates.io-index"711checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"712713[[package]]714name = "ed25519-dalek"715version = "1.0.0-pre.3"716source = "registry+https://github.com/rust-lang/crates.io-index"717checksum = "978710b352437433c97b2bff193f2fb1dfd58a093f863dd95e225a19baa599a2"718dependencies = [719 "clear_on_drop",720 "curve25519-dalek",721 "rand 0.7.3",722 "sha2",723]724725[[package]]726name = "either"727version = "1.5.3"728source = "registry+https://github.com/rust-lang/crates.io-index"729checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"730731[[package]]732name = "enum-primitive-derive"733version = "0.1.2"734source = "registry+https://github.com/rust-lang/crates.io-index"735checksum = "e2b90e520ec62c1864c8c78d637acbfe8baf5f63240f2fb8165b8325c07812dd"736dependencies = [737 "num-traits 0.1.43",738 "quote 0.3.15",739 "syn 0.11.11",740]741742[[package]]743name = "env_logger"744version = "0.7.1"745source = "registry+https://github.com/rust-lang/crates.io-index"746checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"747dependencies = [748 "atty",749 "humantime",750 "log",751 "regex",752 "termcolor",753]754755[[package]]756name = "environmental"757version = "1.1.1"758source = "registry+https://github.com/rust-lang/crates.io-index"759checksum = "516aa8d7a71cb00a1c4146f0798549b93d083d4f189b3ced8f3de6b8f11ee6c4"760761[[package]]762name = "erased-serde"763version = "0.3.11"764source = "registry+https://github.com/rust-lang/crates.io-index"765checksum = "d88b6d1705e16a4d62e05ea61cc0496c2bd190f4fa8e5c1f11ce747be6bcf3d1"766dependencies = [767 "serde",768]769770[[package]]771name = "ethbloom"772version = "0.9.0"773source = "registry+https://github.com/rust-lang/crates.io-index"774checksum = "9e7abcddbdd5db30aeed4deb586adc4824e6c247e2f7238d1187f752893f096b"775dependencies = [776 "crunchy",777 "fixed-hash",778 "impl-rlp",779 "impl-serde 0.3.0",780 "tiny-keccak",781]782783[[package]]784name = "ethereum-types"785version = "0.9.0"786source = "registry+https://github.com/rust-lang/crates.io-index"787checksum = "964c23cdee0ca07d5be2a628b46d5c11a2134ce554a8c16d8dbc2db647e4fd4d"788dependencies = [789 "ethbloom",790 "fixed-hash",791 "impl-rlp",792 "impl-serde 0.3.0",793 "primitive-types",794 "uint",795]796797[[package]]798name = "exit-future"799version = "0.2.0"800source = "registry+https://github.com/rust-lang/crates.io-index"801checksum = "e43f2f1833d64e33f15592464d6fdd70f349dda7b1a53088eb83cd94014008c5"802dependencies = [803 "futures 0.3.4",804]805806[[package]]807name = "failure"808version = "0.1.7"809source = "registry+https://github.com/rust-lang/crates.io-index"810checksum = "b8529c2421efa3066a5cbd8063d2244603824daccb6936b079010bb2aa89464b"811dependencies = [812 "backtrace",813 "failure_derive",814]815816[[package]]817name = "failure_derive"818version = "0.1.7"819source = "registry+https://github.com/rust-lang/crates.io-index"820checksum = "030a733c8287d6213886dd487564ff5c8f6aae10278b3588ed177f9d18f8d231"821dependencies = [822 "proc-macro2",823 "quote 1.0.3",824 "syn 1.0.17",825 "synstructure",826]827828[[package]]829name = "fake-simd"830version = "0.1.2"831source = "registry+https://github.com/rust-lang/crates.io-index"832checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"833834[[package]]835name = "fdlimit"836version = "0.1.4"837source = "registry+https://github.com/rust-lang/crates.io-index"838checksum = "0da54a593b34c71b889ee45f5b5bb900c74148c5f7f8c6a9479ee7899f69603c"839dependencies = [840 "libc",841]842843[[package]]844name = "finality-grandpa"845version = "0.11.2"846source = "registry+https://github.com/rust-lang/crates.io-index"847checksum = "024517816630be5204eba201e8d1d405042b1255a5e0e3f298b054fc24d59e1d"848dependencies = [849 "futures 0.3.4",850 "futures-timer 2.0.2",851 "log",852 "num-traits 0.2.11",853 "parity-scale-codec",854 "parking_lot 0.9.0",855]856857[[package]]858name = "fixed-hash"859version = "0.6.0"860source = "registry+https://github.com/rust-lang/crates.io-index"861checksum = "32529fc42e86ec06e5047092082aab9ad459b070c5d2a76b14f4f5ce70bf2e84"862dependencies = [863 "byteorder",864 "rand 0.7.3",865 "rustc-hex",866 "static_assertions",867]868869[[package]]870name = "fixedbitset"871version = "0.2.0"872source = "registry+https://github.com/rust-lang/crates.io-index"873checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d"874875[[package]]876name = "flate2"877version = "1.0.14"878source = "registry+https://github.com/rust-lang/crates.io-index"879checksum = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42"880dependencies = [881 "cfg-if",882 "crc32fast",883 "libc",884 "libz-sys",885 "miniz_oxide",886]887888[[package]]889name = "fnv"890version = "1.0.6"891source = "registry+https://github.com/rust-lang/crates.io-index"892checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"893894[[package]]895name = "fork-tree"896version = "2.0.0-alpha.6"897source = "registry+https://github.com/rust-lang/crates.io-index"898checksum = "40a4492b78f0aec7271d261e0f1025297012c7853c263e036d15790f9ca99e72"899dependencies = [900 "parity-scale-codec",901]902903[[package]]904name = "frame-benchmarking"905version = "2.0.0-alpha.6"906source = "registry+https://github.com/rust-lang/crates.io-index"907checksum = "4f2fc91a6a976ce87b105722d8d9cdc44d4cb03ad24493d34cbfb64bbaacb7ee"908dependencies = [909 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",910 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",911 "linregress",912 "parity-scale-codec",913 "paste",914 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",915 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",916 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",917 "sp-runtime-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",918 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",919]920921[[package]]922name = "frame-executive"923version = "2.0.0-alpha.6"924source = "registry+https://github.com/rust-lang/crates.io-index"925checksum = "2941cd59682f596645d54b0e84c02e98f9be53a346841c720ead60cdbadb3463"926dependencies = [927 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",928 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",929 "parity-scale-codec",930 "serde",931 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",932 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",933]934935[[package]]936name = "frame-metadata"937version = "11.0.0-alpha.6"938source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"939dependencies = [940 "parity-scale-codec",941 "serde",942 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",943 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",944]945946[[package]]947name = "frame-metadata"948version = "11.0.0-alpha.6"949source = "registry+https://github.com/rust-lang/crates.io-index"950checksum = "8e5eaf1cd17755f099188d76995520a3179fedf0cb631264b8759dea0cd2e981"951dependencies = [952 "parity-scale-codec",953 "serde",954 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",955 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",956]957958[[package]]959name = "frame-support"960version = "2.0.0-alpha.6"961source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"962dependencies = [963 "bitmask",964 "frame-metadata 11.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",965 "frame-support-procedural 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",966 "impl-trait-for-tuples",967 "log",968 "once_cell",969 "parity-scale-codec",970 "paste",971 "serde",972 "sp-arithmetic 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",973 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",974 "sp-inherents 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",975 "sp-io 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",976 "sp-runtime 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",977 "sp-state-machine 0.8.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",978 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",979 "tracing",980]981982[[package]]983name = "frame-support"984version = "2.0.0-alpha.6"985source = "registry+https://github.com/rust-lang/crates.io-index"986checksum = "a4058dce75ae1d45b469a8cbbe0c9dc3083e5546936b60e4647e73584e0f7ba7"987dependencies = [988 "bitmask",989 "frame-metadata 11.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",990 "frame-support-procedural 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",991 "impl-trait-for-tuples",992 "log",993 "once_cell",994 "parity-scale-codec",995 "paste",996 "serde",997 "sp-arithmetic 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",998 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",999 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1000 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1001 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1002 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1003 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1004 "tracing",1005]10061007[[package]]1008name = "frame-support-procedural"1009version = "2.0.0-alpha.6"1010source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"1011dependencies = [1012 "frame-support-procedural-tools 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",1013 "proc-macro2",1014 "quote 1.0.3",1015 "syn 1.0.17",1016]10171018[[package]]1019name = "frame-support-procedural"1020version = "2.0.0-alpha.6"1021source = "registry+https://github.com/rust-lang/crates.io-index"1022checksum = "eefa7eb42406f732f87f8331aaaa787a65abe0f5f681a59fac1737ba4e81d89e"1023dependencies = [1024 "frame-support-procedural-tools 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1025 "proc-macro2",1026 "quote 1.0.3",1027 "syn 1.0.17",1028]10291030[[package]]1031name = "frame-support-procedural-tools"1032version = "2.0.0-alpha.6"1033source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"1034dependencies = [1035 "frame-support-procedural-tools-derive 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",1036 "proc-macro-crate",1037 "proc-macro2",1038 "quote 1.0.3",1039 "syn 1.0.17",1040]10411042[[package]]1043name = "frame-support-procedural-tools"1044version = "2.0.0-alpha.6"1045source = "registry+https://github.com/rust-lang/crates.io-index"1046checksum = "0d0fce760be3b164dd44ba5826f6a504c485020f6813604d4c73b42b50797d71"1047dependencies = [1048 "frame-support-procedural-tools-derive 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1049 "proc-macro-crate",1050 "proc-macro2",1051 "quote 1.0.3",1052 "syn 1.0.17",1053]10541055[[package]]1056name = "frame-support-procedural-tools-derive"1057version = "2.0.0-alpha.6"1058source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"1059dependencies = [1060 "proc-macro2",1061 "quote 1.0.3",1062 "syn 1.0.17",1063]10641065[[package]]1066name = "frame-support-procedural-tools-derive"1067version = "2.0.0-alpha.6"1068source = "registry+https://github.com/rust-lang/crates.io-index"1069checksum = "c453b69522957f835e3679e8a98a90a3859481423bf5a2c570397c416339dcf5"1070dependencies = [1071 "proc-macro2",1072 "quote 1.0.3",1073 "syn 1.0.17",1074]10751076[[package]]1077name = "frame-system"1078version = "2.0.0-alpha.6"1079source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"1080dependencies = [1081 "frame-support 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",1082 "impl-trait-for-tuples",1083 "parity-scale-codec",1084 "serde",1085 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",1086 "sp-io 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",1087 "sp-runtime 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",1088 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",1089 "sp-version 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",1090]10911092[[package]]1093name = "frame-system"1094version = "2.0.0-alpha.6"1095source = "registry+https://github.com/rust-lang/crates.io-index"1096checksum = "f9c97e7168ca4cd7b2358ca30da4c5aba4a2b9b5eef45df67ca85b3dd59069a5"1097dependencies = [1098 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1099 "impl-trait-for-tuples",1100 "parity-scale-codec",1101 "serde",1102 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1103 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1104 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1105 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1106 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",1107]11081109[[package]]1110name = "fs-swap"1111version = "0.2.4"1112source = "registry+https://github.com/rust-lang/crates.io-index"1113checksum = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb"1114dependencies = [1115 "lazy_static",1116 "libc",1117 "libloading",1118 "winapi 0.3.8",1119]11201121[[package]]1122name = "fuchsia-cprng"1123version = "0.1.1"1124source = "registry+https://github.com/rust-lang/crates.io-index"1125checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"11261127[[package]]1128name = "fuchsia-zircon"1129version = "0.3.3"1130source = "registry+https://github.com/rust-lang/crates.io-index"1131checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"1132dependencies = [1133 "bitflags",1134 "fuchsia-zircon-sys",1135]11361137[[package]]1138name = "fuchsia-zircon-sys"1139version = "0.3.3"1140source = "registry+https://github.com/rust-lang/crates.io-index"1141checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"11421143[[package]]1144name = "futures"1145version = "0.1.29"1146source = "registry+https://github.com/rust-lang/crates.io-index"1147checksum = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef"11481149[[package]]1150name = "futures"1151version = "0.3.4"1152source = "registry+https://github.com/rust-lang/crates.io-index"1153checksum = "5c329ae8753502fb44ae4fc2b622fa2a94652c41e795143765ba0927f92ab780"1154dependencies = [1155 "futures-channel",1156 "futures-core",1157 "futures-executor",1158 "futures-io",1159 "futures-sink",1160 "futures-task",1161 "futures-util",1162]11631164[[package]]1165name = "futures-channel"1166version = "0.3.4"1167source = "registry+https://github.com/rust-lang/crates.io-index"1168checksum = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8"1169dependencies = [1170 "futures-core",1171 "futures-sink",1172]11731174[[package]]1175name = "futures-channel-preview"1176version = "0.3.0-alpha.19"1177source = "registry+https://github.com/rust-lang/crates.io-index"1178checksum = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a"1179dependencies = [1180 "futures-core-preview",1181]11821183[[package]]1184name = "futures-core"1185version = "0.3.4"1186source = "registry+https://github.com/rust-lang/crates.io-index"1187checksum = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a"11881189[[package]]1190name = "futures-core-preview"1191version = "0.3.0-alpha.19"1192source = "registry+https://github.com/rust-lang/crates.io-index"1193checksum = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a"11941195[[package]]1196name = "futures-cpupool"1197version = "0.1.8"1198source = "registry+https://github.com/rust-lang/crates.io-index"1199checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"1200dependencies = [1201 "futures 0.1.29",1202 "num_cpus",1203]12041205[[package]]1206name = "futures-diagnose"1207version = "1.0.1"1208source = "registry+https://github.com/rust-lang/crates.io-index"1209checksum = "fdcef58a173af8148b182684c9f2d5250875adbcaff7b5794073894f9d8634a9"1210dependencies = [1211 "futures 0.1.29",1212 "futures 0.3.4",1213 "lazy_static",1214 "log",1215 "parking_lot 0.9.0",1216 "pin-project",1217 "serde",1218 "serde_json",1219]12201221[[package]]1222name = "futures-executor"1223version = "0.3.4"1224source = "registry+https://github.com/rust-lang/crates.io-index"1225checksum = "f674f3e1bcb15b37284a90cedf55afdba482ab061c407a9c0ebbd0f3109741ba"1226dependencies = [1227 "futures-core",1228 "futures-task",1229 "futures-util",1230 "num_cpus",1231]12321233[[package]]1234name = "futures-io"1235version = "0.3.4"1236source = "registry+https://github.com/rust-lang/crates.io-index"1237checksum = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6"12381239[[package]]1240name = "futures-macro"1241version = "0.3.4"1242source = "registry+https://github.com/rust-lang/crates.io-index"1243checksum = "9a5081aa3de1f7542a794a397cde100ed903b0630152d0973479018fd85423a7"1244dependencies = [1245 "proc-macro-hack",1246 "proc-macro2",1247 "quote 1.0.3",1248 "syn 1.0.17",1249]12501251[[package]]1252name = "futures-sink"1253version = "0.3.4"1254source = "registry+https://github.com/rust-lang/crates.io-index"1255checksum = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6"12561257[[package]]1258name = "futures-task"1259version = "0.3.4"1260source = "registry+https://github.com/rust-lang/crates.io-index"1261checksum = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27"12621263[[package]]1264name = "futures-timer"1265version = "2.0.2"1266source = "registry+https://github.com/rust-lang/crates.io-index"1267checksum = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6"12681269[[package]]1270name = "futures-timer"1271version = "3.0.2"1272source = "registry+https://github.com/rust-lang/crates.io-index"1273checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"12741275[[package]]1276name = "futures-util"1277version = "0.3.4"1278source = "registry+https://github.com/rust-lang/crates.io-index"1279checksum = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5"1280dependencies = [1281 "futures 0.1.29",1282 "futures-channel",1283 "futures-core",1284 "futures-io",1285 "futures-macro",1286 "futures-sink",1287 "futures-task",1288 "memchr",1289 "pin-utils",1290 "proc-macro-hack",1291 "proc-macro-nested",1292 "slab",1293]12941295[[package]]1296name = "futures-util-preview"1297version = "0.3.0-alpha.19"1298source = "registry+https://github.com/rust-lang/crates.io-index"1299checksum = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d"1300dependencies = [1301 "futures-channel-preview",1302 "futures-core-preview",1303 "pin-utils",1304 "slab",1305]13061307[[package]]1308name = "futures_codec"1309version = "0.3.4"1310source = "registry+https://github.com/rust-lang/crates.io-index"1311checksum = "a0a73299e4718f5452e45980fc1d6957a070abe308d3700b63b8673f47e1c2b3"1312dependencies = [1313 "bytes 0.5.4",1314 "futures 0.3.4",1315 "memchr",1316 "pin-project",1317]13181319[[package]]1320name = "gcc"1321version = "0.3.55"1322source = "registry+https://github.com/rust-lang/crates.io-index"1323checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"13241325[[package]]1326name = "generic-array"1327version = "0.12.3"1328source = "registry+https://github.com/rust-lang/crates.io-index"1329checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"1330dependencies = [1331 "typenum",1332]13331334[[package]]1335name = "get_if_addrs"1336version = "0.5.3"1337source = "registry+https://github.com/rust-lang/crates.io-index"1338checksum = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7"1339dependencies = [1340 "c_linked_list",1341 "get_if_addrs-sys",1342 "libc",1343 "winapi 0.2.8",1344]13451346[[package]]1347name = "get_if_addrs-sys"1348version = "0.1.1"1349source = "registry+https://github.com/rust-lang/crates.io-index"1350checksum = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48"1351dependencies = [1352 "gcc",1353 "libc",1354]13551356[[package]]1357name = "getrandom"1358version = "0.1.14"1359source = "registry+https://github.com/rust-lang/crates.io-index"1360checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"1361dependencies = [1362 "cfg-if",1363 "libc",1364 "wasi",1365]13661367[[package]]1368name = "glob"1369version = "0.3.0"1370source = "registry+https://github.com/rust-lang/crates.io-index"1371checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"13721373[[package]]1374name = "globset"1375version = "0.4.5"1376source = "registry+https://github.com/rust-lang/crates.io-index"1377checksum = "7ad1da430bd7281dde2576f44c84cc3f0f7b475e7202cd503042dff01a8c8120"1378dependencies = [1379 "aho-corasick",1380 "bstr",1381 "fnv",1382 "log",1383 "regex",1384]13851386[[package]]1387name = "h2"1388version = "0.1.26"1389source = "registry+https://github.com/rust-lang/crates.io-index"1390checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"1391dependencies = [1392 "byteorder",1393 "bytes 0.4.12",1394 "fnv",1395 "futures 0.1.29",1396 "http 0.1.21",1397 "indexmap",1398 "log",1399 "slab",1400 "string",1401 "tokio-io",1402]14031404[[package]]1405name = "h2"1406version = "0.2.4"1407source = "registry+https://github.com/rust-lang/crates.io-index"1408checksum = "377038bf3c89d18d6ca1431e7a5027194fbd724ca10592b9487ede5e8e144f42"1409dependencies = [1410 "bytes 0.5.4",1411 "fnv",1412 "futures-core",1413 "futures-sink",1414 "futures-util",1415 "http 0.2.1",1416 "indexmap",1417 "log",1418 "slab",1419 "tokio 0.2.18",1420 "tokio-util",1421]14221423[[package]]1424name = "hash-db"1425version = "0.15.2"1426source = "registry+https://github.com/rust-lang/crates.io-index"1427checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a"14281429[[package]]1430name = "hash256-std-hasher"1431version = "0.15.2"1432source = "registry+https://github.com/rust-lang/crates.io-index"1433checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2"1434dependencies = [1435 "crunchy",1436]14371438[[package]]1439name = "hashbrown"1440version = "0.6.3"1441source = "registry+https://github.com/rust-lang/crates.io-index"1442checksum = "8e6073d0ca812575946eb5f35ff68dbe519907b25c42530389ff946dc84c6ead"1443dependencies = [1444 "ahash",1445 "autocfg 0.1.7",1446]14471448[[package]]1449name = "heck"1450version = "0.3.1"1451source = "registry+https://github.com/rust-lang/crates.io-index"1452checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"1453dependencies = [1454 "unicode-segmentation",1455]14561457[[package]]1458name = "hermit-abi"1459version = "0.1.10"1460source = "registry+https://github.com/rust-lang/crates.io-index"1461checksum = "725cf19794cf90aa94e65050cb4191ff5d8fa87a498383774c47b332e3af952e"1462dependencies = [1463 "libc",1464]14651466[[package]]1467name = "hex"1468version = "0.4.2"1469source = "registry+https://github.com/rust-lang/crates.io-index"1470checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"14711472[[package]]1473name = "hex-literal"1474version = "0.2.1"1475source = "registry+https://github.com/rust-lang/crates.io-index"1476checksum = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0"1477dependencies = [1478 "hex-literal-impl",1479 "proc-macro-hack",1480]14811482[[package]]1483name = "hex-literal-impl"1484version = "0.2.1"1485source = "registry+https://github.com/rust-lang/crates.io-index"1486checksum = "9d4c5c844e2fee0bf673d54c2c177f1713b3d2af2ff6e666b49cb7572e6cf42d"1487dependencies = [1488 "proc-macro-hack",1489]14901491[[package]]1492name = "hmac"1493version = "0.7.1"1494source = "registry+https://github.com/rust-lang/crates.io-index"1495checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"1496dependencies = [1497 "crypto-mac",1498 "digest",1499]15001501[[package]]1502name = "hmac-drbg"1503version = "0.2.0"1504source = "registry+https://github.com/rust-lang/crates.io-index"1505checksum = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b"1506dependencies = [1507 "digest",1508 "generic-array",1509 "hmac",1510]15111512[[package]]1513name = "http"1514version = "0.1.21"1515source = "registry+https://github.com/rust-lang/crates.io-index"1516checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"1517dependencies = [1518 "bytes 0.4.12",1519 "fnv",1520 "itoa",1521]15221523[[package]]1524name = "http"1525version = "0.2.1"1526source = "registry+https://github.com/rust-lang/crates.io-index"1527checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"1528dependencies = [1529 "bytes 0.5.4",1530 "fnv",1531 "itoa",1532]15331534[[package]]1535name = "http-body"1536version = "0.1.0"1537source = "registry+https://github.com/rust-lang/crates.io-index"1538checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"1539dependencies = [1540 "bytes 0.4.12",1541 "futures 0.1.29",1542 "http 0.1.21",1543 "tokio-buf",1544]15451546[[package]]1547name = "http-body"1548version = "0.3.1"1549source = "registry+https://github.com/rust-lang/crates.io-index"1550checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"1551dependencies = [1552 "bytes 0.5.4",1553 "http 0.2.1",1554]15551556[[package]]1557name = "httparse"1558version = "1.3.4"1559source = "registry+https://github.com/rust-lang/crates.io-index"1560checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"15611562[[package]]1563name = "humantime"1564version = "1.3.0"1565source = "registry+https://github.com/rust-lang/crates.io-index"1566checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"1567dependencies = [1568 "quick-error",1569]15701571[[package]]1572name = "hyper"1573version = "0.12.35"1574source = "registry+https://github.com/rust-lang/crates.io-index"1575checksum = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6"1576dependencies = [1577 "bytes 0.4.12",1578 "futures 0.1.29",1579 "futures-cpupool",1580 "h2 0.1.26",1581 "http 0.1.21",1582 "http-body 0.1.0",1583 "httparse",1584 "iovec",1585 "itoa",1586 "log",1587 "net2",1588 "rustc_version",1589 "time",1590 "tokio 0.1.22",1591 "tokio-buf",1592 "tokio-executor 0.1.10",1593 "tokio-io",1594 "tokio-reactor",1595 "tokio-tcp",1596 "tokio-threadpool",1597 "tokio-timer",1598 "want 0.2.0",1599]16001601[[package]]1602name = "hyper"1603version = "0.13.4"1604source = "registry+https://github.com/rust-lang/crates.io-index"1605checksum = "ed6081100e960d9d74734659ffc9cc91daf1c0fc7aceb8eaa94ee1a3f5046f2e"1606dependencies = [1607 "bytes 0.5.4",1608 "futures-channel",1609 "futures-core",1610 "futures-util",1611 "h2 0.2.4",1612 "http 0.2.1",1613 "http-body 0.3.1",1614 "httparse",1615 "itoa",1616 "log",1617 "net2",1618 "pin-project",1619 "time",1620 "tokio 0.2.18",1621 "tower-service",1622 "want 0.3.0",1623]16241625[[package]]1626name = "hyper-rustls"1627version = "0.20.0"1628source = "registry+https://github.com/rust-lang/crates.io-index"1629checksum = "ac965ea399ec3a25ac7d13b8affd4b8f39325cca00858ddf5eb29b79e6b14b08"1630dependencies = [1631 "bytes 0.5.4",1632 "ct-logs",1633 "futures-util",1634 "hyper 0.13.4",1635 "log",1636 "rustls",1637 "rustls-native-certs",1638 "tokio 0.2.18",1639 "tokio-rustls",1640 "webpki",1641]16421643[[package]]1644name = "idna"1645version = "0.1.5"1646source = "registry+https://github.com/rust-lang/crates.io-index"1647checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"1648dependencies = [1649 "matches",1650 "unicode-bidi",1651 "unicode-normalization",1652]16531654[[package]]1655name = "idna"1656version = "0.2.0"1657source = "registry+https://github.com/rust-lang/crates.io-index"1658checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"1659dependencies = [1660 "matches",1661 "unicode-bidi",1662 "unicode-normalization",1663]16641665[[package]]1666name = "impl-codec"1667version = "0.4.2"1668source = "registry+https://github.com/rust-lang/crates.io-index"1669checksum = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53"1670dependencies = [1671 "parity-scale-codec",1672]16731674[[package]]1675name = "impl-rlp"1676version = "0.2.1"1677source = "registry+https://github.com/rust-lang/crates.io-index"1678checksum = "8f7a72f11830b52333f36e3b09a288333888bf54380fd0ac0790a3c31ab0f3c5"1679dependencies = [1680 "rlp",1681]16821683[[package]]1684name = "impl-serde"1685version = "0.2.3"1686source = "registry+https://github.com/rust-lang/crates.io-index"1687checksum = "58e3cae7e99c7ff5a995da2cf78dd0a5383740eda71d98cf7b1910c301ac69b8"1688dependencies = [1689 "serde",1690]16911692[[package]]1693name = "impl-serde"1694version = "0.3.0"1695source = "registry+https://github.com/rust-lang/crates.io-index"1696checksum = "5bbe9ea9b182f0fb1cabbd61f4ff9b7b7b9197955e95a7e4c27de5055eb29ff8"1697dependencies = [1698 "serde",1699]17001701[[package]]1702name = "impl-trait-for-tuples"1703version = "0.1.3"1704source = "registry+https://github.com/rust-lang/crates.io-index"1705checksum = "7ef5550a42e3740a0e71f909d4c861056a284060af885ae7aa6242820f920d9d"1706dependencies = [1707 "proc-macro2",1708 "quote 1.0.3",1709 "syn 1.0.17",1710]17111712[[package]]1713name = "indexmap"1714version = "1.3.2"1715source = "registry+https://github.com/rust-lang/crates.io-index"1716checksum = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"1717dependencies = [1718 "autocfg 1.0.0",1719]17201721[[package]]1722name = "integer-sqrt"1723version = "0.1.3"1724source = "registry+https://github.com/rust-lang/crates.io-index"1725checksum = "f65877bf7d44897a473350b1046277941cee20b263397e90869c50b6e766088b"17261727[[package]]1728name = "interleaved-ordered"1729version = "0.1.1"1730source = "registry+https://github.com/rust-lang/crates.io-index"1731checksum = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77"17321733[[package]]1734name = "intervalier"1735version = "0.4.0"1736source = "registry+https://github.com/rust-lang/crates.io-index"1737checksum = "64fa110ec7b8f493f416eed552740d10e7030ad5f63b2308f82c9608ec2df275"1738dependencies = [1739 "futures 0.3.4",1740 "futures-timer 2.0.2",1741]17421743[[package]]1744name = "iovec"1745version = "0.1.4"1746source = "registry+https://github.com/rust-lang/crates.io-index"1747checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"1748dependencies = [1749 "libc",1750]17511752[[package]]1753name = "ipnet"1754version = "2.3.0"1755source = "registry+https://github.com/rust-lang/crates.io-index"1756checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"17571758[[package]]1759name = "itertools"1760version = "0.8.2"1761source = "registry+https://github.com/rust-lang/crates.io-index"1762checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"1763dependencies = [1764 "either",1765]17661767[[package]]1768name = "itoa"1769version = "0.4.5"1770source = "registry+https://github.com/rust-lang/crates.io-index"1771checksum = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e"17721773[[package]]1774name = "jobserver"1775version = "0.1.21"1776source = "registry+https://github.com/rust-lang/crates.io-index"1777checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"1778dependencies = [1779 "libc",1780]17811782[[package]]1783name = "js-sys"1784version = "0.3.37"1785source = "registry+https://github.com/rust-lang/crates.io-index"1786checksum = "6a27d435371a2fa5b6d2b028a74bbdb1234f308da363226a2854ca3ff8ba7055"1787dependencies = [1788 "wasm-bindgen",1789]17901791[[package]]1792name = "jsonrpc-client-transports"1793version = "14.1.0"1794source = "registry+https://github.com/rust-lang/crates.io-index"1795checksum = "2307a7e78cf969759e390a8a2151ea12e783849a45bb00aa871b468ba58ea79e"1796dependencies = [1797 "failure",1798 "futures 0.1.29",1799 "jsonrpc-core",1800 "jsonrpc-pubsub",1801 "log",1802 "serde",1803 "serde_json",1804 "url 1.7.2",1805]18061807[[package]]1808name = "jsonrpc-core"1809version = "14.1.0"1810source = "registry+https://github.com/rust-lang/crates.io-index"1811checksum = "25525f6002338fb4debb5167a89a0b47f727a5a48418417545ad3429758b7fec"1812dependencies = [1813 "futures 0.1.29",1814 "log",1815 "serde",1816 "serde_derive",1817 "serde_json",1818]18191820[[package]]1821name = "jsonrpc-core-client"1822version = "14.1.0"1823source = "registry+https://github.com/rust-lang/crates.io-index"1824checksum = "87f9382e831a6d630c658df103aac3f971da096deb57c136ea2b760d3b4e3f9f"1825dependencies = [1826 "jsonrpc-client-transports",1827]18281829[[package]]1830name = "jsonrpc-derive"1831version = "14.0.5"1832source = "registry+https://github.com/rust-lang/crates.io-index"1833checksum = "8609af8f63b626e8e211f52441fcdb6ec54f1a446606b10d5c89ae9bf8a20058"1834dependencies = [1835 "proc-macro-crate",1836 "proc-macro2",1837 "quote 1.0.3",1838 "syn 1.0.17",1839]18401841[[package]]1842name = "jsonrpc-http-server"1843version = "14.1.0"1844source = "registry+https://github.com/rust-lang/crates.io-index"1845checksum = "d52860f0549694aa4abb12766856f56952ab46d3fb9f0815131b2db3d9cc2f29"1846dependencies = [1847 "hyper 0.12.35",1848 "jsonrpc-core",1849 "jsonrpc-server-utils",1850 "log",1851 "net2",1852 "parking_lot 0.10.2",1853 "unicase",1854]18551856[[package]]1857name = "jsonrpc-pubsub"1858version = "14.1.0"1859source = "registry+https://github.com/rust-lang/crates.io-index"1860checksum = "c4ca5e391d6c6a2261d4adca029f427fe63ea546ad6cef2957c654c08495ec16"1861dependencies = [1862 "jsonrpc-core",1863 "log",1864 "parking_lot 0.10.2",1865 "serde",1866]18671868[[package]]1869name = "jsonrpc-server-utils"1870version = "14.1.0"1871source = "registry+https://github.com/rust-lang/crates.io-index"1872checksum = "1f06add502b48351e05dd95814835327fb115e4e9f834ca42fd522d3b769d4d2"1873dependencies = [1874 "bytes 0.4.12",1875 "globset",1876 "jsonrpc-core",1877 "lazy_static",1878 "log",1879 "tokio 0.1.22",1880 "tokio-codec",1881 "unicase",1882]18831884[[package]]1885name = "jsonrpc-ws-server"1886version = "14.1.0"1887source = "registry+https://github.com/rust-lang/crates.io-index"1888checksum = "017a7dd5083d9ed62c5e1dd3e317975c33c3115dac5447f4480fe05a8c354754"1889dependencies = [1890 "jsonrpc-core",1891 "jsonrpc-server-utils",1892 "log",1893 "parking_lot 0.10.2",1894 "slab",1895 "ws",1896]18971898[[package]]1899name = "keccak"1900version = "0.1.0"1901source = "registry+https://github.com/rust-lang/crates.io-index"1902checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"19031904[[package]]1905name = "kernel32-sys"1906version = "0.2.2"1907source = "registry+https://github.com/rust-lang/crates.io-index"1908checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"1909dependencies = [1910 "winapi 0.2.8",1911 "winapi-build",1912]19131914[[package]]1915name = "kv-log-macro"1916version = "1.0.4"1917source = "registry+https://github.com/rust-lang/crates.io-index"1918checksum = "8c54d9f465d530a752e6ebdc217e081a7a614b48cb200f6f0aee21ba6bc9aabb"1919dependencies = [1920 "log",1921]19221923[[package]]1924name = "kvdb"1925version = "0.5.0"1926source = "registry+https://github.com/rust-lang/crates.io-index"1927checksum = "cad096c6849b2ef027fabe35c4aed356d0e3d3f586d0a8361e5e17f1e50a7ce5"1928dependencies = [1929 "parity-util-mem",1930 "smallvec 1.3.0",1931]19321933[[package]]1934name = "kvdb-memorydb"1935version = "0.5.0"1936source = "registry+https://github.com/rust-lang/crates.io-index"1937checksum = "4aa954d12cfac958822dfd77aab34f3eec71f103b918c4ab79ab59a36ee594ea"1938dependencies = [1939 "kvdb",1940 "parity-util-mem",1941 "parking_lot 0.10.2",1942]19431944[[package]]1945name = "kvdb-rocksdb"1946version = "0.7.0"1947source = "registry+https://github.com/rust-lang/crates.io-index"1948checksum = "b3f14c3a10c8894d26175e57e9e26032e6d6c49c30cbe2468c5bf5f6b64bb0be"1949dependencies = [1950 "fs-swap",1951 "interleaved-ordered",1952 "kvdb",1953 "log",1954 "num_cpus",1955 "owning_ref",1956 "parity-util-mem",1957 "parking_lot 0.10.2",1958 "regex",1959 "rocksdb",1960 "smallvec 1.3.0",1961]19621963[[package]]1964name = "lazy_static"1965version = "1.4.0"1966source = "registry+https://github.com/rust-lang/crates.io-index"1967checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"19681969[[package]]1970name = "lazycell"1971version = "1.2.1"1972source = "registry+https://github.com/rust-lang/crates.io-index"1973checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"19741975[[package]]1976name = "libc"1977version = "0.2.69"1978source = "registry+https://github.com/rust-lang/crates.io-index"1979checksum = "99e85c08494b21a9054e7fe1374a732aeadaff3980b6990b94bfd3a70f690005"19801981[[package]]1982name = "libflate"1983version = "0.1.27"1984source = "registry+https://github.com/rust-lang/crates.io-index"1985checksum = "d9135df43b1f5d0e333385cb6e7897ecd1a43d7d11b91ac003f4d2c2d2401fdd"1986dependencies = [1987 "adler32",1988 "crc32fast",1989 "rle-decode-fast",1990 "take_mut",1991]19921993[[package]]1994name = "libloading"1995version = "0.5.2"1996source = "registry+https://github.com/rust-lang/crates.io-index"1997checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"1998dependencies = [1999 "cc",2000 "winapi 0.3.8",2001]20022003[[package]]2004name = "libm"2005version = "0.2.1"2006source = "registry+https://github.com/rust-lang/crates.io-index"2007checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"20082009[[package]]2010name = "libp2p"2011version = "0.18.0"2012source = "registry+https://github.com/rust-lang/crates.io-index"2013checksum = "aa5aedb713f76577818529be8283e35ec5e8b3ecdccfe0231ba4d860687438ab"2014dependencies = [2015 "bytes 0.5.4",2016 "futures 0.3.4",2017 "lazy_static",2018 "libp2p-core",2019 "libp2p-core-derive",2020 "libp2p-dns",2021 "libp2p-identify",2022 "libp2p-kad",2023 "libp2p-mdns",2024 "libp2p-mplex",2025 "libp2p-noise",2026 "libp2p-ping",2027 "libp2p-swarm",2028 "libp2p-tcp",2029 "libp2p-wasm-ext",2030 "libp2p-websocket",2031 "libp2p-yamux",2032 "multihash",2033 "parity-multiaddr 0.8.0",2034 "parking_lot 0.10.2",2035 "pin-project",2036 "smallvec 1.3.0",2037 "wasm-timer",2038]20392040[[package]]2041name = "libp2p-core"2042version = "0.18.0"2043source = "registry+https://github.com/rust-lang/crates.io-index"2044checksum = "a1d2c17158c4dca984a77a5927aac6f0862d7f50c013470a415f93be498b5739"2045dependencies = [2046 "asn1_der",2047 "bs58",2048 "ed25519-dalek",2049 "either",2050 "fnv",2051 "futures 0.3.4",2052 "futures-timer 3.0.2",2053 "lazy_static",2054 "libsecp256k1",2055 "log",2056 "multihash",2057 "multistream-select",2058 "parity-multiaddr 0.8.0",2059 "parking_lot 0.10.2",2060 "pin-project",2061 "prost",2062 "prost-build",2063 "rand 0.7.3",2064 "ring",2065 "rw-stream-sink",2066 "sha2",2067 "smallvec 1.3.0",2068 "thiserror",2069 "unsigned-varint",2070 "void",2071 "zeroize",2072]20732074[[package]]2075name = "libp2p-core-derive"2076version = "0.18.0"2077source = "registry+https://github.com/rust-lang/crates.io-index"2078checksum = "329127858e4728db5ab60c33d5ae352a999325fdf190ed022ec7d3a4685ae2e6"2079dependencies = [2080 "quote 1.0.3",2081 "syn 1.0.17",2082]20832084[[package]]2085name = "libp2p-dns"2086version = "0.18.0"2087source = "registry+https://github.com/rust-lang/crates.io-index"2088checksum = "c0d0993481203d68e5ce2f787d033fb0cac6b850659ed6c784612db678977c71"2089dependencies = [2090 "futures 0.3.4",2091 "libp2p-core",2092 "log",2093]20942095[[package]]2096name = "libp2p-identify"2097version = "0.18.0"2098source = "registry+https://github.com/rust-lang/crates.io-index"2099checksum = "a38ca3eb807789e26f41c82ca7cd2b3843c66c5587b8b5f709a2f421f3061414"2100dependencies = [2101 "futures 0.3.4",2102 "libp2p-core",2103 "libp2p-swarm",2104 "log",2105 "prost",2106 "prost-build",2107 "smallvec 1.3.0",2108 "wasm-timer",2109]21102111[[package]]2112name = "libp2p-kad"2113version = "0.18.0"2114source = "registry+https://github.com/rust-lang/crates.io-index"2115checksum = "a92cda1fb8149ea64d092a2b99d2bd7a2c309eee38ea322d02e4480bd6ee1759"2116dependencies = [2117 "arrayvec 0.5.1",2118 "bytes 0.5.4",2119 "either",2120 "fnv",2121 "futures 0.3.4",2122 "futures_codec",2123 "libp2p-core",2124 "libp2p-swarm",2125 "log",2126 "multihash",2127 "prost",2128 "prost-build",2129 "rand 0.7.3",2130 "sha2",2131 "smallvec 1.3.0",2132 "uint",2133 "unsigned-varint",2134 "void",2135 "wasm-timer",2136]21372138[[package]]2139name = "libp2p-mdns"2140version = "0.18.0"2141source = "registry+https://github.com/rust-lang/crates.io-index"2142checksum = "41e908d2aaf8ff0ec6ad1f02fe1844fd777fb0b03a68a226423630750ab99471"2143dependencies = [2144 "async-std",2145 "data-encoding",2146 "dns-parser",2147 "either",2148 "futures 0.3.4",2149 "lazy_static",2150 "libp2p-core",2151 "libp2p-swarm",2152 "log",2153 "net2",2154 "rand 0.7.3",2155 "smallvec 1.3.0",2156 "void",2157 "wasm-timer",2158]21592160[[package]]2161name = "libp2p-mplex"2162version = "0.18.0"2163source = "registry+https://github.com/rust-lang/crates.io-index"2164checksum = "0832882b06619b2e81d74e71447753ea3c068164a0bca67847d272e856a04a02"2165dependencies = [2166 "bytes 0.5.4",2167 "fnv",2168 "futures 0.3.4",2169 "futures_codec",2170 "libp2p-core",2171 "log",2172 "parking_lot 0.10.2",2173 "unsigned-varint",2174]21752176[[package]]2177name = "libp2p-noise"2178version = "0.18.0"2179source = "registry+https://github.com/rust-lang/crates.io-index"2180checksum = "918e94a649e1139c24ee9f1f8c1f2adaba6d157b9471af787f2d9beac8c29c77"2181dependencies = [2182 "curve25519-dalek",2183 "futures 0.3.4",2184 "lazy_static",2185 "libp2p-core",2186 "log",2187 "prost",2188 "prost-build",2189 "rand 0.7.3",2190 "sha2",2191 "snow",2192 "static_assertions",2193 "x25519-dalek",2194 "zeroize",2195]21962197[[package]]2198name = "libp2p-ping"2199version = "0.18.0"2200source = "registry+https://github.com/rust-lang/crates.io-index"2201checksum = "f9bfbf87eebb492d040f9899c5c81c9738730465ac5e78d9b7a7d086d0f07230"2202dependencies = [2203 "futures 0.3.4",2204 "libp2p-core",2205 "libp2p-swarm",2206 "log",2207 "rand 0.7.3",2208 "void",2209 "wasm-timer",2210]22112212[[package]]2213name = "libp2p-swarm"2214version = "0.18.0"2215source = "registry+https://github.com/rust-lang/crates.io-index"2216checksum = "622605817885e67b5572189c2507e514b786beb69ed85a120dbb245a7f15383d"2217dependencies = [2218 "futures 0.3.4",2219 "libp2p-core",2220 "log",2221 "rand 0.7.3",2222 "smallvec 1.3.0",2223 "void",2224 "wasm-timer",2225]22262227[[package]]2228name = "libp2p-tcp"2229version = "0.18.0"2230source = "registry+https://github.com/rust-lang/crates.io-index"2231checksum = "b37ea44823d3ed223e4605da94b50177bc520f05ae2452286700549a32d81669"2232dependencies = [2233 "async-std",2234 "futures 0.3.4",2235 "futures-timer 3.0.2",2236 "get_if_addrs",2237 "ipnet",2238 "libp2p-core",2239 "log",2240]22412242[[package]]2243name = "libp2p-wasm-ext"2244version = "0.18.0"2245source = "registry+https://github.com/rust-lang/crates.io-index"2246checksum = "e3ac7dbde0f88cad191dcdfd073b8bae28d01823e8ca313f117b6ecb914160c3"2247dependencies = [2248 "futures 0.3.4",2249 "js-sys",2250 "libp2p-core",2251 "parity-send-wrapper",2252 "wasm-bindgen",2253 "wasm-bindgen-futures",2254]22552256[[package]]2257name = "libp2p-websocket"2258version = "0.18.0"2259source = "registry+https://github.com/rust-lang/crates.io-index"2260checksum = "6874c9069ce93d899df9dc7b29f129c706b2a0fdc048f11d878935352b580190"2261dependencies = [2262 "async-tls",2263 "bytes 0.5.4",2264 "either",2265 "futures 0.3.4",2266 "libp2p-core",2267 "log",2268 "quicksink",2269 "rustls",2270 "rw-stream-sink",2271 "soketto",2272 "url 2.1.1",2273 "webpki",2274 "webpki-roots 0.18.0",2275]22762277[[package]]2278name = "libp2p-yamux"2279version = "0.18.0"2280source = "registry+https://github.com/rust-lang/crates.io-index"2281checksum = "02f91aea50f6571e0bc6c058dc0e9b270afd41ec28dd94e9e4bf607e78b9ab87"2282dependencies = [2283 "futures 0.3.4",2284 "libp2p-core",2285 "parking_lot 0.10.2",2286 "thiserror",2287 "yamux",2288]22892290[[package]]2291name = "librocksdb-sys"2292version = "6.6.4"2293source = "registry+https://github.com/rust-lang/crates.io-index"2294checksum = "4e3b727e2dd20ec2fb7ed93f23d9fd5328a0871185485ebdaff007b47d3e27e4"2295dependencies = [2296 "bindgen",2297 "cc",2298 "glob",2299 "libc",2300]23012302[[package]]2303name = "libsecp256k1"2304version = "0.3.5"2305source = "registry+https://github.com/rust-lang/crates.io-index"2306checksum = "1fc1e2c808481a63dc6da2074752fdd4336a3c8fcc68b83db6f1fd5224ae7962"2307dependencies = [2308 "arrayref",2309 "crunchy",2310 "digest",2311 "hmac-drbg",2312 "rand 0.7.3",2313 "sha2",2314 "subtle 2.2.2",2315 "typenum",2316]23172318[[package]]2319name = "libz-sys"2320version = "1.0.25"2321source = "registry+https://github.com/rust-lang/crates.io-index"2322checksum = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe"2323dependencies = [2324 "cc",2325 "libc",2326 "pkg-config",2327 "vcpkg",2328]23292330[[package]]2331name = "linked-hash-map"2332version = "0.5.2"2333source = "registry+https://github.com/rust-lang/crates.io-index"2334checksum = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83"23352336[[package]]2337name = "linked_hash_set"2338version = "0.1.3"2339source = "registry+https://github.com/rust-lang/crates.io-index"2340checksum = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c"2341dependencies = [2342 "linked-hash-map",2343]23442345[[package]]2346name = "linregress"2347version = "0.1.7"2348source = "registry+https://github.com/rust-lang/crates.io-index"2349checksum = "9290cf6f928576eeb9c096c6fad9d8d452a0a1a70a2bbffa6e36064eedc0aac9"2350dependencies = [2351 "failure",2352 "nalgebra",2353 "statrs",2354]23552356[[package]]2357name = "lock_api"2358version = "0.3.4"2359source = "registry+https://github.com/rust-lang/crates.io-index"2360checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"2361dependencies = [2362 "scopeguard",2363]23642365[[package]]2366name = "log"2367version = "0.4.8"2368source = "registry+https://github.com/rust-lang/crates.io-index"2369checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"2370dependencies = [2371 "cfg-if",2372]23732374[[package]]2375name = "lru"2376version = "0.4.3"2377source = "registry+https://github.com/rust-lang/crates.io-index"2378checksum = "0609345ddee5badacf857d4f547e0e5a2e987db77085c24cd887f73573a04237"2379dependencies = [2380 "hashbrown",2381]23822383[[package]]2384name = "matches"2385version = "0.1.8"2386source = "registry+https://github.com/rust-lang/crates.io-index"2387checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"23882389[[package]]2390name = "matrixmultiply"2391version = "0.2.3"2392source = "registry+https://github.com/rust-lang/crates.io-index"2393checksum = "d4f7ec66360130972f34830bfad9ef05c6610a43938a467bcc9ab9369ab3478f"2394dependencies = [2395 "rawpointer",2396]23972398[[package]]2399name = "maybe-uninit"2400version = "2.0.0"2401source = "registry+https://github.com/rust-lang/crates.io-index"2402checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"24032404[[package]]2405name = "memchr"2406version = "2.3.3"2407source = "registry+https://github.com/rust-lang/crates.io-index"2408checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"24092410[[package]]2411name = "memoffset"2412version = "0.5.4"2413source = "registry+https://github.com/rust-lang/crates.io-index"2414checksum = "b4fc2c02a7e374099d4ee95a193111f72d2110197fe200272371758f6c3643d8"2415dependencies = [2416 "autocfg 1.0.0",2417]24182419[[package]]2420name = "memory-db"2421version = "0.20.1"2422source = "registry+https://github.com/rust-lang/crates.io-index"2423checksum = "be512cb2ccb4ecbdca937fdd4a62ea5f09f8e7195466a85e4632b3d5bcce82e6"2424dependencies = [2425 "ahash",2426 "hash-db",2427 "hashbrown",2428 "parity-util-mem",2429]24302431[[package]]2432name = "memory_units"2433version = "0.3.0"2434source = "registry+https://github.com/rust-lang/crates.io-index"2435checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882"24362437[[package]]2438name = "merlin"2439version = "2.0.0"2440source = "registry+https://github.com/rust-lang/crates.io-index"2441checksum = "c6feca46f4fa3443a01769d768727f10c10a20fdb65e52dc16a81f0c8269bb78"2442dependencies = [2443 "byteorder",2444 "keccak",2445 "rand_core 0.5.1",2446 "zeroize",2447]24482449[[package]]2450name = "miniz_oxide"2451version = "0.3.6"2452source = "registry+https://github.com/rust-lang/crates.io-index"2453checksum = "aa679ff6578b1cddee93d7e82e263b94a575e0bfced07284eb0c037c1d2416a5"2454dependencies = [2455 "adler32",2456]24572458[[package]]2459name = "mio"2460version = "0.6.21"2461source = "registry+https://github.com/rust-lang/crates.io-index"2462checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f"2463dependencies = [2464 "cfg-if",2465 "fuchsia-zircon",2466 "fuchsia-zircon-sys",2467 "iovec",2468 "kernel32-sys",2469 "libc",2470 "log",2471 "miow",2472 "net2",2473 "slab",2474 "winapi 0.2.8",2475]24762477[[package]]2478name = "mio-extras"2479version = "2.0.6"2480source = "registry+https://github.com/rust-lang/crates.io-index"2481checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"2482dependencies = [2483 "lazycell",2484 "log",2485 "mio",2486 "slab",2487]24882489[[package]]2490name = "mio-uds"2491version = "0.6.7"2492source = "registry+https://github.com/rust-lang/crates.io-index"2493checksum = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"2494dependencies = [2495 "iovec",2496 "libc",2497 "mio",2498]24992500[[package]]2501name = "miow"2502version = "0.2.1"2503source = "registry+https://github.com/rust-lang/crates.io-index"2504checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"2505dependencies = [2506 "kernel32-sys",2507 "net2",2508 "winapi 0.2.8",2509 "ws2_32-sys",2510]25112512[[package]]2513name = "multihash"2514version = "0.10.1"2515source = "registry+https://github.com/rust-lang/crates.io-index"2516checksum = "47fbc227f7e2b1cb701f95404579ecb2668abbdd3c7ef7a6cbb3cc0d3b236869"2517dependencies = [2518 "blake2b_simd",2519 "blake2s_simd",2520 "digest",2521 "sha-1",2522 "sha2",2523 "sha3",2524 "unsigned-varint",2525]25262527[[package]]2528name = "multimap"2529version = "0.8.1"2530source = "registry+https://github.com/rust-lang/crates.io-index"2531checksum = "d8883adfde9756c1d30b0f519c9b8c502a94b41ac62f696453c37c7fc0a958ce"25322533[[package]]2534name = "multistream-select"2535version = "0.8.0"2536source = "registry+https://github.com/rust-lang/crates.io-index"2537checksum = "74cdcf7cfb3402881e15a1f95116cb033d69b33c83d481e1234777f5ef0c3d2c"2538dependencies = [2539 "bytes 0.5.4",2540 "futures 0.3.4",2541 "log",2542 "pin-project",2543 "smallvec 1.3.0",2544 "unsigned-varint",2545]25462547[[package]]2548name = "nalgebra"2549version = "0.18.1"2550source = "registry+https://github.com/rust-lang/crates.io-index"2551checksum = "aaa9fddbc34c8c35dd2108515587b8ce0cab396f17977b8c738568e4edb521a2"2552dependencies = [2553 "alga",2554 "approx",2555 "generic-array",2556 "matrixmultiply",2557 "num-complex",2558 "num-rational",2559 "num-traits 0.2.11",2560 "rand 0.6.5",2561 "typenum",2562]25632564[[package]]2565name = "names"2566version = "0.11.0"2567source = "registry+https://github.com/rust-lang/crates.io-index"2568checksum = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da"2569dependencies = [2570 "rand 0.3.23",2571]25722573[[package]]2574name = "net2"2575version = "0.2.33"2576source = "registry+https://github.com/rust-lang/crates.io-index"2577checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"2578dependencies = [2579 "cfg-if",2580 "libc",2581 "winapi 0.3.8",2582]25832584[[package]]2585name = "netstat2"2586version = "0.8.1"2587source = "registry+https://github.com/rust-lang/crates.io-index"2588checksum = "29449d242064c48d3057a194b049a2bdcccadda16faa18a91468677b44e8d422"2589dependencies = [2590 "bitflags",2591 "byteorder",2592 "enum-primitive-derive",2593 "libc",2594 "num-traits 0.2.11",2595 "thiserror",2596]25972598[[package]]2599name = "nft"2600version = "2.0.0-alpha.6"2601dependencies = [2602 "futures 0.3.4",2603 "log",2604 "nft-runtime",2605 "sc-basic-authorship",2606 "sc-cli",2607 "sc-client",2608 "sc-client-api",2609 "sc-consensus-aura",2610 "sc-executor",2611 "sc-finality-grandpa",2612 "sc-network",2613 "sc-service",2614 "sc-transaction-pool",2615 "sp-consensus",2616 "sp-consensus-aura",2617 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2618 "sp-finality-grandpa",2619 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2620 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2621 "sp-transaction-pool",2622 "structopt",2623 "substrate-build-script-utils",2624]26252626[[package]]2627name = "nft-runtime"2628version = "2.0.0-alpha.6"2629dependencies = [2630 "frame-executive",2631 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2632 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2633 "pallet-aura",2634 "pallet-balances",2635 "pallet-contracts",2636 "pallet-contracts-primitives",2637 "pallet-contracts-rpc-runtime-api",2638 "pallet-grandpa",2639 "pallet-nft",2640 "pallet-randomness-collective-flip",2641 "pallet-sudo",2642 "pallet-timestamp",2643 "pallet-transaction-payment",2644 "parity-scale-codec",2645 "serde",2646 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2647 "sp-block-builder",2648 "sp-consensus-aura",2649 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2650 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2651 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2652 "sp-offchain",2653 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2654 "sp-session",2655 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2656 "sp-transaction-pool",2657 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2658 "substrate-wasm-builder-runner",2659]26602661[[package]]2662name = "nix"2663version = "0.17.0"2664source = "registry+https://github.com/rust-lang/crates.io-index"2665checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"2666dependencies = [2667 "bitflags",2668 "cc",2669 "cfg-if",2670 "libc",2671 "void",2672]26732674[[package]]2675name = "nodrop"2676version = "0.1.14"2677source = "registry+https://github.com/rust-lang/crates.io-index"2678checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"26792680[[package]]2681name = "nohash-hasher"2682version = "0.2.0"2683source = "registry+https://github.com/rust-lang/crates.io-index"2684checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"26852686[[package]]2687name = "nom"2688version = "5.1.1"2689source = "registry+https://github.com/rust-lang/crates.io-index"2690checksum = "0b471253da97532da4b61552249c521e01e736071f71c1a4f7ebbfbf0a06aad6"2691dependencies = [2692 "memchr",2693 "version_check",2694]26952696[[package]]2697name = "ntapi"2698version = "0.3.3"2699source = "registry+https://github.com/rust-lang/crates.io-index"2700checksum = "f26e041cd983acbc087e30fcba770380cfa352d0e392e175b2344ebaf7ea0602"2701dependencies = [2702 "winapi 0.3.8",2703]27042705[[package]]2706name = "num-bigint"2707version = "0.2.6"2708source = "registry+https://github.com/rust-lang/crates.io-index"2709checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"2710dependencies = [2711 "autocfg 1.0.0",2712 "num-integer",2713 "num-traits 0.2.11",2714]27152716[[package]]2717name = "num-complex"2718version = "0.2.4"2719source = "registry+https://github.com/rust-lang/crates.io-index"2720checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"2721dependencies = [2722 "autocfg 1.0.0",2723 "num-traits 0.2.11",2724]27252726[[package]]2727name = "num-integer"2728version = "0.1.42"2729source = "registry+https://github.com/rust-lang/crates.io-index"2730checksum = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"2731dependencies = [2732 "autocfg 1.0.0",2733 "num-traits 0.2.11",2734]27352736[[package]]2737name = "num-rational"2738version = "0.2.4"2739source = "registry+https://github.com/rust-lang/crates.io-index"2740checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"2741dependencies = [2742 "autocfg 1.0.0",2743 "num-bigint",2744 "num-integer",2745 "num-traits 0.2.11",2746]27472748[[package]]2749name = "num-traits"2750version = "0.1.43"2751source = "registry+https://github.com/rust-lang/crates.io-index"2752checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"2753dependencies = [2754 "num-traits 0.2.11",2755]27562757[[package]]2758name = "num-traits"2759version = "0.2.11"2760source = "registry+https://github.com/rust-lang/crates.io-index"2761checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"2762dependencies = [2763 "autocfg 1.0.0",2764 "libm",2765]27662767[[package]]2768name = "num_cpus"2769version = "1.12.0"2770source = "registry+https://github.com/rust-lang/crates.io-index"2771checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"2772dependencies = [2773 "hermit-abi",2774 "libc",2775]27762777[[package]]2778name = "ole32-sys"2779version = "0.2.0"2780source = "registry+https://github.com/rust-lang/crates.io-index"2781checksum = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c"2782dependencies = [2783 "winapi 0.2.8",2784 "winapi-build",2785]27862787[[package]]2788name = "once_cell"2789version = "1.3.1"2790source = "registry+https://github.com/rust-lang/crates.io-index"2791checksum = "b1c601810575c99596d4afc46f78a678c80105117c379eb3650cf99b8a21ce5b"2792dependencies = [2793 "parking_lot 0.9.0",2794]27952796[[package]]2797name = "opaque-debug"2798version = "0.2.3"2799source = "registry+https://github.com/rust-lang/crates.io-index"2800checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"28012802[[package]]2803name = "openssl-probe"2804version = "0.1.2"2805source = "registry+https://github.com/rust-lang/crates.io-index"2806checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"28072808[[package]]2809name = "owning_ref"2810version = "0.4.1"2811source = "registry+https://github.com/rust-lang/crates.io-index"2812checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce"2813dependencies = [2814 "stable_deref_trait",2815]28162817[[package]]2818name = "pallet-aura"2819version = "2.0.0-alpha.6"2820source = "registry+https://github.com/rust-lang/crates.io-index"2821checksum = "9757d44df3ff0372ea313703736e69ba361b158a58b7c9677b54be11a777da81"2822dependencies = [2823 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2824 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2825 "pallet-session",2826 "pallet-timestamp",2827 "parity-scale-codec",2828 "serde",2829 "sp-application-crypto 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2830 "sp-consensus-aura",2831 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2832 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2833 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2834 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2835 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2836 "sp-timestamp",2837]28382839[[package]]2840name = "pallet-balances"2841version = "2.0.0-alpha.6"2842source = "registry+https://github.com/rust-lang/crates.io-index"2843checksum = "b9ef08001886d3747220630337f7afbb8f1d7cbfacaa3a8a13317e1cb3e8e366"2844dependencies = [2845 "frame-benchmarking",2846 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2847 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2848 "parity-scale-codec",2849 "serde",2850 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2851 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2852 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2853]28542855[[package]]2856name = "pallet-contracts"2857version = "2.0.0-alpha.6"2858source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"2859dependencies = [2860 "frame-support 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2861 "frame-system 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2862 "pallet-contracts-primitives",2863 "parity-scale-codec",2864 "parity-wasm",2865 "pwasm-utils",2866 "serde",2867 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2868 "sp-io 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2869 "sp-runtime 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2870 "sp-sandbox",2871 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2872 "wasmi-validation",2873]28742875[[package]]2876name = "pallet-contracts-primitives"2877version = "2.0.0-alpha.6"2878source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"2879dependencies = [2880 "parity-scale-codec",2881 "sp-runtime 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2882 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2883]28842885[[package]]2886name = "pallet-contracts-rpc-runtime-api"2887version = "0.8.0-alpha.6"2888source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"2889dependencies = [2890 "pallet-contracts-primitives",2891 "parity-scale-codec",2892 "sp-api 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2893 "sp-runtime 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2894 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",2895]28962897[[package]]2898name = "pallet-finality-tracker"2899version = "2.0.0-alpha.6"2900source = "registry+https://github.com/rust-lang/crates.io-index"2901checksum = "09d89d58fe723cc05bdfc5f237a51e275bf58dcafb493ad68211c27ecd8f1afd"2902dependencies = [2903 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2904 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2905 "impl-trait-for-tuples",2906 "parity-scale-codec",2907 "serde",2908 "sp-finality-tracker",2909 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2910 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2911 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2912]29132914[[package]]2915name = "pallet-grandpa"2916version = "2.0.0-alpha.6"2917source = "registry+https://github.com/rust-lang/crates.io-index"2918checksum = "6ed9f0fe5149552a1f1f26f4ed8999d692e0e209c54314c4f28a9bd8a1a1161d"2919dependencies = [2920 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2921 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2922 "pallet-finality-tracker",2923 "pallet-session",2924 "parity-scale-codec",2925 "serde",2926 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2927 "sp-finality-grandpa",2928 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2929 "sp-staking",2930 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2931]29322933[[package]]2934name = "pallet-nft"2935version = "2.0.0-alpha.6"2936dependencies = [2937 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2938 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2939 "parity-scale-codec",2940 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2941 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2942 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2943 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2944]29452946[[package]]2947name = "pallet-randomness-collective-flip"2948version = "2.0.0-alpha.6"2949source = "registry+https://github.com/rust-lang/crates.io-index"2950checksum = "1139a9bf489b947a677574ee8ade27c7b710ce25a07f1630b80c20af8f682f91"2951dependencies = [2952 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2953 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2954 "parity-scale-codec",2955 "safe-mix",2956 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2957 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2958]29592960[[package]]2961name = "pallet-session"2962version = "2.0.0-alpha.6"2963source = "registry+https://github.com/rust-lang/crates.io-index"2964checksum = "4fdeb41738a79d3247b2a7fd9ce8ae5a7d9e92ca2de198e006f891240c8dcacc"2965dependencies = [2966 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2967 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2968 "impl-trait-for-tuples",2969 "pallet-timestamp",2970 "parity-scale-codec",2971 "serde",2972 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2973 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2974 "sp-staking",2975 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2976 "sp-trie 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2977]29782979[[package]]2980name = "pallet-sudo"2981version = "2.0.0-alpha.6"2982source = "registry+https://github.com/rust-lang/crates.io-index"2983checksum = "70b15e01796c9d2791cbd9ae2d7c9b59c8eccc3682afbb1189f6ebe7b07f4d71"2984dependencies = [2985 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2986 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2987 "parity-scale-codec",2988 "serde",2989 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2990 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2991 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",2992]29932994[[package]]2995name = "pallet-timestamp"2996version = "2.0.0-alpha.6"2997source = "registry+https://github.com/rust-lang/crates.io-index"2998checksum = "4d9de9af5f5ed3377a6108eed436791bfe18bc3e4e2e416854d0074d31b1be00"2999dependencies = [3000 "frame-benchmarking",3001 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3002 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3003 "impl-trait-for-tuples",3004 "parity-scale-codec",3005 "serde",3006 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3007 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3008 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3009 "sp-timestamp",3010]30113012[[package]]3013name = "pallet-transaction-payment"3014version = "2.0.0-alpha.6"3015source = "registry+https://github.com/rust-lang/crates.io-index"3016checksum = "54768f5959e0bef53218b91f289d6807c0786d93fb90a3c7e39ab7ff9f018f23"3017dependencies = [3018 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3019 "frame-system 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3020 "pallet-transaction-payment-rpc-runtime-api",3021 "parity-scale-codec",3022 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3023 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3024]30253026[[package]]3027name = "pallet-transaction-payment-rpc-runtime-api"3028version = "2.0.0-alpha.6"3029source = "registry+https://github.com/rust-lang/crates.io-index"3030checksum = "7323ef565470b51bb79fc65d3c3a1bff0ecb317485acc66a64406309c25f1b77"3031dependencies = [3032 "frame-support 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3033 "parity-scale-codec",3034 "serde",3035 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3036 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3037 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3038]30393040[[package]]3041name = "parity-multiaddr"3042version = "0.7.3"3043source = "registry+https://github.com/rust-lang/crates.io-index"3044checksum = "f77055f9e81921a8cc7bebeb6cded3d128931d51f1e3dd6251f0770a6d431477"3045dependencies = [3046 "arrayref",3047 "bs58",3048 "byteorder",3049 "data-encoding",3050 "parity-multihash",3051 "percent-encoding 2.1.0",3052 "serde",3053 "static_assertions",3054 "unsigned-varint",3055 "url 2.1.1",3056]30573058[[package]]3059name = "parity-multiaddr"3060version = "0.8.0"3061source = "registry+https://github.com/rust-lang/crates.io-index"3062checksum = "4db35e222f783ef4e6661873f6c165c4eb7b65e0c408349818517d5705c2d7d3"3063dependencies = [3064 "arrayref",3065 "bs58",3066 "byteorder",3067 "data-encoding",3068 "multihash",3069 "percent-encoding 2.1.0",3070 "serde",3071 "static_assertions",3072 "unsigned-varint",3073 "url 2.1.1",3074]30753076[[package]]3077name = "parity-multihash"3078version = "0.2.3"3079source = "registry+https://github.com/rust-lang/crates.io-index"3080checksum = "7a1cd2ba02391b81367bec529fb209019d718684fdc8ad6a712c2b536e46f775"3081dependencies = [3082 "blake2",3083 "bytes 0.5.4",3084 "rand 0.7.3",3085 "sha-1",3086 "sha2",3087 "sha3",3088 "unsigned-varint",3089]30903091[[package]]3092name = "parity-scale-codec"3093version = "1.3.0"3094source = "registry+https://github.com/rust-lang/crates.io-index"3095checksum = "329c8f7f4244ddb5c37c103641027a76c530e65e8e4b8240b29f81ea40508b17"3096dependencies = [3097 "arrayvec 0.5.1",3098 "bitvec",3099 "byte-slice-cast",3100 "parity-scale-codec-derive",3101 "serde",3102]31033104[[package]]3105name = "parity-scale-codec-derive"3106version = "1.2.0"3107source = "registry+https://github.com/rust-lang/crates.io-index"3108checksum = "5a0ec292e92e8ec7c58e576adacc1e3f399c597c8f263c42f18420abe58e7245"3109dependencies = [3110 "proc-macro-crate",3111 "proc-macro2",3112 "quote 1.0.3",3113 "syn 1.0.17",3114]31153116[[package]]3117name = "parity-send-wrapper"3118version = "0.1.0"3119source = "registry+https://github.com/rust-lang/crates.io-index"3120checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f"31213122[[package]]3123name = "parity-util-mem"3124version = "0.6.1"3125source = "registry+https://github.com/rust-lang/crates.io-index"3126checksum = "2c6e2583649a3ca84894d1d71da249abcfda54d5aca24733d72ca10d0f02361c"3127dependencies = [3128 "cfg-if",3129 "ethereum-types",3130 "hashbrown",3131 "impl-trait-for-tuples",3132 "lru",3133 "parity-util-mem-derive",3134 "parking_lot 0.10.2",3135 "primitive-types",3136 "smallvec 1.3.0",3137 "winapi 0.3.8",3138]31393140[[package]]3141name = "parity-util-mem-derive"3142version = "0.1.0"3143source = "registry+https://github.com/rust-lang/crates.io-index"3144checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2"3145dependencies = [3146 "proc-macro2",3147 "syn 1.0.17",3148 "synstructure",3149]31503151[[package]]3152name = "parity-wasm"3153version = "0.41.0"3154source = "registry+https://github.com/rust-lang/crates.io-index"3155checksum = "ddfc878dac00da22f8f61e7af3157988424567ab01d9920b962ef7dcbd7cd865"31563157[[package]]3158name = "parking_lot"3159version = "0.9.0"3160source = "registry+https://github.com/rust-lang/crates.io-index"3161checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"3162dependencies = [3163 "lock_api",3164 "parking_lot_core 0.6.2",3165 "rustc_version",3166]31673168[[package]]3169name = "parking_lot"3170version = "0.10.2"3171source = "registry+https://github.com/rust-lang/crates.io-index"3172checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"3173dependencies = [3174 "lock_api",3175 "parking_lot_core 0.7.1",3176]31773178[[package]]3179name = "parking_lot_core"3180version = "0.6.2"3181source = "registry+https://github.com/rust-lang/crates.io-index"3182checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"3183dependencies = [3184 "cfg-if",3185 "cloudabi",3186 "libc",3187 "redox_syscall",3188 "rustc_version",3189 "smallvec 0.6.13",3190 "winapi 0.3.8",3191]31923193[[package]]3194name = "parking_lot_core"3195version = "0.7.1"3196source = "registry+https://github.com/rust-lang/crates.io-index"3197checksum = "0e136c1904604defe99ce5fd71a28d473fa60a12255d511aa78a9ddf11237aeb"3198dependencies = [3199 "cfg-if",3200 "cloudabi",3201 "libc",3202 "redox_syscall",3203 "smallvec 1.3.0",3204 "winapi 0.3.8",3205]32063207[[package]]3208name = "paste"3209version = "0.1.10"3210source = "registry+https://github.com/rust-lang/crates.io-index"3211checksum = "ab4fb1930692d1b6a9cfabdde3d06ea0a7d186518e2f4d67660d8970e2fa647a"3212dependencies = [3213 "paste-impl",3214 "proc-macro-hack",3215]32163217[[package]]3218name = "paste-impl"3219version = "0.1.10"3220source = "registry+https://github.com/rust-lang/crates.io-index"3221checksum = "a62486e111e571b1e93b710b61e8f493c0013be39629b714cb166bdb06aa5a8a"3222dependencies = [3223 "proc-macro-hack",3224 "proc-macro2",3225 "quote 1.0.3",3226 "syn 1.0.17",3227]32283229[[package]]3230name = "pbkdf2"3231version = "0.3.0"3232source = "registry+https://github.com/rust-lang/crates.io-index"3233checksum = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9"3234dependencies = [3235 "byteorder",3236 "crypto-mac",3237]32383239[[package]]3240name = "peeking_take_while"3241version = "0.1.2"3242source = "registry+https://github.com/rust-lang/crates.io-index"3243checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"32443245[[package]]3246name = "percent-encoding"3247version = "1.0.1"3248source = "registry+https://github.com/rust-lang/crates.io-index"3249checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"32503251[[package]]3252name = "percent-encoding"3253version = "2.1.0"3254source = "registry+https://github.com/rust-lang/crates.io-index"3255checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"32563257[[package]]3258name = "petgraph"3259version = "0.5.0"3260source = "registry+https://github.com/rust-lang/crates.io-index"3261checksum = "29c127eea4a29ec6c85d153c59dc1213f33ec74cead30fe4730aecc88cc1fd92"3262dependencies = [3263 "fixedbitset",3264 "indexmap",3265]32663267[[package]]3268name = "pin-project"3269version = "0.4.9"3270source = "registry+https://github.com/rust-lang/crates.io-index"3271checksum = "6f6a7f5eee6292c559c793430c55c00aea9d3b3d1905e855806ca4d7253426a2"3272dependencies = [3273 "pin-project-internal",3274]32753276[[package]]3277name = "pin-project-internal"3278version = "0.4.9"3279source = "registry+https://github.com/rust-lang/crates.io-index"3280checksum = "8988430ce790d8682672117bc06dda364c0be32d3abd738234f19f3240bad99a"3281dependencies = [3282 "proc-macro2",3283 "quote 1.0.3",3284 "syn 1.0.17",3285]32863287[[package]]3288name = "pin-project-lite"3289version = "0.1.4"3290source = "registry+https://github.com/rust-lang/crates.io-index"3291checksum = "237844750cfbb86f67afe27eee600dfbbcb6188d734139b534cbfbf4f96792ae"32923293[[package]]3294name = "pin-utils"3295version = "0.1.0-alpha.4"3296source = "registry+https://github.com/rust-lang/crates.io-index"3297checksum = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587"32983299[[package]]3300name = "pkg-config"3301version = "0.3.17"3302source = "registry+https://github.com/rust-lang/crates.io-index"3303checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"33043305[[package]]3306name = "platforms"3307version = "0.2.1"3308source = "registry+https://github.com/rust-lang/crates.io-index"3309checksum = "feb3b2b1033b8a60b4da6ee470325f887758c95d5320f52f9ce0df055a55940e"33103311[[package]]3312name = "ppv-lite86"3313version = "0.2.6"3314source = "registry+https://github.com/rust-lang/crates.io-index"3315checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"33163317[[package]]3318name = "primitive-types"3319version = "0.7.0"3320source = "registry+https://github.com/rust-lang/crates.io-index"3321checksum = "e5e4b9943a2da369aec5e96f7c10ebc74fcf434d39590d974b0a3460e6f67fbb"3322dependencies = [3323 "fixed-hash",3324 "impl-codec",3325 "impl-rlp",3326 "impl-serde 0.3.0",3327 "uint",3328]33293330[[package]]3331name = "proc-macro-crate"3332version = "0.1.4"3333source = "registry+https://github.com/rust-lang/crates.io-index"3334checksum = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e"3335dependencies = [3336 "toml",3337]33383339[[package]]3340name = "proc-macro-error"3341version = "1.0.2"3342source = "registry+https://github.com/rust-lang/crates.io-index"3343checksum = "98e9e4b82e0ef281812565ea4751049f1bdcdfccda7d3f459f2e138a40c08678"3344dependencies = [3345 "proc-macro-error-attr",3346 "proc-macro2",3347 "quote 1.0.3",3348 "syn 1.0.17",3349 "version_check",3350]33513352[[package]]3353name = "proc-macro-error-attr"3354version = "1.0.2"3355source = "registry+https://github.com/rust-lang/crates.io-index"3356checksum = "4f5444ead4e9935abd7f27dc51f7e852a0569ac888096d5ec2499470794e2e53"3357dependencies = [3358 "proc-macro2",3359 "quote 1.0.3",3360 "syn 1.0.17",3361 "syn-mid",3362 "version_check",3363]33643365[[package]]3366name = "proc-macro-hack"3367version = "0.5.15"3368source = "registry+https://github.com/rust-lang/crates.io-index"3369checksum = "0d659fe7c6d27f25e9d80a1a094c223f5246f6a6596453e09d7229bf42750b63"33703371[[package]]3372name = "proc-macro-nested"3373version = "0.1.4"3374source = "registry+https://github.com/rust-lang/crates.io-index"3375checksum = "8e946095f9d3ed29ec38de908c22f95d9ac008e424c7bcae54c75a79c527c694"33763377[[package]]3378name = "proc-macro2"3379version = "1.0.10"3380source = "registry+https://github.com/rust-lang/crates.io-index"3381checksum = "df246d292ff63439fea9bc8c0a270bed0e390d5ebd4db4ba15aba81111b5abe3"3382dependencies = [3383 "unicode-xid 0.2.0",3384]33853386[[package]]3387name = "procfs"3388version = "0.7.8"3389source = "registry+https://github.com/rust-lang/crates.io-index"3390checksum = "fe50036aa1b71e553a4a0c48ab7baabf8aa8c7a5a61aae06bf38c2eab7430475"3391dependencies = [3392 "bitflags",3393 "byteorder",3394 "chrono",3395 "hex",3396 "lazy_static",3397 "libc",3398 "libflate",3399]34003401[[package]]3402name = "prometheus"3403version = "0.8.0"3404source = "registry+https://github.com/rust-lang/crates.io-index"3405checksum = "b0575e258dab62268e7236d7307caa38848acbda7ec7ab87bd9093791e999d20"3406dependencies = [3407 "cfg-if",3408 "fnv",3409 "lazy_static",3410 "protobuf",3411 "spin",3412 "thiserror",3413]34143415[[package]]3416name = "prost"3417version = "0.6.1"3418source = "registry+https://github.com/rust-lang/crates.io-index"3419checksum = "ce49aefe0a6144a45de32927c77bd2859a5f7677b55f220ae5b744e87389c212"3420dependencies = [3421 "bytes 0.5.4",3422 "prost-derive",3423]34243425[[package]]3426name = "prost-build"3427version = "0.6.1"3428source = "registry+https://github.com/rust-lang/crates.io-index"3429checksum = "02b10678c913ecbd69350e8535c3aef91a8676c0773fc1d7b95cdd196d7f2f26"3430dependencies = [3431 "bytes 0.5.4",3432 "heck",3433 "itertools",3434 "log",3435 "multimap",3436 "petgraph",3437 "prost",3438 "prost-types",3439 "tempfile",3440 "which",3441]34423443[[package]]3444name = "prost-derive"3445version = "0.6.1"3446source = "registry+https://github.com/rust-lang/crates.io-index"3447checksum = "537aa19b95acde10a12fec4301466386f757403de4cd4e5b4fa78fb5ecb18f72"3448dependencies = [3449 "anyhow",3450 "itertools",3451 "proc-macro2",3452 "quote 1.0.3",3453 "syn 1.0.17",3454]34553456[[package]]3457name = "prost-types"3458version = "0.6.1"3459source = "registry+https://github.com/rust-lang/crates.io-index"3460checksum = "1834f67c0697c001304b75be76f67add9c89742eda3a085ad8ee0bb38c3417aa"3461dependencies = [3462 "bytes 0.5.4",3463 "prost",3464]34653466[[package]]3467name = "protobuf"3468version = "2.14.0"3469source = "registry+https://github.com/rust-lang/crates.io-index"3470checksum = "8e86d370532557ae7573551a1ec8235a0f8d6cb276c7c9e6aa490b511c447485"34713472[[package]]3473name = "pwasm-utils"3474version = "0.12.0"3475source = "registry+https://github.com/rust-lang/crates.io-index"3476checksum = "4f7a12f176deee919f4ba55326ee17491c8b707d0987aed822682c821b660192"3477dependencies = [3478 "byteorder",3479 "log",3480 "parity-wasm",3481]34823483[[package]]3484name = "quick-error"3485version = "1.2.3"3486source = "registry+https://github.com/rust-lang/crates.io-index"3487checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"34883489[[package]]3490name = "quicksink"3491version = "0.1.2"3492source = "registry+https://github.com/rust-lang/crates.io-index"3493checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858"3494dependencies = [3495 "futures-core",3496 "futures-sink",3497 "pin-project-lite",3498]34993500[[package]]3501name = "quote"3502version = "0.3.15"3503source = "registry+https://github.com/rust-lang/crates.io-index"3504checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"35053506[[package]]3507name = "quote"3508version = "1.0.3"3509source = "registry+https://github.com/rust-lang/crates.io-index"3510checksum = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f"3511dependencies = [3512 "proc-macro2",3513]35143515[[package]]3516name = "radium"3517version = "0.3.0"3518source = "registry+https://github.com/rust-lang/crates.io-index"3519checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac"35203521[[package]]3522name = "rand"3523version = "0.3.23"3524source = "registry+https://github.com/rust-lang/crates.io-index"3525checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"3526dependencies = [3527 "libc",3528 "rand 0.4.6",3529]35303531[[package]]3532name = "rand"3533version = "0.4.6"3534source = "registry+https://github.com/rust-lang/crates.io-index"3535checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"3536dependencies = [3537 "fuchsia-cprng",3538 "libc",3539 "rand_core 0.3.1",3540 "rdrand",3541 "winapi 0.3.8",3542]35433544[[package]]3545name = "rand"3546version = "0.5.6"3547source = "registry+https://github.com/rust-lang/crates.io-index"3548checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"3549dependencies = [3550 "cloudabi",3551 "fuchsia-cprng",3552 "libc",3553 "rand_core 0.3.1",3554 "winapi 0.3.8",3555]35563557[[package]]3558name = "rand"3559version = "0.6.5"3560source = "registry+https://github.com/rust-lang/crates.io-index"3561checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"3562dependencies = [3563 "autocfg 0.1.7",3564 "libc",3565 "rand_chacha 0.1.1",3566 "rand_core 0.4.2",3567 "rand_hc 0.1.0",3568 "rand_isaac",3569 "rand_jitter",3570 "rand_os",3571 "rand_pcg",3572 "rand_xorshift",3573 "winapi 0.3.8",3574]35753576[[package]]3577name = "rand"3578version = "0.7.3"3579source = "registry+https://github.com/rust-lang/crates.io-index"3580checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"3581dependencies = [3582 "getrandom",3583 "libc",3584 "rand_chacha 0.2.2",3585 "rand_core 0.5.1",3586 "rand_hc 0.2.0",3587]35883589[[package]]3590name = "rand_chacha"3591version = "0.1.1"3592source = "registry+https://github.com/rust-lang/crates.io-index"3593checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"3594dependencies = [3595 "autocfg 0.1.7",3596 "rand_core 0.3.1",3597]35983599[[package]]3600name = "rand_chacha"3601version = "0.2.2"3602source = "registry+https://github.com/rust-lang/crates.io-index"3603checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"3604dependencies = [3605 "ppv-lite86",3606 "rand_core 0.5.1",3607]36083609[[package]]3610name = "rand_core"3611version = "0.3.1"3612source = "registry+https://github.com/rust-lang/crates.io-index"3613checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"3614dependencies = [3615 "rand_core 0.4.2",3616]36173618[[package]]3619name = "rand_core"3620version = "0.4.2"3621source = "registry+https://github.com/rust-lang/crates.io-index"3622checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"36233624[[package]]3625name = "rand_core"3626version = "0.5.1"3627source = "registry+https://github.com/rust-lang/crates.io-index"3628checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"3629dependencies = [3630 "getrandom",3631]36323633[[package]]3634name = "rand_hc"3635version = "0.1.0"3636source = "registry+https://github.com/rust-lang/crates.io-index"3637checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"3638dependencies = [3639 "rand_core 0.3.1",3640]36413642[[package]]3643name = "rand_hc"3644version = "0.2.0"3645source = "registry+https://github.com/rust-lang/crates.io-index"3646checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"3647dependencies = [3648 "rand_core 0.5.1",3649]36503651[[package]]3652name = "rand_isaac"3653version = "0.1.1"3654source = "registry+https://github.com/rust-lang/crates.io-index"3655checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"3656dependencies = [3657 "rand_core 0.3.1",3658]36593660[[package]]3661name = "rand_jitter"3662version = "0.1.4"3663source = "registry+https://github.com/rust-lang/crates.io-index"3664checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"3665dependencies = [3666 "libc",3667 "rand_core 0.4.2",3668 "winapi 0.3.8",3669]36703671[[package]]3672name = "rand_os"3673version = "0.1.3"3674source = "registry+https://github.com/rust-lang/crates.io-index"3675checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"3676dependencies = [3677 "cloudabi",3678 "fuchsia-cprng",3679 "libc",3680 "rand_core 0.4.2",3681 "rdrand",3682 "winapi 0.3.8",3683]36843685[[package]]3686name = "rand_pcg"3687version = "0.1.2"3688source = "registry+https://github.com/rust-lang/crates.io-index"3689checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"3690dependencies = [3691 "autocfg 0.1.7",3692 "rand_core 0.4.2",3693]36943695[[package]]3696name = "rand_xorshift"3697version = "0.1.1"3698source = "registry+https://github.com/rust-lang/crates.io-index"3699checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"3700dependencies = [3701 "rand_core 0.3.1",3702]37033704[[package]]3705name = "rawpointer"3706version = "0.2.1"3707source = "registry+https://github.com/rust-lang/crates.io-index"3708checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"37093710[[package]]3711name = "rayon"3712version = "1.3.0"3713source = "registry+https://github.com/rust-lang/crates.io-index"3714checksum = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"3715dependencies = [3716 "crossbeam-deque",3717 "either",3718 "rayon-core",3719]37203721[[package]]3722name = "rayon-core"3723version = "1.7.0"3724source = "registry+https://github.com/rust-lang/crates.io-index"3725checksum = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"3726dependencies = [3727 "crossbeam-deque",3728 "crossbeam-queue",3729 "crossbeam-utils",3730 "lazy_static",3731 "num_cpus",3732]37333734[[package]]3735name = "rdrand"3736version = "0.4.0"3737source = "registry+https://github.com/rust-lang/crates.io-index"3738checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"3739dependencies = [3740 "rand_core 0.3.1",3741]37423743[[package]]3744name = "redox_syscall"3745version = "0.1.56"3746source = "registry+https://github.com/rust-lang/crates.io-index"3747checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"37483749[[package]]3750name = "regex"3751version = "1.3.6"3752source = "registry+https://github.com/rust-lang/crates.io-index"3753checksum = "7f6946991529684867e47d86474e3a6d0c0ab9b82d5821e314b1ede31fa3a4b3"3754dependencies = [3755 "aho-corasick",3756 "memchr",3757 "regex-syntax",3758 "thread_local",3759]37603761[[package]]3762name = "regex-syntax"3763version = "0.6.17"3764source = "registry+https://github.com/rust-lang/crates.io-index"3765checksum = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"37663767[[package]]3768name = "remove_dir_all"3769version = "0.5.2"3770source = "registry+https://github.com/rust-lang/crates.io-index"3771checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"3772dependencies = [3773 "winapi 0.3.8",3774]37753776[[package]]3777name = "ring"3778version = "0.16.12"3779source = "registry+https://github.com/rust-lang/crates.io-index"3780checksum = "1ba5a8ec64ee89a76c98c549af81ff14813df09c3e6dc4766c3856da48597a0c"3781dependencies = [3782 "cc",3783 "lazy_static",3784 "libc",3785 "spin",3786 "untrusted",3787 "web-sys",3788 "winapi 0.3.8",3789]37903791[[package]]3792name = "rle-decode-fast"3793version = "1.0.1"3794source = "registry+https://github.com/rust-lang/crates.io-index"3795checksum = "cabe4fa914dec5870285fa7f71f602645da47c486e68486d2b4ceb4a343e90ac"37963797[[package]]3798name = "rlp"3799version = "0.4.5"3800source = "registry+https://github.com/rust-lang/crates.io-index"3801checksum = "4a7d3f9bed94764eac15b8f14af59fac420c236adaff743b7bcc88e265cb4345"3802dependencies = [3803 "rustc-hex",3804]38053806[[package]]3807name = "rocksdb"3808version = "0.13.0"3809source = "registry+https://github.com/rust-lang/crates.io-index"3810checksum = "12069b106981c6103d3eab7dd1c86751482d0779a520b7c14954c8b586c1e643"3811dependencies = [3812 "libc",3813 "librocksdb-sys",3814]38153816[[package]]3817name = "rpassword"3818version = "4.0.5"3819source = "registry+https://github.com/rust-lang/crates.io-index"3820checksum = "99371657d3c8e4d816fb6221db98fa408242b0b53bac08f8676a41f8554fe99f"3821dependencies = [3822 "libc",3823 "winapi 0.3.8",3824]38253826[[package]]3827name = "rustc-demangle"3828version = "0.1.16"3829source = "registry+https://github.com/rust-lang/crates.io-index"3830checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"38313832[[package]]3833name = "rustc-hash"3834version = "1.1.0"3835source = "registry+https://github.com/rust-lang/crates.io-index"3836checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"38373838[[package]]3839name = "rustc-hex"3840version = "2.1.0"3841source = "registry+https://github.com/rust-lang/crates.io-index"3842checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"38433844[[package]]3845name = "rustc_version"3846version = "0.2.3"3847source = "registry+https://github.com/rust-lang/crates.io-index"3848checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"3849dependencies = [3850 "semver",3851]38523853[[package]]3854name = "rustls"3855version = "0.17.0"3856source = "registry+https://github.com/rust-lang/crates.io-index"3857checksum = "c0d4a31f5d68413404705d6982529b0e11a9aacd4839d1d6222ee3b8cb4015e1"3858dependencies = [3859 "base64",3860 "log",3861 "ring",3862 "sct",3863 "webpki",3864]38653866[[package]]3867name = "rustls-native-certs"3868version = "0.3.0"3869source = "registry+https://github.com/rust-lang/crates.io-index"3870checksum = "a75ffeb84a6bd9d014713119542ce415db3a3e4748f0bfce1e1416cd224a23a5"3871dependencies = [3872 "openssl-probe",3873 "rustls",3874 "schannel",3875 "security-framework",3876]38773878[[package]]3879name = "rw-stream-sink"3880version = "0.2.1"3881source = "registry+https://github.com/rust-lang/crates.io-index"3882checksum = "4da5fcb054c46f5a5dff833b129285a93d3f0179531735e6c866e8cc307d2020"3883dependencies = [3884 "futures 0.3.4",3885 "pin-project",3886 "static_assertions",3887]38883889[[package]]3890name = "ryu"3891version = "1.0.3"3892source = "registry+https://github.com/rust-lang/crates.io-index"3893checksum = "535622e6be132bccd223f4bb2b8ac8d53cda3c7a6394944d3b2b33fb974f9d76"38943895[[package]]3896name = "safe-mix"3897version = "1.0.1"3898source = "registry+https://github.com/rust-lang/crates.io-index"3899checksum = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c"3900dependencies = [3901 "rustc_version",3902]39033904[[package]]3905name = "sc-basic-authorship"3906version = "0.8.0-alpha.6"3907source = "registry+https://github.com/rust-lang/crates.io-index"3908checksum = "5eeea19615c22c30accd79ca751b7db8642a3a88572432624a88c6754b6c7d33"3909dependencies = [3910 "futures 0.3.4",3911 "futures-timer 3.0.2",3912 "log",3913 "parity-scale-codec",3914 "sc-block-builder",3915 "sc-client-api",3916 "sc-telemetry",3917 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3918 "sp-blockchain",3919 "sp-consensus",3920 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3921 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3922 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3923 "sp-transaction-pool",3924 "tokio-executor 0.2.0-alpha.6",3925]39263927[[package]]3928name = "sc-block-builder"3929version = "0.8.0-alpha.6"3930source = "registry+https://github.com/rust-lang/crates.io-index"3931checksum = "bd7b45adef0526ef295a9b7da4af933322df7119385a78c2e96c99b5d54fcc35"3932dependencies = [3933 "parity-scale-codec",3934 "sc-client-api",3935 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3936 "sp-block-builder",3937 "sp-blockchain",3938 "sp-consensus",3939 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3940 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3941 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3942]39433944[[package]]3945name = "sc-chain-spec"3946version = "2.0.0-alpha.6"3947source = "registry+https://github.com/rust-lang/crates.io-index"3948checksum = "7d37957c58cb0cf1fa9fe1187447d16e4708a7a0541ee2c1226b2536f4241742"3949dependencies = [3950 "impl-trait-for-tuples",3951 "sc-chain-spec-derive",3952 "sc-network",3953 "sc-telemetry",3954 "serde",3955 "serde_json",3956 "sp-chain-spec",3957 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3958 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",3959]39603961[[package]]3962name = "sc-chain-spec-derive"3963version = "2.0.0-alpha.6"3964source = "registry+https://github.com/rust-lang/crates.io-index"3965checksum = "2703f02f31f53601ed0408df76939a2e1911ff64a146e7b15ed1be56193e91ba"3966dependencies = [3967 "proc-macro-crate",3968 "proc-macro2",3969 "quote 1.0.3",3970 "syn 1.0.17",3971]39723973[[package]]3974name = "sc-cli"3975version = "0.8.0-alpha.6"3976source = "registry+https://github.com/rust-lang/crates.io-index"3977checksum = "46513d8e34913e19ffb8663ff211528f5590712c3c4e69bfa41ca748120a2001"3978dependencies = [3979 "ansi_term 0.12.1",3980 "app_dirs",3981 "atty",3982 "chrono",3983 "clap",3984 "derive_more",3985 "env_logger",3986 "fdlimit",3987 "futures 0.3.4",3988 "lazy_static",3989 "log",3990 "names",3991 "nix",3992 "parity-util-mem",3993 "regex",3994 "rpassword",3995 "sc-client-api",3996 "sc-informant",3997 "sc-network",3998 "sc-service",3999 "sc-telemetry",4000 "sc-tracing",4001 "serde_json",4002 "sp-blockchain",4003 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4004 "sp-keyring",4005 "sp-panic-handler 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4006 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4007 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4008 "sp-utils",4009 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4010 "structopt",4011 "substrate-prometheus-endpoint",4012 "time",4013 "tokio 0.2.18",4014]40154016[[package]]4017name = "sc-client"4018version = "0.8.0-alpha.6"4019source = "registry+https://github.com/rust-lang/crates.io-index"4020checksum = "9908c438f8e60d07c97a7f1d4ea8c6d31a498f283373c533f2006c032b9a4971"4021dependencies = [4022 "derive_more",4023 "fnv",4024 "futures 0.3.4",4025 "hash-db",4026 "hex-literal",4027 "kvdb",4028 "log",4029 "parity-scale-codec",4030 "parking_lot 0.10.2",4031 "sc-block-builder",4032 "sc-client-api",4033 "sc-executor",4034 "sc-telemetry",4035 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4036 "sp-blockchain",4037 "sp-consensus",4038 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4039 "sp-externalities 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4040 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4041 "sp-keyring",4042 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4043 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4044 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4045 "sp-trie 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4046 "sp-utils",4047 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4048 "substrate-prometheus-endpoint",4049 "tracing",4050]40514052[[package]]4053name = "sc-client-api"4054version = "2.0.0-alpha.6"4055source = "registry+https://github.com/rust-lang/crates.io-index"4056checksum = "b0a2271c80a792efffc4abfe9be8b87c9747721cfa4426f3b707283a431bbacd"4057dependencies = [4058 "derive_more",4059 "fnv",4060 "futures 0.3.4",4061 "hash-db",4062 "hex-literal",4063 "kvdb",4064 "lazy_static",4065 "log",4066 "parity-scale-codec",4067 "parking_lot 0.10.2",4068 "sc-executor",4069 "sc-telemetry",4070 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4071 "sp-blockchain",4072 "sp-consensus",4073 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4074 "sp-externalities 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4075 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4076 "sp-keyring",4077 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4078 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4079 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4080 "sp-storage 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4081 "sp-transaction-pool",4082 "sp-trie 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4083 "sp-utils",4084 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4085]40864087[[package]]4088name = "sc-client-db"4089version = "0.8.0-alpha.6"4090source = "registry+https://github.com/rust-lang/crates.io-index"4091checksum = "5b1ae5b4c8333cb751cd9bbc7ecf0eb1c55d4865fca6651066844febcec71618"4092dependencies = [4093 "hash-db",4094 "kvdb",4095 "kvdb-memorydb",4096 "kvdb-rocksdb",4097 "linked-hash-map",4098 "log",4099 "parity-scale-codec",4100 "parity-util-mem",4101 "parking_lot 0.10.2",4102 "sc-client",4103 "sc-client-api",4104 "sc-executor",4105 "sc-state-db",4106 "sp-blockchain",4107 "sp-consensus",4108 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4109 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4110 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4111 "sp-trie 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4112 "substrate-prometheus-endpoint",4113]41144115[[package]]4116name = "sc-consensus-aura"4117version = "0.8.0-alpha.6"4118source = "registry+https://github.com/rust-lang/crates.io-index"4119checksum = "a476e0650893a4e8c086c14f1ea5fde4a3de9f654a75c706f2c362406ee4d588"4120dependencies = [4121 "derive_more",4122 "futures 0.3.4",4123 "futures-timer 3.0.2",4124 "log",4125 "parity-scale-codec",4126 "parking_lot 0.10.2",4127 "sc-block-builder",4128 "sc-client",4129 "sc-client-api",4130 "sc-consensus-slots",4131 "sc-keystore",4132 "sc-telemetry",4133 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4134 "sp-application-crypto 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4135 "sp-block-builder",4136 "sp-blockchain",4137 "sp-consensus",4138 "sp-consensus-aura",4139 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4140 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4141 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4142 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4143 "sp-timestamp",4144 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4145]41464147[[package]]4148name = "sc-consensus-slots"4149version = "0.8.0-alpha.6"4150source = "registry+https://github.com/rust-lang/crates.io-index"4151checksum = "7ec4ede5a5b469f5cc1ac9fd304c7683f1e57638e5d9f8f23df6a98758b9cc24"4152dependencies = [4153 "futures 0.3.4",4154 "futures-timer 3.0.2",4155 "log",4156 "parity-scale-codec",4157 "parking_lot 0.10.2",4158 "sc-client-api",4159 "sc-telemetry",4160 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4161 "sp-blockchain",4162 "sp-consensus",4163 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4164 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4165 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4166 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4167]41684169[[package]]4170name = "sc-executor"4171version = "0.8.0-alpha.6"4172source = "registry+https://github.com/rust-lang/crates.io-index"4173checksum = "f238a411de5e1cfe3b104f287aad0a48e4a39d9157171b7761d91d6d4a76610a"4174dependencies = [4175 "derive_more",4176 "lazy_static",4177 "libsecp256k1",4178 "log",4179 "parity-scale-codec",4180 "parity-wasm",4181 "parking_lot 0.10.2",4182 "sc-executor-common",4183 "sc-executor-wasmi",4184 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4185 "sp-externalities 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4186 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4187 "sp-panic-handler 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4188 "sp-runtime-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4189 "sp-serializer",4190 "sp-trie 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4191 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4192 "sp-wasm-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4193 "wasmi",4194]41954196[[package]]4197name = "sc-executor-common"4198version = "0.8.0-alpha.6"4199source = "registry+https://github.com/rust-lang/crates.io-index"4200checksum = "549d94ce1316c168a72c26abf0bf3390ae76b1645030e2aac9ecf0542b04fa85"4201dependencies = [4202 "derive_more",4203 "log",4204 "parity-scale-codec",4205 "parity-wasm",4206 "sp-allocator",4207 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4208 "sp-runtime-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4209 "sp-serializer",4210 "sp-wasm-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4211 "wasmi",4212]42134214[[package]]4215name = "sc-executor-wasmi"4216version = "0.8.0-alpha.6"4217source = "registry+https://github.com/rust-lang/crates.io-index"4218checksum = "0c7efc6978b59884e1593ec172fe5b1a909c980b0e495897c904da50616c3a7a"4219dependencies = [4220 "log",4221 "parity-scale-codec",4222 "sc-executor-common",4223 "sp-allocator",4224 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4225 "sp-runtime-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4226 "sp-wasm-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4227 "wasmi",4228]42294230[[package]]4231name = "sc-finality-grandpa"4232version = "0.8.0-alpha.6"4233source = "registry+https://github.com/rust-lang/crates.io-index"4234checksum = "8bcf9e6787b6b421c2152e3d876105dec0c4cfa9fdac6bca54bec404d79a8593"4235dependencies = [4236 "assert_matches",4237 "finality-grandpa",4238 "fork-tree",4239 "futures 0.3.4",4240 "futures-timer 3.0.2",4241 "log",4242 "parity-scale-codec",4243 "parking_lot 0.10.2",4244 "pin-project",4245 "rand 0.7.3",4246 "sc-block-builder",4247 "sc-client",4248 "sc-client-api",4249 "sc-keystore",4250 "sc-network",4251 "sc-network-gossip",4252 "sc-telemetry",4253 "serde_json",4254 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4255 "sp-arithmetic 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4256 "sp-blockchain",4257 "sp-consensus",4258 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4259 "sp-finality-grandpa",4260 "sp-finality-tracker",4261 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4262 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4263 "sp-utils",4264 "substrate-prometheus-endpoint",4265]42664267[[package]]4268name = "sc-informant"4269version = "0.8.0-alpha.6"4270source = "registry+https://github.com/rust-lang/crates.io-index"4271checksum = "a03ec9890c64668809ac230921c504f18dc79bec75addf02da197b437d740dda"4272dependencies = [4273 "ansi_term 0.12.1",4274 "futures 0.3.4",4275 "log",4276 "parity-util-mem",4277 "sc-client-api",4278 "sc-network",4279 "sc-service",4280 "sp-blockchain",4281 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4282 "wasm-timer",4283]42844285[[package]]4286name = "sc-keystore"4287version = "2.0.0-alpha.6"4288source = "registry+https://github.com/rust-lang/crates.io-index"4289checksum = "4fd2f3cb18368d58af4946e277b9e4bea605feb65872116130c1dd0905f341e3"4290dependencies = [4291 "derive_more",4292 "hex",4293 "parking_lot 0.10.2",4294 "rand 0.7.3",4295 "serde_json",4296 "sp-application-crypto 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4297 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4298 "subtle 2.2.2",4299]43004301[[package]]4302name = "sc-network"4303version = "0.8.0-alpha.6"4304source = "registry+https://github.com/rust-lang/crates.io-index"4305checksum = "fda92d4930bd77f3d215504ce16a3715585d8fc7c3d7be3c6f6891ee841f5686"4306dependencies = [4307 "bitflags",4308 "bytes 0.5.4",4309 "derive_more",4310 "either",4311 "erased-serde",4312 "fnv",4313 "fork-tree",4314 "futures 0.3.4",4315 "futures-timer 3.0.2",4316 "futures_codec",4317 "hex",4318 "libp2p",4319 "linked-hash-map",4320 "linked_hash_set",4321 "log",4322 "lru",4323 "nohash-hasher",4324 "parity-scale-codec",4325 "parking_lot 0.10.2",4326 "pin-project",4327 "prost",4328 "prost-build",4329 "rand 0.7.3",4330 "sc-block-builder",4331 "sc-client",4332 "sc-client-api",4333 "sc-peerset",4334 "serde",4335 "serde_json",4336 "slog",4337 "slog_derive",4338 "smallvec 0.6.13",4339 "sp-arithmetic 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4340 "sp-blockchain",4341 "sp-consensus",4342 "sp-consensus-babe",4343 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4344 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4345 "sp-utils",4346 "substrate-prometheus-endpoint",4347 "thiserror",4348 "unsigned-varint",4349 "void",4350 "wasm-timer",4351 "zeroize",4352]43534354[[package]]4355name = "sc-network-gossip"4356version = "0.8.0-alpha.6"4357source = "registry+https://github.com/rust-lang/crates.io-index"4358checksum = "a61f954d0ce6279fe48df2d3d20d3e5589964d501509f85b323cb0fde37b1b90"4359dependencies = [4360 "futures 0.3.4",4361 "futures-timer 3.0.2",4362 "libp2p",4363 "log",4364 "lru",4365 "sc-network",4366 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4367 "sp-utils",4368 "wasm-timer",4369]43704371[[package]]4372name = "sc-offchain"4373version = "2.0.0-alpha.6"4374source = "registry+https://github.com/rust-lang/crates.io-index"4375checksum = "3544cf74f21323eac40c965a3ccda06d828875127e7966c0a05db9686460bf34"4376dependencies = [4377 "bytes 0.5.4",4378 "fnv",4379 "futures 0.3.4",4380 "futures-timer 3.0.2",4381 "hyper 0.13.4",4382 "hyper-rustls",4383 "log",4384 "num_cpus",4385 "parity-scale-codec",4386 "parking_lot 0.10.2",4387 "rand 0.7.3",4388 "sc-client-api",4389 "sc-keystore",4390 "sc-network",4391 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4392 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4393 "sp-offchain",4394 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4395 "sp-utils",4396 "threadpool",4397]43984399[[package]]4400name = "sc-peerset"4401version = "2.0.0-alpha.6"4402source = "registry+https://github.com/rust-lang/crates.io-index"4403checksum = "17b85bec68c3c1b4495b6eabdf14d1c4140a6d569b61af9c4f721f23eae42ed7"4404dependencies = [4405 "futures 0.3.4",4406 "libp2p",4407 "log",4408 "serde_json",4409 "sp-utils",4410 "wasm-timer",4411]44124413[[package]]4414name = "sc-rpc"4415version = "2.0.0-alpha.6"4416source = "registry+https://github.com/rust-lang/crates.io-index"4417checksum = "86f8136a2d703b2f4aeb970707ec83d55ae584c3c0af7aa10b3bd93b227a6fd0"4418dependencies = [4419 "futures 0.3.4",4420 "hash-db",4421 "jsonrpc-core",4422 "jsonrpc-pubsub",4423 "log",4424 "parity-scale-codec",4425 "parking_lot 0.10.2",4426 "sc-block-builder",4427 "sc-client",4428 "sc-client-api",4429 "sc-executor",4430 "sc-keystore",4431 "sc-rpc-api",4432 "serde_json",4433 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4434 "sp-blockchain",4435 "sp-chain-spec",4436 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4437 "sp-offchain",4438 "sp-rpc",4439 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4440 "sp-session",4441 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4442 "sp-transaction-pool",4443 "sp-utils",4444 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4445]44464447[[package]]4448name = "sc-rpc-api"4449version = "0.8.0-alpha.6"4450source = "registry+https://github.com/rust-lang/crates.io-index"4451checksum = "0c681fed8a6aab250f1fbb0848dee73c199bbcf94dc03f27edb57d2c50f0cff3"4452dependencies = [4453 "derive_more",4454 "futures 0.3.4",4455 "jsonrpc-core",4456 "jsonrpc-core-client",4457 "jsonrpc-derive",4458 "jsonrpc-pubsub",4459 "log",4460 "parity-scale-codec",4461 "parking_lot 0.10.2",4462 "serde",4463 "serde_json",4464 "sp-chain-spec",4465 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4466 "sp-rpc",4467 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4468 "sp-transaction-pool",4469 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4470]44714472[[package]]4473name = "sc-rpc-server"4474version = "2.0.0-alpha.6"4475source = "registry+https://github.com/rust-lang/crates.io-index"4476checksum = "29d090ab799eaf3e41f36cdd9c79c2f5d1b0eeefc5f3422bc273084badd7ff62"4477dependencies = [4478 "jsonrpc-core",4479 "jsonrpc-http-server",4480 "jsonrpc-pubsub",4481 "jsonrpc-ws-server",4482 "log",4483 "serde",4484 "serde_json",4485 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4486]44874488[[package]]4489name = "sc-service"4490version = "0.8.0-alpha.6"4491source = "registry+https://github.com/rust-lang/crates.io-index"4492checksum = "0b6863666dc415a261bb21dfe599403fb977720feb5bc6ebacf078f5f78c165b"4493dependencies = [4494 "derive_more",4495 "exit-future",4496 "futures 0.1.29",4497 "futures 0.3.4",4498 "futures-diagnose",4499 "futures-timer 3.0.2",4500 "lazy_static",4501 "log",4502 "netstat2",4503 "parity-multiaddr 0.7.3",4504 "parity-scale-codec",4505 "parity-util-mem",4506 "parking_lot 0.10.2",4507 "procfs",4508 "sc-chain-spec",4509 "sc-client",4510 "sc-client-api",4511 "sc-client-db",4512 "sc-executor",4513 "sc-keystore",4514 "sc-network",4515 "sc-offchain",4516 "sc-rpc",4517 "sc-rpc-server",4518 "sc-telemetry",4519 "sc-tracing",4520 "sc-transaction-pool",4521 "serde",4522 "serde_json",4523 "slog",4524 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4525 "sp-application-crypto 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4526 "sp-blockchain",4527 "sp-consensus",4528 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4529 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4530 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4531 "sp-session",4532 "sp-transaction-pool",4533 "sp-utils",4534 "substrate-prometheus-endpoint",4535 "sysinfo",4536 "tracing",4537 "wasm-timer",4538]45394540[[package]]4541name = "sc-state-db"4542version = "0.8.0-alpha.6"4543source = "registry+https://github.com/rust-lang/crates.io-index"4544checksum = "f31877c85414ed8e19a480940d7ae340832e7616208072cb43982fdcdd176021"4545dependencies = [4546 "log",4547 "parity-scale-codec",4548 "parity-util-mem",4549 "parity-util-mem-derive",4550 "parking_lot 0.10.2",4551 "sc-client-api",4552 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4553]45544555[[package]]4556name = "sc-telemetry"4557version = "2.0.0-alpha.6"4558source = "registry+https://github.com/rust-lang/crates.io-index"4559checksum = "fdaddc5a9aaeabbe68599ae2bfa4f247fa1617e8a119f4665884757052697035"4560dependencies = [4561 "bytes 0.5.4",4562 "futures 0.3.4",4563 "futures-timer 3.0.2",4564 "libp2p",4565 "log",4566 "parking_lot 0.10.2",4567 "pin-project",4568 "rand 0.7.3",4569 "serde",4570 "slog",4571 "slog-json",4572 "slog-scope",4573 "take_mut",4574 "void",4575 "wasm-timer",4576]45774578[[package]]4579name = "sc-tracing"4580version = "2.0.0-alpha.6"4581source = "registry+https://github.com/rust-lang/crates.io-index"4582checksum = "75a0c0eecadf7c89b09e4e7290b301ffd8c3b30af4d1aa47d147f32f9d9e0b33"4583dependencies = [4584 "erased-serde",4585 "log",4586 "parking_lot 0.10.2",4587 "sc-telemetry",4588 "serde",4589 "serde_json",4590 "slog",4591 "tracing-core",4592]45934594[[package]]4595name = "sc-transaction-graph"4596version = "2.0.0-alpha.6"4597source = "registry+https://github.com/rust-lang/crates.io-index"4598checksum = "7b7f1ad6be774288fd73818271d3041442956a149a461de22f97f12210fdc776"4599dependencies = [4600 "derive_more",4601 "futures 0.3.4",4602 "linked-hash-map",4603 "log",4604 "parity-util-mem",4605 "parking_lot 0.10.2",4606 "serde",4607 "sp-blockchain",4608 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4609 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4610 "sp-transaction-pool",4611 "sp-utils",4612 "wasm-timer",4613]46144615[[package]]4616name = "sc-transaction-pool"4617version = "2.0.0-alpha.6"4618source = "registry+https://github.com/rust-lang/crates.io-index"4619checksum = "ca9c7db165344a2d45dc1b7d0a52e1028198b25adba8406e05055f4c5e5626b8"4620dependencies = [4621 "derive_more",4622 "futures 0.3.4",4623 "futures-diagnose",4624 "intervalier",4625 "log",4626 "parity-scale-codec",4627 "parity-util-mem",4628 "parking_lot 0.10.2",4629 "sc-client-api",4630 "sc-transaction-graph",4631 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4632 "sp-blockchain",4633 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4634 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4635 "sp-transaction-pool",4636 "sp-utils",4637 "wasm-timer",4638]46394640[[package]]4641name = "schannel"4642version = "0.1.18"4643source = "registry+https://github.com/rust-lang/crates.io-index"4644checksum = "039c25b130bd8c1321ee2d7de7fde2659fa9c2744e4bb29711cfc852ea53cd19"4645dependencies = [4646 "lazy_static",4647 "winapi 0.3.8",4648]46494650[[package]]4651name = "schnorrkel"4652version = "0.9.1"4653source = "registry+https://github.com/rust-lang/crates.io-index"4654checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"4655dependencies = [4656 "arrayref",4657 "arrayvec 0.5.1",4658 "curve25519-dalek",4659 "getrandom",4660 "merlin",4661 "rand 0.7.3",4662 "rand_core 0.5.1",4663 "sha2",4664 "subtle 2.2.2",4665 "zeroize",4666]46674668[[package]]4669name = "scopeguard"4670version = "1.1.0"4671source = "registry+https://github.com/rust-lang/crates.io-index"4672checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"46734674[[package]]4675name = "sct"4676version = "0.6.0"4677source = "registry+https://github.com/rust-lang/crates.io-index"4678checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"4679dependencies = [4680 "ring",4681 "untrusted",4682]46834684[[package]]4685name = "security-framework"4686version = "0.4.2"4687source = "registry+https://github.com/rust-lang/crates.io-index"4688checksum = "572dfa3a0785509e7a44b5b4bebcf94d41ba34e9ed9eb9df722545c3b3c4144a"4689dependencies = [4690 "bitflags",4691 "core-foundation",4692 "core-foundation-sys",4693 "libc",4694 "security-framework-sys",4695]46964697[[package]]4698name = "security-framework-sys"4699version = "0.4.2"4700source = "registry+https://github.com/rust-lang/crates.io-index"4701checksum = "8ddb15a5fec93b7021b8a9e96009c5d8d51c15673569f7c0f6b7204e5b7b404f"4702dependencies = [4703 "core-foundation-sys",4704 "libc",4705]47064707[[package]]4708name = "semver"4709version = "0.9.0"4710source = "registry+https://github.com/rust-lang/crates.io-index"4711checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"4712dependencies = [4713 "semver-parser",4714]47154716[[package]]4717name = "semver-parser"4718version = "0.7.0"4719source = "registry+https://github.com/rust-lang/crates.io-index"4720checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"47214722[[package]]4723name = "send_wrapper"4724version = "0.2.0"4725source = "registry+https://github.com/rust-lang/crates.io-index"4726checksum = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4"47274728[[package]]4729name = "serde"4730version = "1.0.106"4731source = "registry+https://github.com/rust-lang/crates.io-index"4732checksum = "36df6ac6412072f67cf767ebbde4133a5b2e88e76dc6187fa7104cd16f783399"4733dependencies = [4734 "serde_derive",4735]47364737[[package]]4738name = "serde_derive"4739version = "1.0.106"4740source = "registry+https://github.com/rust-lang/crates.io-index"4741checksum = "9e549e3abf4fb8621bd1609f11dfc9f5e50320802273b12f3811a67e6716ea6c"4742dependencies = [4743 "proc-macro2",4744 "quote 1.0.3",4745 "syn 1.0.17",4746]47474748[[package]]4749name = "serde_json"4750version = "1.0.51"4751source = "registry+https://github.com/rust-lang/crates.io-index"4752checksum = "da07b57ee2623368351e9a0488bb0b261322a15a6e0ae53e243cbdc0f4208da9"4753dependencies = [4754 "itoa",4755 "ryu",4756 "serde",4757]47584759[[package]]4760name = "sha-1"4761version = "0.8.2"4762source = "registry+https://github.com/rust-lang/crates.io-index"4763checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"4764dependencies = [4765 "block-buffer",4766 "digest",4767 "fake-simd",4768 "opaque-debug",4769]47704771[[package]]4772name = "sha1"4773version = "0.6.0"4774source = "registry+https://github.com/rust-lang/crates.io-index"4775checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"47764777[[package]]4778name = "sha2"4779version = "0.8.1"4780source = "registry+https://github.com/rust-lang/crates.io-index"4781checksum = "27044adfd2e1f077f649f59deb9490d3941d674002f7d062870a60ebe9bd47a0"4782dependencies = [4783 "block-buffer",4784 "digest",4785 "fake-simd",4786 "opaque-debug",4787]47884789[[package]]4790name = "sha3"4791version = "0.8.2"4792source = "registry+https://github.com/rust-lang/crates.io-index"4793checksum = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf"4794dependencies = [4795 "block-buffer",4796 "byte-tools",4797 "digest",4798 "keccak",4799 "opaque-debug",4800]48014802[[package]]4803name = "shell32-sys"4804version = "0.1.2"4805source = "registry+https://github.com/rust-lang/crates.io-index"4806checksum = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c"4807dependencies = [4808 "winapi 0.2.8",4809 "winapi-build",4810]48114812[[package]]4813name = "shlex"4814version = "0.1.1"4815source = "registry+https://github.com/rust-lang/crates.io-index"4816checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"48174818[[package]]4819name = "signal-hook-registry"4820version = "1.2.0"4821source = "registry+https://github.com/rust-lang/crates.io-index"4822checksum = "94f478ede9f64724c5d173d7bb56099ec3e2d9fc2774aac65d34b8b890405f41"4823dependencies = [4824 "arc-swap",4825 "libc",4826]48274828[[package]]4829name = "slab"4830version = "0.4.2"4831source = "registry+https://github.com/rust-lang/crates.io-index"4832checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"48334834[[package]]4835name = "slog"4836version = "2.5.2"4837source = "registry+https://github.com/rust-lang/crates.io-index"4838checksum = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99"4839dependencies = [4840 "erased-serde",4841]48424843[[package]]4844name = "slog-json"4845version = "2.3.0"4846source = "registry+https://github.com/rust-lang/crates.io-index"4847checksum = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a"4848dependencies = [4849 "chrono",4850 "erased-serde",4851 "serde",4852 "serde_json",4853 "slog",4854]48554856[[package]]4857name = "slog-scope"4858version = "4.3.0"4859source = "registry+https://github.com/rust-lang/crates.io-index"4860checksum = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6"4861dependencies = [4862 "arc-swap",4863 "lazy_static",4864 "slog",4865]48664867[[package]]4868name = "slog_derive"4869version = "0.2.0"4870source = "registry+https://github.com/rust-lang/crates.io-index"4871checksum = "a945ec7f7ce853e89ffa36be1e27dce9a43e82ff9093bf3461c30d5da74ed11b"4872dependencies = [4873 "proc-macro2",4874 "quote 1.0.3",4875 "syn 1.0.17",4876]48774878[[package]]4879name = "smallvec"4880version = "0.6.13"4881source = "registry+https://github.com/rust-lang/crates.io-index"4882checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"4883dependencies = [4884 "maybe-uninit",4885]48864887[[package]]4888name = "smallvec"4889version = "1.3.0"4890source = "registry+https://github.com/rust-lang/crates.io-index"4891checksum = "05720e22615919e4734f6a99ceae50d00226c3c5aca406e102ebc33298214e0a"48924893[[package]]4894name = "snow"4895version = "0.6.2"4896source = "registry+https://github.com/rust-lang/crates.io-index"4897checksum = "afb767eee7d257ba202f0b9b08673bc13b22281632ef45267b19f13100accd2f"4898dependencies = [4899 "arrayref",4900 "blake2-rfc",4901 "chacha20-poly1305-aead",4902 "rand 0.7.3",4903 "rand_core 0.5.1",4904 "ring",4905 "rustc_version",4906 "sha2",4907 "subtle 2.2.2",4908 "x25519-dalek",4909]49104911[[package]]4912name = "soketto"4913version = "0.3.2"4914source = "registry+https://github.com/rust-lang/crates.io-index"4915checksum = "1c9dab3f95c9ebdf3a88268c19af668f637a3c5039c2c56ff2d40b1b2d64a25b"4916dependencies = [4917 "base64",4918 "bytes 0.5.4",4919 "flate2",4920 "futures 0.3.4",4921 "http 0.2.1",4922 "httparse",4923 "log",4924 "rand 0.7.3",4925 "sha1",4926 "smallvec 1.3.0",4927 "static_assertions",4928 "thiserror",4929]49304931[[package]]4932name = "sp-allocator"4933version = "2.0.0-alpha.6"4934source = "registry+https://github.com/rust-lang/crates.io-index"4935checksum = "6532c396c2d6727d9b0d3eee3edbcaf939e78a6ce944fa34c2b98d6a02a2485e"4936dependencies = [4937 "derive_more",4938 "log",4939 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4940 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4941 "sp-wasm-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4942]49434944[[package]]4945name = "sp-api"4946version = "2.0.0-alpha.6"4947source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"4948dependencies = [4949 "hash-db",4950 "parity-scale-codec",4951 "sp-api-proc-macro 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",4952 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",4953 "sp-runtime 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",4954 "sp-state-machine 0.8.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",4955 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",4956 "sp-version 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",4957]49584959[[package]]4960name = "sp-api"4961version = "2.0.0-alpha.6"4962source = "registry+https://github.com/rust-lang/crates.io-index"4963checksum = "f6a4df52a0c56d742fc75f4da486627c1b050be2ac87cc042c2c0246756f22d2"4964dependencies = [4965 "hash-db",4966 "parity-scale-codec",4967 "sp-api-proc-macro 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4968 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4969 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4970 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4971 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4972 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",4973]49744975[[package]]4976name = "sp-api-proc-macro"4977version = "2.0.0-alpha.6"4978source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"4979dependencies = [4980 "blake2-rfc",4981 "proc-macro-crate",4982 "proc-macro2",4983 "quote 1.0.3",4984 "syn 1.0.17",4985]49864987[[package]]4988name = "sp-api-proc-macro"4989version = "2.0.0-alpha.6"4990source = "registry+https://github.com/rust-lang/crates.io-index"4991checksum = "ff834a833fd8beda20cd588341cdae52336f02f60aa6f0a34d9fd4d91975b369"4992dependencies = [4993 "blake2-rfc",4994 "proc-macro-crate",4995 "proc-macro2",4996 "quote 1.0.3",4997 "syn 1.0.17",4998]49995000[[package]]5001name = "sp-application-crypto"5002version = "2.0.0-alpha.6"5003source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5004dependencies = [5005 "parity-scale-codec",5006 "serde",5007 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5008 "sp-io 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5009 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5010]50115012[[package]]5013name = "sp-application-crypto"5014version = "2.0.0-alpha.6"5015source = "registry+https://github.com/rust-lang/crates.io-index"5016checksum = "3e5dec618ed8ea85fd767358185a412440c02a0adce569c2aa92ee355550d678"5017dependencies = [5018 "parity-scale-codec",5019 "serde",5020 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5021 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5022 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5023]50245025[[package]]5026name = "sp-arithmetic"5027version = "2.0.0-alpha.6"5028source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5029dependencies = [5030 "integer-sqrt",5031 "num-traits 0.2.11",5032 "parity-scale-codec",5033 "primitive-types",5034 "serde",5035 "sp-debug-derive 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5036 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5037]50385039[[package]]5040name = "sp-arithmetic"5041version = "2.0.0-alpha.6"5042source = "registry+https://github.com/rust-lang/crates.io-index"5043checksum = "b413966b541aadf8725dddc29daeefa950f45b17208f33302890484c56009bd3"5044dependencies = [5045 "integer-sqrt",5046 "num-traits 0.2.11",5047 "parity-scale-codec",5048 "primitive-types",5049 "serde",5050 "sp-debug-derive 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5051 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5052]50535054[[package]]5055name = "sp-block-builder"5056version = "2.0.0-alpha.6"5057source = "registry+https://github.com/rust-lang/crates.io-index"5058checksum = "70049c389c66c4c9207149e2579ce6d752788dee8c596fbda76059f2ddde968f"5059dependencies = [5060 "parity-scale-codec",5061 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5062 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5063 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5064 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5065]50665067[[package]]5068name = "sp-blockchain"5069version = "2.0.0-alpha.6"5070source = "registry+https://github.com/rust-lang/crates.io-index"5071checksum = "3db268602314a0f3a028ef6073185a6a5e0b8e7703da306e72e8a1fcbd2a0c05"5072dependencies = [5073 "derive_more",5074 "log",5075 "lru",5076 "parity-scale-codec",5077 "parking_lot 0.10.2",5078 "sp-block-builder",5079 "sp-consensus",5080 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5081 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5082]50835084[[package]]5085name = "sp-chain-spec"5086version = "2.0.0-alpha.6"5087source = "registry+https://github.com/rust-lang/crates.io-index"5088checksum = "c0d73d557c214577b64a396e54f337403e251339a6599387747ae3570a19bb27"5089dependencies = [5090 "serde",5091 "serde_json",5092]50935094[[package]]5095name = "sp-consensus"5096version = "0.8.0-alpha.6"5097source = "registry+https://github.com/rust-lang/crates.io-index"5098checksum = "6a4eec34198eb14fc2ef129df522e28df5ce6aeea886369ef2eafaaec6bc4fc7"5099dependencies = [5100 "derive_more",5101 "futures 0.3.4",5102 "futures-diagnose",5103 "futures-timer 3.0.2",5104 "libp2p",5105 "log",5106 "parity-scale-codec",5107 "parking_lot 0.10.2",5108 "serde",5109 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5110 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5111 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5112 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5113 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5114 "sp-utils",5115 "sp-version 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5116]51175118[[package]]5119name = "sp-consensus-aura"5120version = "0.8.0-alpha.6"5121source = "registry+https://github.com/rust-lang/crates.io-index"5122checksum = "0a5ffbc4aca29fe7a0f0c419445e34758210dba6418eeb101d60c1e15b27797a"5123dependencies = [5124 "parity-scale-codec",5125 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5126 "sp-application-crypto 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5127 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5128 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5129 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5130 "sp-timestamp",5131]51325133[[package]]5134name = "sp-consensus-babe"5135version = "0.8.0-alpha.6"5136source = "registry+https://github.com/rust-lang/crates.io-index"5137checksum = "ac6108fbecddd95ce8151f09e8ecb0941b3eddcfeefb4c996f27a8a8b4827abd"5138dependencies = [5139 "parity-scale-codec",5140 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5141 "sp-application-crypto 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5142 "sp-consensus",5143 "sp-consensus-vrf",5144 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5145 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5146 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5147 "sp-timestamp",5148]51495150[[package]]5151name = "sp-consensus-vrf"5152version = "0.8.0-alpha.6"5153source = "registry+https://github.com/rust-lang/crates.io-index"5154checksum = "6ba3eef8ab960eb88307f1c4eda1c36dfd95dc933bd6a277d2e26a503a6e5a71"5155dependencies = [5156 "parity-scale-codec",5157 "schnorrkel",5158 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5159 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5160 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5161]51625163[[package]]5164name = "sp-core"5165version = "2.0.0-alpha.6"5166source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5167dependencies = [5168 "base58",5169 "blake2-rfc",5170 "byteorder",5171 "ed25519-dalek",5172 "futures 0.3.4",5173 "hash-db",5174 "hash256-std-hasher",5175 "hex",5176 "impl-serde 0.3.0",5177 "lazy_static",5178 "libsecp256k1",5179 "log",5180 "num-traits 0.2.11",5181 "parity-scale-codec",5182 "parity-util-mem",5183 "parking_lot 0.10.2",5184 "primitive-types",5185 "rand 0.7.3",5186 "regex",5187 "schnorrkel",5188 "serde",5189 "sha2",5190 "sp-debug-derive 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5191 "sp-externalities 0.8.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5192 "sp-runtime-interface 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5193 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5194 "sp-storage 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5195 "substrate-bip39",5196 "tiny-bip39",5197 "tiny-keccak",5198 "twox-hash",5199 "wasmi",5200 "zeroize",5201]52025203[[package]]5204name = "sp-core"5205version = "2.0.0-alpha.6"5206source = "registry+https://github.com/rust-lang/crates.io-index"5207checksum = "0589a2e394a3dcd5dfd258c5f5bf22e6d0f28ffbd5e6d3a09ad702a6dc1c0152"5208dependencies = [5209 "base58",5210 "blake2-rfc",5211 "byteorder",5212 "ed25519-dalek",5213 "futures 0.3.4",5214 "hash-db",5215 "hash256-std-hasher",5216 "hex",5217 "impl-serde 0.3.0",5218 "lazy_static",5219 "libsecp256k1",5220 "log",5221 "num-traits 0.2.11",5222 "parity-scale-codec",5223 "parity-util-mem",5224 "parking_lot 0.10.2",5225 "primitive-types",5226 "rand 0.7.3",5227 "regex",5228 "schnorrkel",5229 "serde",5230 "sha2",5231 "sp-debug-derive 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5232 "sp-externalities 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5233 "sp-runtime-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5234 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5235 "sp-storage 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5236 "substrate-bip39",5237 "tiny-bip39",5238 "tiny-keccak",5239 "twox-hash",5240 "wasmi",5241 "zeroize",5242]52435244[[package]]5245name = "sp-debug-derive"5246version = "2.0.0-alpha.6"5247source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5248dependencies = [5249 "proc-macro2",5250 "quote 1.0.3",5251 "syn 1.0.17",5252]52535254[[package]]5255name = "sp-debug-derive"5256version = "2.0.0-alpha.6"5257source = "registry+https://github.com/rust-lang/crates.io-index"5258checksum = "df968a922a9d3b3f65d37e91e30904876efce88d017d4448c4babc990a738134"5259dependencies = [5260 "proc-macro2",5261 "quote 1.0.3",5262 "syn 1.0.17",5263]52645265[[package]]5266name = "sp-externalities"5267version = "0.8.0-alpha.6"5268source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5269dependencies = [5270 "environmental",5271 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5272 "sp-storage 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5273]52745275[[package]]5276name = "sp-externalities"5277version = "0.8.0-alpha.6"5278source = "registry+https://github.com/rust-lang/crates.io-index"5279checksum = "b06b8ac80a03205205426ae9ef3200133a8ffab4f4f0eeecd3b858034f9e5b02"5280dependencies = [5281 "environmental",5282 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5283 "sp-storage 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5284]52855286[[package]]5287name = "sp-finality-grandpa"5288version = "2.0.0-alpha.6"5289source = "registry+https://github.com/rust-lang/crates.io-index"5290checksum = "9e7107d11f07fb400a0d71838225865e2bf27f79241751ef9ff1501980dd63b3"5291dependencies = [5292 "parity-scale-codec",5293 "serde",5294 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5295 "sp-application-crypto 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5296 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5297 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5298]52995300[[package]]5301name = "sp-finality-tracker"5302version = "2.0.0-alpha.6"5303source = "registry+https://github.com/rust-lang/crates.io-index"5304checksum = "a5f718fb1e75fd137b01b539a200cf5e3cd1e0f1d21dc55a03341d7e25c81624"5305dependencies = [5306 "parity-scale-codec",5307 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5308 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5309]53105311[[package]]5312name = "sp-inherents"5313version = "2.0.0-alpha.6"5314source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5315dependencies = [5316 "derive_more",5317 "parity-scale-codec",5318 "parking_lot 0.10.2",5319 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5320 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5321]53225323[[package]]5324name = "sp-inherents"5325version = "2.0.0-alpha.6"5326source = "registry+https://github.com/rust-lang/crates.io-index"5327checksum = "a14f699ab5cac6c9e80197774f06a4aa38211cb8acdb8660e328775efa2599e1"5328dependencies = [5329 "derive_more",5330 "parity-scale-codec",5331 "parking_lot 0.10.2",5332 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5333 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5334]53355336[[package]]5337name = "sp-io"5338version = "2.0.0-alpha.6"5339source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5340dependencies = [5341 "hash-db",5342 "libsecp256k1",5343 "log",5344 "parity-scale-codec",5345 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5346 "sp-externalities 0.8.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5347 "sp-runtime-interface 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5348 "sp-state-machine 0.8.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5349 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5350 "sp-trie 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5351 "sp-wasm-interface 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5352]53535354[[package]]5355name = "sp-io"5356version = "2.0.0-alpha.6"5357source = "registry+https://github.com/rust-lang/crates.io-index"5358checksum = "20758b1831f75d58c20ca735d34b96dc792ef8264bf4d4a8c476964d90a6aea7"5359dependencies = [5360 "hash-db",5361 "libsecp256k1",5362 "log",5363 "parity-scale-codec",5364 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5365 "sp-externalities 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5366 "sp-runtime-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5367 "sp-state-machine 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5368 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5369 "sp-trie 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5370 "sp-wasm-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5371]53725373[[package]]5374name = "sp-keyring"5375version = "2.0.0-alpha.6"5376source = "registry+https://github.com/rust-lang/crates.io-index"5377checksum = "9f71e65eb13d8a4d320d3785558ac8fc12f8b2bdbfc5268c0e8a5a143d68686e"5378dependencies = [5379 "lazy_static",5380 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5381 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5382 "strum",5383]53845385[[package]]5386name = "sp-offchain"5387version = "2.0.0-alpha.6"5388source = "registry+https://github.com/rust-lang/crates.io-index"5389checksum = "6dfc02ea51f7abe7e8999658a8a41693426f14e66cff6cc5af989888289ad0fc"5390dependencies = [5391 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5392 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5393]53945395[[package]]5396name = "sp-panic-handler"5397version = "2.0.0-alpha.6"5398source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5399dependencies = [5400 "backtrace",5401 "log",5402]54035404[[package]]5405name = "sp-panic-handler"5406version = "2.0.0-alpha.6"5407source = "registry+https://github.com/rust-lang/crates.io-index"5408checksum = "ef909e5ea664bce0bca723baf352c75125e4ed017843240e91d718df4720e1e4"5409dependencies = [5410 "backtrace",5411 "log",5412]54135414[[package]]5415name = "sp-rpc"5416version = "2.0.0-alpha.6"5417source = "registry+https://github.com/rust-lang/crates.io-index"5418checksum = "9d29a58ef51317f96eec408b40c604ccfe8c7c3b9ecc2636e2a9c84a79fae53a"5419dependencies = [5420 "serde",5421 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5422]54235424[[package]]5425name = "sp-runtime"5426version = "2.0.0-alpha.6"5427source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5428dependencies = [5429 "hash256-std-hasher",5430 "impl-trait-for-tuples",5431 "log",5432 "parity-scale-codec",5433 "parity-util-mem",5434 "paste",5435 "rand 0.7.3",5436 "serde",5437 "sp-application-crypto 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5438 "sp-arithmetic 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5439 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5440 "sp-inherents 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5441 "sp-io 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5442 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5443]54445445[[package]]5446name = "sp-runtime"5447version = "2.0.0-alpha.6"5448source = "registry+https://github.com/rust-lang/crates.io-index"5449checksum = "cb1f98caf8bb20c7d69ba3097f3283ebc615f4a33e79ae0ca5934364be5776ac"5450dependencies = [5451 "hash256-std-hasher",5452 "impl-trait-for-tuples",5453 "log",5454 "parity-scale-codec",5455 "parity-util-mem",5456 "paste",5457 "rand 0.7.3",5458 "serde",5459 "sp-application-crypto 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5460 "sp-arithmetic 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5461 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5462 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5463 "sp-io 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5464 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5465]54665467[[package]]5468name = "sp-runtime-interface"5469version = "2.0.0-alpha.6"5470source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5471dependencies = [5472 "parity-scale-codec",5473 "primitive-types",5474 "sp-externalities 0.8.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5475 "sp-runtime-interface-proc-macro 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5476 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5477 "sp-wasm-interface 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5478 "static_assertions",5479]54805481[[package]]5482name = "sp-runtime-interface"5483version = "2.0.0-alpha.6"5484source = "registry+https://github.com/rust-lang/crates.io-index"5485checksum = "289491386162a8d867d219f4f4dd3a7c11181c8ee9957e41b8747b555a9f4433"5486dependencies = [5487 "parity-scale-codec",5488 "primitive-types",5489 "sp-externalities 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5490 "sp-runtime-interface-proc-macro 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5491 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5492 "sp-wasm-interface 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5493 "static_assertions",5494]54955496[[package]]5497name = "sp-runtime-interface-proc-macro"5498version = "2.0.0-alpha.6"5499source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5500dependencies = [5501 "Inflector",5502 "proc-macro-crate",5503 "proc-macro2",5504 "quote 1.0.3",5505 "syn 1.0.17",5506]55075508[[package]]5509name = "sp-runtime-interface-proc-macro"5510version = "2.0.0-alpha.6"5511source = "registry+https://github.com/rust-lang/crates.io-index"5512checksum = "609529717f6c9cdd5bb6329c4ca9ddb1d36f698bd1f5dd2bdf0e94c064d7cc5b"5513dependencies = [5514 "Inflector",5515 "proc-macro-crate",5516 "proc-macro2",5517 "quote 1.0.3",5518 "syn 1.0.17",5519]55205521[[package]]5522name = "sp-sandbox"5523version = "0.8.0-alpha.6"5524source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5525dependencies = [5526 "parity-scale-codec",5527 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5528 "sp-io 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5529 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5530 "sp-wasm-interface 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5531 "wasmi",5532]55335534[[package]]5535name = "sp-serializer"5536version = "2.0.0-alpha.6"5537source = "registry+https://github.com/rust-lang/crates.io-index"5538checksum = "f7b306e15eb54af25aef9d752c22778da3fa115945e47bf047545be2847cf814"5539dependencies = [5540 "serde",5541 "serde_json",5542]55435544[[package]]5545name = "sp-session"5546version = "2.0.0-alpha.6"5547source = "registry+https://github.com/rust-lang/crates.io-index"5548checksum = "6fca3ff8ddd14c5928536483d4b393bb795d55dcb5b576b1dceb3f5829216c76"5549dependencies = [5550 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5551 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5552 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5553 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5554]55555556[[package]]5557name = "sp-staking"5558version = "2.0.0-alpha.6"5559source = "registry+https://github.com/rust-lang/crates.io-index"5560checksum = "61d7105e78848b8a8f6af3539a0cf7d9627b78a8776f61f43769da6406937ea9"5561dependencies = [5562 "parity-scale-codec",5563 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5564 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5565]55665567[[package]]5568name = "sp-state-machine"5569version = "0.8.0-alpha.6"5570source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5571dependencies = [5572 "hash-db",5573 "log",5574 "num-traits 0.2.11",5575 "parity-scale-codec",5576 "parking_lot 0.10.2",5577 "rand 0.7.3",5578 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5579 "sp-externalities 0.8.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5580 "sp-panic-handler 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5581 "sp-trie 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5582 "trie-db",5583 "trie-root",5584]55855586[[package]]5587name = "sp-state-machine"5588version = "0.8.0-alpha.6"5589source = "registry+https://github.com/rust-lang/crates.io-index"5590checksum = "bd5de28eb08ce52f45ed32257b324766183dfe4d74a29242b934365ff80911ca"5591dependencies = [5592 "hash-db",5593 "log",5594 "num-traits 0.2.11",5595 "parity-scale-codec",5596 "parking_lot 0.10.2",5597 "rand 0.7.3",5598 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5599 "sp-externalities 0.8.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5600 "sp-panic-handler 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5601 "sp-trie 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5602 "trie-db",5603 "trie-root",5604]56055606[[package]]5607name = "sp-std"5608version = "2.0.0-alpha.6"5609source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"56105611[[package]]5612name = "sp-std"5613version = "2.0.0-alpha.6"5614source = "registry+https://github.com/rust-lang/crates.io-index"5615checksum = "eca806523d5df8082c89da042e31292f0c8f6e6ad9c3cfc312edfffde6a08490"56165617[[package]]5618name = "sp-storage"5619version = "2.0.0-alpha.6"5620source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5621dependencies = [5622 "impl-serde 0.2.3",5623 "serde",5624 "sp-debug-derive 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5625 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5626]56275628[[package]]5629name = "sp-storage"5630version = "2.0.0-alpha.6"5631source = "registry+https://github.com/rust-lang/crates.io-index"5632checksum = "e2cb515df8b37fbdbb6769d2e992748b6134d592ec3b795b8e672621d754f94b"5633dependencies = [5634 "impl-serde 0.2.3",5635 "serde",5636 "sp-debug-derive 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5637 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5638]56395640[[package]]5641name = "sp-timestamp"5642version = "2.0.0-alpha.6"5643source = "registry+https://github.com/rust-lang/crates.io-index"5644checksum = "bd289fc7dbbae54cfe4db93a204df6371d6f3b5b8d5819fa7287e7d44a83eb86"5645dependencies = [5646 "impl-trait-for-tuples",5647 "parity-scale-codec",5648 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5649 "sp-inherents 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5650 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5651 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5652 "wasm-timer",5653]56545655[[package]]5656name = "sp-transaction-pool"5657version = "2.0.0-alpha.6"5658source = "registry+https://github.com/rust-lang/crates.io-index"5659checksum = "f62c89a439db3f248980da189811e45666b758bc3cb8a9eb587d73d2e91b3403"5660dependencies = [5661 "derive_more",5662 "futures 0.3.4",5663 "log",5664 "parity-scale-codec",5665 "serde",5666 "sp-api 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5667 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5668 "sp-utils",5669]56705671[[package]]5672name = "sp-trie"5673version = "2.0.0-alpha.6"5674source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5675dependencies = [5676 "hash-db",5677 "memory-db",5678 "parity-scale-codec",5679 "sp-core 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5680 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5681 "trie-db",5682 "trie-root",5683]56845685[[package]]5686name = "sp-trie"5687version = "2.0.0-alpha.6"5688source = "registry+https://github.com/rust-lang/crates.io-index"5689checksum = "4194817027eb92525e9279ec651160d709340d74b707f7648654c8eb2a626be3"5690dependencies = [5691 "hash-db",5692 "memory-db",5693 "parity-scale-codec",5694 "sp-core 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5695 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5696 "trie-db",5697 "trie-root",5698]56995700[[package]]5701name = "sp-utils"5702version = "2.0.0-alpha.6"5703source = "registry+https://github.com/rust-lang/crates.io-index"5704checksum = "ae3cd7ac8f6d105dd1d9483f7d2d20e0e77cecdfe0a7fe6d0bd0616cebb80ce3"5705dependencies = [5706 "futures 0.3.4",5707 "futures-core",5708 "lazy_static",5709 "prometheus",5710]57115712[[package]]5713name = "sp-version"5714version = "2.0.0-alpha.6"5715source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5716dependencies = [5717 "impl-serde 0.2.3",5718 "parity-scale-codec",5719 "serde",5720 "sp-runtime 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5721 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5722]57235724[[package]]5725name = "sp-version"5726version = "2.0.0-alpha.6"5727source = "registry+https://github.com/rust-lang/crates.io-index"5728checksum = "319c37fa4aa91ee9ee9c20a3fab0d5b6b1bbe1dea997319c303f28a62f49765d"5729dependencies = [5730 "impl-serde 0.2.3",5731 "parity-scale-codec",5732 "serde",5733 "sp-runtime 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5734 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5735]57365737[[package]]5738name = "sp-wasm-interface"5739version = "2.0.0-alpha.6"5740source = "git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6#67f354f57e738fa575775f7fa0fb903e8972182b"5741dependencies = [5742 "impl-trait-for-tuples",5743 "parity-scale-codec",5744 "sp-std 2.0.0-alpha.6 (git+https://github.com/paritytech/substrate.git?tag=v2.0.0-alpha.6)",5745 "wasmi",5746]57475748[[package]]5749name = "sp-wasm-interface"5750version = "2.0.0-alpha.6"5751source = "registry+https://github.com/rust-lang/crates.io-index"5752checksum = "7584168f2785f6676727545a31a3cd97159d7023d968540b4881a98d73991900"5753dependencies = [5754 "impl-trait-for-tuples",5755 "parity-scale-codec",5756 "sp-std 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)",5757 "wasmi",5758]57595760[[package]]5761name = "spin"5762version = "0.5.2"5763source = "registry+https://github.com/rust-lang/crates.io-index"5764checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"57655766[[package]]5767name = "stable_deref_trait"5768version = "1.1.1"5769source = "registry+https://github.com/rust-lang/crates.io-index"5770checksum = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"57715772[[package]]5773name = "static_assertions"5774version = "1.1.0"5775source = "registry+https://github.com/rust-lang/crates.io-index"5776checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"57775778[[package]]5779name = "statrs"5780version = "0.10.0"5781source = "registry+https://github.com/rust-lang/crates.io-index"5782checksum = "10102ac8d55e35db2b3fafc26f81ba8647da2e15879ab686a67e6d19af2685e8"5783dependencies = [5784 "rand 0.5.6",5785]57865787[[package]]5788name = "string"5789version = "0.2.1"5790source = "registry+https://github.com/rust-lang/crates.io-index"5791checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"5792dependencies = [5793 "bytes 0.4.12",5794]57955796[[package]]5797name = "strsim"5798version = "0.8.0"5799source = "registry+https://github.com/rust-lang/crates.io-index"5800checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"58015802[[package]]5803name = "structopt"5804version = "0.3.13"5805source = "registry+https://github.com/rust-lang/crates.io-index"5806checksum = "ff6da2e8d107dfd7b74df5ef4d205c6aebee0706c647f6bc6a2d5789905c00fb"5807dependencies = [5808 "clap",5809 "lazy_static",5810 "structopt-derive",5811]58125813[[package]]5814name = "structopt-derive"5815version = "0.4.6"5816source = "registry+https://github.com/rust-lang/crates.io-index"5817checksum = "a489c87c08fbaf12e386665109dd13470dcc9c4583ea3e10dd2b4523e5ebd9ac"5818dependencies = [5819 "heck",5820 "proc-macro-error",5821 "proc-macro2",5822 "quote 1.0.3",5823 "syn 1.0.17",5824]58255826[[package]]5827name = "strum"5828version = "0.16.0"5829source = "registry+https://github.com/rust-lang/crates.io-index"5830checksum = "6138f8f88a16d90134763314e3fc76fa3ed6a7db4725d6acf9a3ef95a3188d22"5831dependencies = [5832 "strum_macros",5833]58345835[[package]]5836name = "strum_macros"5837version = "0.16.0"5838source = "registry+https://github.com/rust-lang/crates.io-index"5839checksum = "0054a7df764039a6cd8592b9de84be4bec368ff081d203a7d5371cbfa8e65c81"5840dependencies = [5841 "heck",5842 "proc-macro2",5843 "quote 1.0.3",5844 "syn 1.0.17",5845]58465847[[package]]5848name = "substrate-bip39"5849version = "0.4.1"5850source = "registry+https://github.com/rust-lang/crates.io-index"5851checksum = "c004e8166d6e0aa3a9d5fa673e5b7098ff25f930de1013a21341988151e681bb"5852dependencies = [5853 "hmac",5854 "pbkdf2",5855 "schnorrkel",5856 "sha2",5857]58585859[[package]]5860name = "substrate-build-script-utils"5861version = "2.0.0-alpha.6"5862source = "registry+https://github.com/rust-lang/crates.io-index"5863checksum = "a0abd8ab46d560d0d5cffd8d016c6b75eb5df91885b1b226b819ab600f02237c"5864dependencies = [5865 "platforms",5866]58675868[[package]]5869name = "substrate-prometheus-endpoint"5870version = "0.8.0-alpha.6"5871source = "registry+https://github.com/rust-lang/crates.io-index"5872checksum = "61cad984ef1fec55fe46843630566f98cde0ad3de07efbbf8a4f857b36fedf30"5873dependencies = [5874 "async-std",5875 "derive_more",5876 "futures-util",5877 "hyper 0.13.4",5878 "log",5879 "prometheus",5880 "tokio 0.2.18",5881]58825883[[package]]5884name = "substrate-wasm-builder-runner"5885version = "1.0.5"5886source = "registry+https://github.com/rust-lang/crates.io-index"5887checksum = "e30c70de7e7d5fd404fe26db1e7a4d6b553e2760b1ac490f249c04a960c483b8"58885889[[package]]5890name = "subtle"5891version = "1.0.0"5892source = "registry+https://github.com/rust-lang/crates.io-index"5893checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"58945895[[package]]5896name = "subtle"5897version = "2.2.2"5898source = "registry+https://github.com/rust-lang/crates.io-index"5899checksum = "7c65d530b10ccaeac294f349038a597e435b18fb456aadd0840a623f83b9e941"59005901[[package]]5902name = "syn"5903version = "0.11.11"5904source = "registry+https://github.com/rust-lang/crates.io-index"5905checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"5906dependencies = [5907 "quote 0.3.15",5908 "synom",5909 "unicode-xid 0.0.4",5910]59115912[[package]]5913name = "syn"5914version = "1.0.17"5915source = "registry+https://github.com/rust-lang/crates.io-index"5916checksum = "0df0eb663f387145cab623dea85b09c2c5b4b0aef44e945d928e682fce71bb03"5917dependencies = [5918 "proc-macro2",5919 "quote 1.0.3",5920 "unicode-xid 0.2.0",5921]59225923[[package]]5924name = "syn-mid"5925version = "0.5.0"5926source = "registry+https://github.com/rust-lang/crates.io-index"5927checksum = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a"5928dependencies = [5929 "proc-macro2",5930 "quote 1.0.3",5931 "syn 1.0.17",5932]59335934[[package]]5935name = "synom"5936version = "0.11.3"5937source = "registry+https://github.com/rust-lang/crates.io-index"5938checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"5939dependencies = [5940 "unicode-xid 0.0.4",5941]59425943[[package]]5944name = "synstructure"5945version = "0.12.3"5946source = "registry+https://github.com/rust-lang/crates.io-index"5947checksum = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545"5948dependencies = [5949 "proc-macro2",5950 "quote 1.0.3",5951 "syn 1.0.17",5952 "unicode-xid 0.2.0",5953]59545955[[package]]5956name = "sysinfo"5957version = "0.12.0"5958source = "registry+https://github.com/rust-lang/crates.io-index"5959checksum = "7ccb41798287e8e299a701b5560d886d6ca2c3e7115e9ea2cb68c123aec339b7"5960dependencies = [5961 "cfg-if",5962 "doc-comment",5963 "libc",5964 "ntapi",5965 "once_cell",5966 "rayon",5967 "winapi 0.3.8",5968]59695970[[package]]5971name = "take_mut"5972version = "0.2.2"5973source = "registry+https://github.com/rust-lang/crates.io-index"5974checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"59755976[[package]]5977name = "tempfile"5978version = "3.1.0"5979source = "registry+https://github.com/rust-lang/crates.io-index"5980checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"5981dependencies = [5982 "cfg-if",5983 "libc",5984 "rand 0.7.3",5985 "redox_syscall",5986 "remove_dir_all",5987 "winapi 0.3.8",5988]59895990[[package]]5991name = "termcolor"5992version = "1.1.0"5993source = "registry+https://github.com/rust-lang/crates.io-index"5994checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"5995dependencies = [5996 "winapi-util",5997]59985999[[package]]6000name = "textwrap"6001version = "0.11.0"6002source = "registry+https://github.com/rust-lang/crates.io-index"6003checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"6004dependencies = [6005 "unicode-width",6006]60076008[[package]]6009name = "thiserror"6010version = "1.0.15"6011source = "registry+https://github.com/rust-lang/crates.io-index"6012checksum = "54b3d3d2ff68104100ab257bb6bb0cb26c901abe4bd4ba15961f3bf867924012"6013dependencies = [6014 "thiserror-impl",6015]60166017[[package]]6018name = "thiserror-impl"6019version = "1.0.15"6020source = "registry+https://github.com/rust-lang/crates.io-index"6021checksum = "ca972988113b7715266f91250ddb98070d033c62a011fa0fcc57434a649310dd"6022dependencies = [6023 "proc-macro2",6024 "quote 1.0.3",6025 "syn 1.0.17",6026]60276028[[package]]6029name = "thread_local"6030version = "1.0.1"6031source = "registry+https://github.com/rust-lang/crates.io-index"6032checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"6033dependencies = [6034 "lazy_static",6035]60366037[[package]]6038name = "threadpool"6039version = "1.7.1"6040source = "registry+https://github.com/rust-lang/crates.io-index"6041checksum = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865"6042dependencies = [6043 "num_cpus",6044]60456046[[package]]6047name = "time"6048version = "0.1.42"6049source = "registry+https://github.com/rust-lang/crates.io-index"6050checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"6051dependencies = [6052 "libc",6053 "redox_syscall",6054 "winapi 0.3.8",6055]60566057[[package]]6058name = "tiny-bip39"6059version = "0.7.3"6060source = "registry+https://github.com/rust-lang/crates.io-index"6061checksum = "b0165e045cc2ae1660270ca65e1676dbaab60feb0f91b10f7d0665e9b47e31f2"6062dependencies = [6063 "failure",6064 "hmac",6065 "once_cell",6066 "pbkdf2",6067 "rand 0.7.3",6068 "rustc-hash",6069 "sha2",6070 "unicode-normalization",6071]60726073[[package]]6074name = "tiny-keccak"6075version = "2.0.2"6076source = "registry+https://github.com/rust-lang/crates.io-index"6077checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"6078dependencies = [6079 "crunchy",6080]60816082[[package]]6083name = "tokio"6084version = "0.1.22"6085source = "registry+https://github.com/rust-lang/crates.io-index"6086checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"6087dependencies = [6088 "bytes 0.4.12",6089 "futures 0.1.29",6090 "mio",6091 "num_cpus",6092 "tokio-codec",6093 "tokio-current-thread",6094 "tokio-executor 0.1.10",6095 "tokio-fs",6096 "tokio-io",6097 "tokio-reactor",6098 "tokio-sync 0.1.8",6099 "tokio-tcp",6100 "tokio-threadpool",6101 "tokio-timer",6102 "tokio-udp",6103 "tokio-uds",6104]61056106[[package]]6107name = "tokio"6108version = "0.2.18"6109source = "registry+https://github.com/rust-lang/crates.io-index"6110checksum = "34ef16d072d2b6dc8b4a56c70f5c5ced1a37752116f8e7c1e80c659aa7cb6713"6111dependencies = [6112 "bytes 0.5.4",6113 "fnv",6114 "futures-core",6115 "iovec",6116 "lazy_static",6117 "libc",6118 "memchr",6119 "mio",6120 "mio-uds",6121 "num_cpus",6122 "pin-project-lite",6123 "signal-hook-registry",6124 "slab",6125 "winapi 0.3.8",6126]61276128[[package]]6129name = "tokio-buf"6130version = "0.1.1"6131source = "registry+https://github.com/rust-lang/crates.io-index"6132checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"6133dependencies = [6134 "bytes 0.4.12",6135 "either",6136 "futures 0.1.29",6137]61386139[[package]]6140name = "tokio-codec"6141version = "0.1.2"6142source = "registry+https://github.com/rust-lang/crates.io-index"6143checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b"6144dependencies = [6145 "bytes 0.4.12",6146 "futures 0.1.29",6147 "tokio-io",6148]61496150[[package]]6151name = "tokio-current-thread"6152version = "0.1.7"6153source = "registry+https://github.com/rust-lang/crates.io-index"6154checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"6155dependencies = [6156 "futures 0.1.29",6157 "tokio-executor 0.1.10",6158]61596160[[package]]6161name = "tokio-executor"6162version = "0.1.10"6163source = "registry+https://github.com/rust-lang/crates.io-index"6164checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"6165dependencies = [6166 "crossbeam-utils",6167 "futures 0.1.29",6168]61696170[[package]]6171name = "tokio-executor"6172version = "0.2.0-alpha.6"6173source = "registry+https://github.com/rust-lang/crates.io-index"6174checksum = "9ee9ceecf69145923834ea73f32ba40c790fd877b74a7817dd0b089f1eb9c7c8"6175dependencies = [6176 "futures-util-preview",6177 "lazy_static",6178 "tokio-sync 0.2.0-alpha.6",6179]61806181[[package]]6182name = "tokio-fs"6183version = "0.1.7"6184source = "registry+https://github.com/rust-lang/crates.io-index"6185checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4"6186dependencies = [6187 "futures 0.1.29",6188 "tokio-io",6189 "tokio-threadpool",6190]61916192[[package]]6193name = "tokio-io"6194version = "0.1.13"6195source = "registry+https://github.com/rust-lang/crates.io-index"6196checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"6197dependencies = [6198 "bytes 0.4.12",6199 "futures 0.1.29",6200 "log",6201]62026203[[package]]6204name = "tokio-reactor"6205version = "0.1.12"6206source = "registry+https://github.com/rust-lang/crates.io-index"6207checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"6208dependencies = [6209 "crossbeam-utils",6210 "futures 0.1.29",6211 "lazy_static",6212 "log",6213 "mio",6214 "num_cpus",6215 "parking_lot 0.9.0",6216 "slab",6217 "tokio-executor 0.1.10",6218 "tokio-io",6219 "tokio-sync 0.1.8",6220]62216222[[package]]6223name = "tokio-rustls"6224version = "0.13.0"6225source = "registry+https://github.com/rust-lang/crates.io-index"6226checksum = "4adb8b3e5f86b707f1b54e7c15b6de52617a823608ccda98a15d3a24222f265a"6227dependencies = [6228 "futures-core",6229 "rustls",6230 "tokio 0.2.18",6231 "webpki",6232]62336234[[package]]6235name = "tokio-sync"6236version = "0.1.8"6237source = "registry+https://github.com/rust-lang/crates.io-index"6238checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"6239dependencies = [6240 "fnv",6241 "futures 0.1.29",6242]62436244[[package]]6245name = "tokio-sync"6246version = "0.2.0-alpha.6"6247source = "registry+https://github.com/rust-lang/crates.io-index"6248checksum = "4f1aaeb685540f7407ea0e27f1c9757d258c7c6bf4e3eb19da6fc59b747239d2"6249dependencies = [6250 "fnv",6251 "futures-core-preview",6252 "futures-util-preview",6253]62546255[[package]]6256name = "tokio-tcp"6257version = "0.1.4"6258source = "registry+https://github.com/rust-lang/crates.io-index"6259checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"6260dependencies = [6261 "bytes 0.4.12",6262 "futures 0.1.29",6263 "iovec",6264 "mio",6265 "tokio-io",6266 "tokio-reactor",6267]62686269[[package]]6270name = "tokio-threadpool"6271version = "0.1.18"6272source = "registry+https://github.com/rust-lang/crates.io-index"6273checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"6274dependencies = [6275 "crossbeam-deque",6276 "crossbeam-queue",6277 "crossbeam-utils",6278 "futures 0.1.29",6279 "lazy_static",6280 "log",6281 "num_cpus",6282 "slab",6283 "tokio-executor 0.1.10",6284]62856286[[package]]6287name = "tokio-timer"6288version = "0.2.13"6289source = "registry+https://github.com/rust-lang/crates.io-index"6290checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"6291dependencies = [6292 "crossbeam-utils",6293 "futures 0.1.29",6294 "slab",6295 "tokio-executor 0.1.10",6296]62976298[[package]]6299name = "tokio-udp"6300version = "0.1.6"6301source = "registry+https://github.com/rust-lang/crates.io-index"6302checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82"6303dependencies = [6304 "bytes 0.4.12",6305 "futures 0.1.29",6306 "log",6307 "mio",6308 "tokio-codec",6309 "tokio-io",6310 "tokio-reactor",6311]63126313[[package]]6314name = "tokio-uds"6315version = "0.2.6"6316source = "registry+https://github.com/rust-lang/crates.io-index"6317checksum = "5076db410d6fdc6523df7595447629099a1fdc47b3d9f896220780fa48faf798"6318dependencies = [6319 "bytes 0.4.12",6320 "futures 0.1.29",6321 "iovec",6322 "libc",6323 "log",6324 "mio",6325 "mio-uds",6326 "tokio-codec",6327 "tokio-io",6328 "tokio-reactor",6329]63306331[[package]]6332name = "tokio-util"6333version = "0.3.1"6334source = "registry+https://github.com/rust-lang/crates.io-index"6335checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"6336dependencies = [6337 "bytes 0.5.4",6338 "futures-core",6339 "futures-sink",6340 "log",6341 "pin-project-lite",6342 "tokio 0.2.18",6343]63446345[[package]]6346name = "toml"6347version = "0.5.6"6348source = "registry+https://github.com/rust-lang/crates.io-index"6349checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"6350dependencies = [6351 "serde",6352]63536354[[package]]6355name = "tower-service"6356version = "0.3.0"6357source = "registry+https://github.com/rust-lang/crates.io-index"6358checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"63596360[[package]]6361name = "tracing"6362version = "0.1.13"6363source = "registry+https://github.com/rust-lang/crates.io-index"6364checksum = "1721cc8cf7d770cc4257872507180f35a4797272f5962f24c806af9e7faf52ab"6365dependencies = [6366 "cfg-if",6367 "tracing-attributes",6368 "tracing-core",6369]63706371[[package]]6372name = "tracing-attributes"6373version = "0.1.7"6374source = "registry+https://github.com/rust-lang/crates.io-index"6375checksum = "7fbad39da2f9af1cae3016339ad7f2c7a9e870f12e8fd04c4fd7ef35b30c0d2b"6376dependencies = [6377 "quote 1.0.3",6378 "syn 1.0.17",6379]63806381[[package]]6382name = "tracing-core"6383version = "0.1.10"6384source = "registry+https://github.com/rust-lang/crates.io-index"6385checksum = "0aa83a9a47081cd522c09c81b31aec2c9273424976f922ad61c053b58350b715"6386dependencies = [6387 "lazy_static",6388]63896390[[package]]6391name = "trie-db"6392version = "0.20.1"6393source = "registry+https://github.com/rust-lang/crates.io-index"6394checksum = "bcc309f34008563989045a4c4dbcc5770467f3a3785ee80a9b5cc0d83362475f"6395dependencies = [6396 "hash-db",6397 "hashbrown",6398 "log",6399 "rustc-hex",6400 "smallvec 1.3.0",6401]64026403[[package]]6404name = "trie-root"6405version = "0.16.0"6406source = "registry+https://github.com/rust-lang/crates.io-index"6407checksum = "652931506d2c1244d7217a70b99f56718a7b4161b37f04e7cd868072a99f68cd"6408dependencies = [6409 "hash-db",6410]64116412[[package]]6413name = "try-lock"6414version = "0.2.2"6415source = "registry+https://github.com/rust-lang/crates.io-index"6416checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382"64176418[[package]]6419name = "twox-hash"6420version = "1.5.0"6421source = "registry+https://github.com/rust-lang/crates.io-index"6422checksum = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56"6423dependencies = [6424 "rand 0.7.3",6425]64266427[[package]]6428name = "typenum"6429version = "1.12.0"6430source = "registry+https://github.com/rust-lang/crates.io-index"6431checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"64326433[[package]]6434name = "uint"6435version = "0.8.2"6436source = "registry+https://github.com/rust-lang/crates.io-index"6437checksum = "e75a4cdd7b87b28840dba13c483b9a88ee6bbf16ba5c951ee1ecfcf723078e0d"6438dependencies = [6439 "byteorder",6440 "crunchy",6441 "rustc-hex",6442 "static_assertions",6443]64446445[[package]]6446name = "unicase"6447version = "2.6.0"6448source = "registry+https://github.com/rust-lang/crates.io-index"6449checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"6450dependencies = [6451 "version_check",6452]64536454[[package]]6455name = "unicode-bidi"6456version = "0.3.4"6457source = "registry+https://github.com/rust-lang/crates.io-index"6458checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"6459dependencies = [6460 "matches",6461]64626463[[package]]6464name = "unicode-normalization"6465version = "0.1.12"6466source = "registry+https://github.com/rust-lang/crates.io-index"6467checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"6468dependencies = [6469 "smallvec 1.3.0",6470]64716472[[package]]6473name = "unicode-segmentation"6474version = "1.6.0"6475source = "registry+https://github.com/rust-lang/crates.io-index"6476checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"64776478[[package]]6479name = "unicode-width"6480version = "0.1.7"6481source = "registry+https://github.com/rust-lang/crates.io-index"6482checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"64836484[[package]]6485name = "unicode-xid"6486version = "0.0.4"6487source = "registry+https://github.com/rust-lang/crates.io-index"6488checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"64896490[[package]]6491name = "unicode-xid"6492version = "0.2.0"6493source = "registry+https://github.com/rust-lang/crates.io-index"6494checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"64956496[[package]]6497name = "unsigned-varint"6498version = "0.3.3"6499source = "registry+https://github.com/rust-lang/crates.io-index"6500checksum = "f67332660eb59a6f1eb24ff1220c9e8d01738a8503c6002e30bcfe4bd9f2b4a9"6501dependencies = [6502 "bytes 0.5.4",6503 "futures-io",6504 "futures-util",6505 "futures_codec",6506]65076508[[package]]6509name = "untrusted"6510version = "0.7.0"6511source = "registry+https://github.com/rust-lang/crates.io-index"6512checksum = "60369ef7a31de49bcb3f6ca728d4ba7300d9a1658f94c727d4cab8c8d9f4aece"65136514[[package]]6515name = "url"6516version = "1.7.2"6517source = "registry+https://github.com/rust-lang/crates.io-index"6518checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"6519dependencies = [6520 "idna 0.1.5",6521 "matches",6522 "percent-encoding 1.0.1",6523]65246525[[package]]6526name = "url"6527version = "2.1.1"6528source = "registry+https://github.com/rust-lang/crates.io-index"6529checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"6530dependencies = [6531 "idna 0.2.0",6532 "matches",6533 "percent-encoding 2.1.0",6534]65356536[[package]]6537name = "vcpkg"6538version = "0.2.8"6539source = "registry+https://github.com/rust-lang/crates.io-index"6540checksum = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168"65416542[[package]]6543name = "vec_map"6544version = "0.8.1"6545source = "registry+https://github.com/rust-lang/crates.io-index"6546checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"65476548[[package]]6549name = "version_check"6550version = "0.9.1"6551source = "registry+https://github.com/rust-lang/crates.io-index"6552checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"65536554[[package]]6555name = "void"6556version = "1.0.2"6557source = "registry+https://github.com/rust-lang/crates.io-index"6558checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"65596560[[package]]6561name = "want"6562version = "0.2.0"6563source = "registry+https://github.com/rust-lang/crates.io-index"6564checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"6565dependencies = [6566 "futures 0.1.29",6567 "log",6568 "try-lock",6569]65706571[[package]]6572name = "want"6573version = "0.3.0"6574source = "registry+https://github.com/rust-lang/crates.io-index"6575checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"6576dependencies = [6577 "log",6578 "try-lock",6579]65806581[[package]]6582name = "wasi"6583version = "0.9.0+wasi-snapshot-preview1"6584source = "registry+https://github.com/rust-lang/crates.io-index"6585checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"65866587[[package]]6588name = "wasm-bindgen"6589version = "0.2.60"6590source = "registry+https://github.com/rust-lang/crates.io-index"6591checksum = "2cc57ce05287f8376e998cbddfb4c8cb43b84a7ec55cf4551d7c00eef317a47f"6592dependencies = [6593 "cfg-if",6594 "wasm-bindgen-macro",6595]65966597[[package]]6598name = "wasm-bindgen-backend"6599version = "0.2.60"6600source = "registry+https://github.com/rust-lang/crates.io-index"6601checksum = "d967d37bf6c16cca2973ca3af071d0a2523392e4a594548155d89a678f4237cd"6602dependencies = [6603 "bumpalo",6604 "lazy_static",6605 "log",6606 "proc-macro2",6607 "quote 1.0.3",6608 "syn 1.0.17",6609 "wasm-bindgen-shared",6610]66116612[[package]]6613name = "wasm-bindgen-futures"6614version = "0.4.10"6615source = "registry+https://github.com/rust-lang/crates.io-index"6616checksum = "7add542ea1ac7fdaa9dc25e031a6af33b7d63376292bd24140c637d00d1c312a"6617dependencies = [6618 "cfg-if",6619 "js-sys",6620 "wasm-bindgen",6621 "web-sys",6622]66236624[[package]]6625name = "wasm-bindgen-macro"6626version = "0.2.60"6627source = "registry+https://github.com/rust-lang/crates.io-index"6628checksum = "8bd151b63e1ea881bb742cd20e1d6127cef28399558f3b5d415289bc41eee3a4"6629dependencies = [6630 "quote 1.0.3",6631 "wasm-bindgen-macro-support",6632]66336634[[package]]6635name = "wasm-bindgen-macro-support"6636version = "0.2.60"6637source = "registry+https://github.com/rust-lang/crates.io-index"6638checksum = "d68a5b36eef1be7868f668632863292e37739656a80fc4b9acec7b0bd35a4931"6639dependencies = [6640 "proc-macro2",6641 "quote 1.0.3",6642 "syn 1.0.17",6643 "wasm-bindgen-backend",6644 "wasm-bindgen-shared",6645]66466647[[package]]6648name = "wasm-bindgen-shared"6649version = "0.2.60"6650source = "registry+https://github.com/rust-lang/crates.io-index"6651checksum = "daf76fe7d25ac79748a37538b7daeed1c7a6867c92d3245c12c6222e4a20d639"66526653[[package]]6654name = "wasm-timer"6655version = "0.2.4"6656source = "registry+https://github.com/rust-lang/crates.io-index"6657checksum = "324c5e65a08699c9c4334ba136597ab22b85dccd4b65dd1e36ccf8f723a95b54"6658dependencies = [6659 "futures 0.3.4",6660 "js-sys",6661 "parking_lot 0.9.0",6662 "pin-utils",6663 "send_wrapper",6664 "wasm-bindgen",6665 "wasm-bindgen-futures",6666 "web-sys",6667]66686669[[package]]6670name = "wasmi"6671version = "0.6.2"6672source = "registry+https://github.com/rust-lang/crates.io-index"6673checksum = "bf617d864d25af3587aa745529f7aaa541066c876d57e050c0d0c85c61c92aff"6674dependencies = [6675 "libc",6676 "memory_units",6677 "num-rational",6678 "num-traits 0.2.11",6679 "parity-wasm",6680 "wasmi-validation",6681]66826683[[package]]6684name = "wasmi-validation"6685version = "0.3.0"6686source = "registry+https://github.com/rust-lang/crates.io-index"6687checksum = "ea78c597064ba73596099281e2f4cfc019075122a65cdda3205af94f0b264d93"6688dependencies = [6689 "parity-wasm",6690]66916692[[package]]6693name = "web-sys"6694version = "0.3.37"6695source = "registry+https://github.com/rust-lang/crates.io-index"6696checksum = "2d6f51648d8c56c366144378a33290049eafdd784071077f6fe37dae64c1c4cb"6697dependencies = [6698 "js-sys",6699 "wasm-bindgen",6700]67016702[[package]]6703name = "webpki"6704version = "0.21.2"6705source = "registry+https://github.com/rust-lang/crates.io-index"6706checksum = "f1f50e1972865d6b1adb54167d1c8ed48606004c2c9d0ea5f1eeb34d95e863ef"6707dependencies = [6708 "ring",6709 "untrusted",6710]67116712[[package]]6713name = "webpki-roots"6714version = "0.18.0"6715source = "registry+https://github.com/rust-lang/crates.io-index"6716checksum = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4"6717dependencies = [6718 "webpki",6719]67206721[[package]]6722name = "webpki-roots"6723version = "0.19.0"6724source = "registry+https://github.com/rust-lang/crates.io-index"6725checksum = "f8eff4b7516a57307f9349c64bf34caa34b940b66fed4b2fb3136cb7386e5739"6726dependencies = [6727 "webpki",6728]67296730[[package]]6731name = "which"6732version = "3.1.1"6733source = "registry+https://github.com/rust-lang/crates.io-index"6734checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"6735dependencies = [6736 "libc",6737]67386739[[package]]6740name = "winapi"6741version = "0.2.8"6742source = "registry+https://github.com/rust-lang/crates.io-index"6743checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"67446745[[package]]6746name = "winapi"6747version = "0.3.8"6748source = "registry+https://github.com/rust-lang/crates.io-index"6749checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"6750dependencies = [6751 "winapi-i686-pc-windows-gnu",6752 "winapi-x86_64-pc-windows-gnu",6753]67546755[[package]]6756name = "winapi-build"6757version = "0.1.1"6758source = "registry+https://github.com/rust-lang/crates.io-index"6759checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"67606761[[package]]6762name = "winapi-i686-pc-windows-gnu"6763version = "0.4.0"6764source = "registry+https://github.com/rust-lang/crates.io-index"6765checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"67666767[[package]]6768name = "winapi-util"6769version = "0.1.4"6770source = "registry+https://github.com/rust-lang/crates.io-index"6771checksum = "fa515c5163a99cc82bab70fd3bfdd36d827be85de63737b40fcef2ce084a436e"6772dependencies = [6773 "winapi 0.3.8",6774]67756776[[package]]6777name = "winapi-x86_64-pc-windows-gnu"6778version = "0.4.0"6779source = "registry+https://github.com/rust-lang/crates.io-index"6780checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"67816782[[package]]6783name = "ws"6784version = "0.9.1"6785source = "registry+https://github.com/rust-lang/crates.io-index"6786checksum = "c51a2c47b5798ccc774ffb93ff536aec7c4275d722fd9c740c83cdd1af1f2d94"6787dependencies = [6788 "byteorder",6789 "bytes 0.4.12",6790 "httparse",6791 "log",6792 "mio",6793 "mio-extras",6794 "rand 0.7.3",6795 "sha-1",6796 "slab",6797 "url 2.1.1",6798]67996800[[package]]6801name = "ws2_32-sys"6802version = "0.2.1"6803source = "registry+https://github.com/rust-lang/crates.io-index"6804checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"6805dependencies = [6806 "winapi 0.2.8",6807 "winapi-build",6808]68096810[[package]]6811name = "x25519-dalek"6812version = "0.6.0"6813source = "registry+https://github.com/rust-lang/crates.io-index"6814checksum = "637ff90c9540fa3073bb577e65033069e4bae7c79d49d74aa3ffdf5342a53217"6815dependencies = [6816 "curve25519-dalek",6817 "rand_core 0.5.1",6818 "zeroize",6819]68206821[[package]]6822name = "xdg"6823version = "2.2.0"6824source = "registry+https://github.com/rust-lang/crates.io-index"6825checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57"68266827[[package]]6828name = "yamux"6829version = "0.4.5"6830source = "registry+https://github.com/rust-lang/crates.io-index"6831checksum = "84300bb493cc878f3638b981c62b4632ec1a5c52daaa3036651e8c106d3b55ea"6832dependencies = [6833 "futures 0.3.4",6834 "log",6835 "nohash-hasher",6836 "parking_lot 0.10.2",6837 "rand 0.7.3",6838 "static_assertions",6839]68406841[[package]]6842name = "zeroize"6843version = "1.1.0"6844source = "registry+https://github.com/rust-lang/crates.io-index"6845checksum = "3cbac2ed2ba24cc90f5e06485ac8c7c1e5449fe8911aef4d8877218af021a5b8"6846dependencies = [6847 "zeroize_derive",6848]68496850[[package]]6851name = "zeroize_derive"6852version = "1.0.0"6853source = "registry+https://github.com/rust-lang/crates.io-index"6854checksum = "de251eec69fc7c1bc3923403d18ececb929380e016afe103da75f396704f8ca2"6855dependencies = [6856 "proc-macro2",6857 "quote 1.0.3",6858 "syn 1.0.17",6859 "synstructure",6860]