Cargo.lock 458 KiB
Newer Older
Alexander's avatar
Alexander committed
version = "0.4.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
dependencies = [
 "cfg-if",
 "js-sys",
 "wasm-bindgen",
 "web-sys",
]

[[package]]
name = "wasm-bindgen-macro"
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
dependencies = [
 "quote",
 "wasm-bindgen-macro-support",
]

[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
dependencies = [
 "proc-macro2",
 "quote",
Alexander's avatar
Alexander committed
 "wasm-bindgen-backend",
 "wasm-bindgen-shared",
]

[[package]]
name = "wasm-bindgen-shared"
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"

[[package]]
name = "wasm-bindgen-test"
version = "0.3.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e6e302a7ea94f83a6d09e78e7dc7d9ca7b186bc2829c24a22d0753efd680671"
dependencies = [
 "console_error_panic_hook",
 "js-sys",
 "scoped-tls",
 "wasm-bindgen",
 "wasm-bindgen-futures",
 "wasm-bindgen-test-macro",
]

[[package]]
name = "wasm-bindgen-test-macro"
version = "0.3.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecb993dd8c836930ed130e020e77d9b2e65dd0fbab1b67c790b0f5d80b11a575"
dependencies = [
 "proc-macro2",
 "quote",
]

Alexander's avatar
Alexander committed
[[package]]
name = "wasm-encoder"
version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41763f20eafed1399fff1afb466496d3a959f58241436cfdc17e3f5ca954de16"
dependencies = [
 "leb128",
]

[[package]]
name = "wasm-instrument"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa1dafb3e60065305741e83db35c6c2584bb3725b692b5b66148a38d72ace6cd"
dependencies = [
 "parity-wasm",
]

[[package]]
name = "wasm-instrument"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a47ecb37b9734d1085eaa5ae1a81e60801fd8c28d4cabdd8aedb982021918bc"
dependencies = [
 "parity-wasm",
]

[[package]]
name = "wasm-opt"
version = "0.116.0"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc942673e7684671f0c5708fc18993569d184265fd5223bb51fc8e5b9b6cfd52"
Alexander's avatar
Alexander committed
dependencies = [
 "anyhow",
 "libc",
 "strum",
 "strum_macros",
 "tempfile",
 "thiserror",
 "wasm-opt-cxx-sys",
 "wasm-opt-sys",
]

[[package]]
name = "wasm-opt-cxx-sys"
version = "0.116.0"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c57b28207aa724318fcec6575fe74803c23f6f266fce10cbc9f3f116762f12e"
Alexander's avatar
Alexander committed
dependencies = [
 "anyhow",
 "cxx",
 "cxx-build",
 "wasm-opt-sys",
]

[[package]]
name = "wasm-opt-sys"
version = "0.116.0"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a1cce564dc768dacbdb718fc29df2dba80bd21cb47d8f77ae7e3d95ceb98cbe"
Alexander's avatar
Alexander committed
dependencies = [
 "anyhow",
 "cc",
 "cxx",
 "cxx-build",
]

[[package]]
name = "wasm-timer"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
dependencies = [
 "futures",
 "js-sys",
 "parking_lot 0.11.2",
 "pin-utils",
 "wasm-bindgen",
 "wasm-bindgen-futures",
 "web-sys",
]

[[package]]
name = "wasmi"
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f341edb80021141d4ae6468cbeefc50798716a347d4085c3811900049ea8945"
dependencies = [
 "smallvec",
 "spin 0.9.8",
 "wasmi_arena",
Alexander's avatar
Alexander committed
21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423
 "wasmparser-nostd",
]

[[package]]
name = "wasmi_arena"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "401c1f35e413fac1846d4843745589d9ec678977ab35a384db8ae7830525d468"

[[package]]
name = "wasmi_core"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a"
dependencies = [
 "downcast-rs",
 "libm",
 "num-traits",
 "paste",
]

[[package]]
name = "wasmparser"
version = "0.102.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b"
dependencies = [
 "indexmap 1.9.3",
 "url",
]

[[package]]
name = "wasmparser-nostd"
version = "0.100.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724"
dependencies = [
 "indexmap-nostd",
]

[[package]]
name = "wasmtime"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f907fdead3153cb9bfb7a93bbd5b62629472dc06dee83605358c64c52ed3dda9"
dependencies = [
 "anyhow",
 "bincode",
 "cfg-if",
 "indexmap 1.9.3",
 "libc",
 "log",
 "object 0.30.4",
 "once_cell",
 "paste",
 "psm",
 "rayon",
 "serde",
 "target-lexicon",
 "wasmparser",
 "wasmtime-cache",
 "wasmtime-cranelift",
 "wasmtime-environ",
 "wasmtime-jit",
 "wasmtime-runtime",
 "windows-sys 0.45.0",
]

[[package]]
name = "wasmtime-asm-macros"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3b9daa7c14cd4fa3edbf69de994408d5f4b7b0959ac13fa69d465f6597f810d"
dependencies = [
 "cfg-if",
]

[[package]]
name = "wasmtime-cache"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213"
dependencies = [
 "anyhow",
 "base64 0.21.2",
 "bincode",
 "directories-next",
 "file-per-thread-logger",
 "log",
 "rustix 0.36.15",
 "serde",
 "sha2 0.10.7",
 "toml 0.5.11",
 "windows-sys 0.45.0",
 "zstd 0.11.2+zstd.1.5.2",
]

[[package]]
name = "wasmtime-cranelift"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1cefde0cce8cb700b1b21b6298a3837dba46521affd7b8c38a9ee2c869eee04"
dependencies = [
 "anyhow",
 "cranelift-codegen",
 "cranelift-entity",
 "cranelift-frontend",
 "cranelift-native",
 "cranelift-wasm",
 "gimli 0.27.3",
 "log",
 "object 0.30.4",
 "target-lexicon",
 "thiserror",
 "wasmparser",
 "wasmtime-cranelift-shared",
 "wasmtime-environ",
]

[[package]]
name = "wasmtime-cranelift-shared"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd041e382ef5aea1b9fc78442394f1a4f6d676ce457e7076ca4cb3f397882f8b"
dependencies = [
 "anyhow",
 "cranelift-codegen",
 "cranelift-native",
 "gimli 0.27.3",
 "object 0.30.4",
 "target-lexicon",
 "wasmtime-environ",
]

[[package]]
name = "wasmtime-environ"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a990198cee4197423045235bf89d3359e69bd2ea031005f4c2d901125955c949"
dependencies = [
 "anyhow",
 "cranelift-entity",
 "gimli 0.27.3",
 "indexmap 1.9.3",
 "log",
 "object 0.30.4",
 "serde",
 "target-lexicon",
 "thiserror",
 "wasmparser",
 "wasmtime-types",
]

[[package]]
name = "wasmtime-jit"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de48df552cfca1c9b750002d3e07b45772dd033b0b206d5c0968496abf31244"
dependencies = [
 "addr2line 0.19.0",
 "anyhow",
 "bincode",
 "cfg-if",
 "cpp_demangle 0.3.5",
 "gimli 0.27.3",
 "log",
 "object 0.30.4",
 "rustc-demangle",
 "serde",
 "target-lexicon",
 "wasmtime-environ",
 "wasmtime-jit-debug",
 "wasmtime-jit-icache-coherence",
 "wasmtime-runtime",
 "windows-sys 0.45.0",
]

[[package]]
name = "wasmtime-jit-debug"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e0554b84c15a27d76281d06838aed94e13a77d7bf604bbbaf548aa20eb93846"
dependencies = [
 "object 0.30.4",
 "once_cell",
 "rustix 0.36.15",
]

[[package]]
name = "wasmtime-jit-icache-coherence"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aecae978b13f7f67efb23bd827373ace4578f2137ec110bbf6a4a7cde4121bbd"
dependencies = [
 "cfg-if",
 "libc",
 "windows-sys 0.45.0",
]

[[package]]
name = "wasmtime-runtime"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "658cf6f325232b6760e202e5255d823da5e348fdea827eff0a2a22319000b441"
dependencies = [
 "anyhow",
 "cc",
 "cfg-if",
 "indexmap 1.9.3",
 "libc",
 "log",
 "mach",
 "memfd",
 "memoffset 0.8.0",
 "paste",
 "rand 0.8.5",
 "rustix 0.36.15",
 "wasmtime-asm-macros",
 "wasmtime-environ",
 "wasmtime-jit-debug",
 "windows-sys 0.45.0",
]

[[package]]
name = "wasmtime-types"
version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4f6fffd2a1011887d57f07654dd112791e872e3ff4a2e626aee8059ee17f06f"
dependencies = [
 "cranelift-entity",
 "serde",
 "thiserror",
 "wasmparser",
]

[[package]]
name = "wast"
version = "63.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2560471f60a48b77fccefaf40796fda61c97ce1e790b59dfcec9dc3995c9f63a"
dependencies = [
 "leb128",
 "memchr",
 "unicode-width",
 "wasm-encoder",
]

[[package]]
name = "wat"
version = "1.0.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bdc306c2c4c2f2bf2ba69e083731d0d2a77437fc6a350a19db139636e7e416c"
dependencies = [
 "wast",
]

[[package]]
name = "web-sys"
version = "0.3.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
dependencies = [
 "js-sys",
 "wasm-bindgen",
]

[[package]]
name = "webpki"
version = "0.22.4"
Alexander's avatar
Alexander committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
Alexander's avatar
Alexander committed
dependencies = [
 "ring 0.17.7",
 "untrusted 0.9.0",
Alexander's avatar
Alexander committed
]

[[package]]
name = "webpki-roots"
version = "0.22.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
dependencies = [
Alexander's avatar
Alexander committed
]

[[package]]
name = "webpki-roots"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338"
dependencies = [
 "rustls-webpki 0.100.2",
]

[[package]]
name = "webpki-roots"
version = "0.25.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc"

[[package]]
name = "westend-emulated-chain"
version = "0.0.0"
dependencies = [
 "emulated-integration-tests-common",
 "pallet-im-online",
 "pallet-staking",
 "parachains-common",
 "polkadot-primitives",
 "sc-consensus-grandpa",
 "serde_json",
 "sp-authority-discovery",
 "sp-consensus-babe",
 "sp-consensus-beefy",
 "sp-core",
 "sp-runtime",
 "westend-runtime",
 "westend-runtime-constants",
]

Alexander's avatar
Alexander committed
[[package]]
name = "westend-runtime"
version = "1.0.0"
dependencies = [
 "binary-merkle-tree",
 "bitvec",
 "frame-benchmarking",
 "frame-election-provider-support",
 "frame-executive",
 "frame-remote-externalities",
 "frame-support",
 "frame-system",
 "frame-system-benchmarking",
 "frame-system-rpc-runtime-api",
 "frame-try-runtime",
Alexander's avatar
Alexander committed
 "log",
 "pallet-asset-rate",
Alexander's avatar
Alexander committed
 "pallet-authority-discovery",
 "pallet-authorship",
 "pallet-babe",
 "pallet-bags-list",
 "pallet-balances",
 "pallet-beefy",
 "pallet-beefy-mmr",
 "pallet-collective",
 "pallet-conviction-voting",
Alexander's avatar
Alexander committed
 "pallet-democracy",
 "pallet-election-provider-multi-phase",
 "pallet-election-provider-support-benchmarking",
 "pallet-elections-phragmen",
 "pallet-fast-unstake",
 "pallet-grandpa",
 "pallet-identity",
 "pallet-im-online",
 "pallet-indices",
 "pallet-membership",
 "pallet-message-queue",
 "pallet-mmr",
 "pallet-multisig",
 "pallet-nomination-pools",
 "pallet-nomination-pools-benchmarking",
 "pallet-nomination-pools-runtime-api",
 "pallet-offences",
 "pallet-offences-benchmarking",
 "pallet-preimage",
 "pallet-proxy",
 "pallet-recovery",
 "pallet-root-testing",
Alexander's avatar
Alexander committed
 "pallet-scheduler",
 "pallet-session",
 "pallet-session-benchmarking",
 "pallet-society",
 "pallet-staking",
 "pallet-staking-reward-curve",
 "pallet-staking-runtime-api",
 "pallet-state-trie-migration",
 "pallet-sudo",
 "pallet-timestamp",
 "pallet-transaction-payment",
 "pallet-transaction-payment-rpc-runtime-api",
 "pallet-treasury",
 "pallet-utility",
 "pallet-vesting",
Alexander's avatar
Alexander committed
 "pallet-xcm",
 "pallet-xcm-benchmarks",
 "parity-scale-codec",
Alexander's avatar
Alexander committed
 "polkadot-primitives",
 "polkadot-runtime-common",
 "polkadot-runtime-parachains",
 "rustc-hex",
 "scale-info",
 "serde",
 "serde_derive",
 "serde_json",
 "smallvec",
 "sp-api",
 "sp-application-crypto",
Alexander's avatar
Alexander committed
 "sp-authority-discovery",
 "sp-block-builder",
 "sp-consensus-babe",
 "sp-consensus-beefy",
 "sp-core",
Alexander's avatar
Alexander committed
 "sp-inherents",
 "sp-io",
 "sp-keyring",
 "sp-mmr-primitives",
 "sp-npos-elections",
 "sp-offchain",
 "sp-runtime",
 "sp-session",
 "sp-staking",
 "sp-std 8.0.0",
 "sp-storage 13.0.0",
 "sp-tracing 10.0.0",
Alexander's avatar
Alexander committed
 "sp-transaction-pool",
 "sp-version",
Lulu's avatar
Lulu committed
 "staging-xcm",
 "staging-xcm-builder",
 "staging-xcm-executor",
Alexander's avatar
Alexander committed
 "substrate-wasm-builder",
 "tiny-keccak",
 "tokio",
 "westend-runtime-constants",
]

[[package]]
name = "westend-runtime-constants"
version = "1.0.0"
dependencies = [
 "frame-support",
 "polkadot-primitives",
 "polkadot-runtime-common",
 "smallvec",
 "sp-core",
 "sp-runtime",
 "sp-weights",
[[package]]
name = "westend-system-emulated-network"
version = "0.0.0"
dependencies = [
 "asset-hub-westend-emulated-chain",
 "bridge-hub-westend-emulated-chain",
 "collectives-westend-emulated-chain",
 "emulated-integration-tests-common",
 "penpal-emulated-chain",
 "people-westend-emulated-chain",
Alexander's avatar
Alexander committed
21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901
[[package]]
name = "which"
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
dependencies = [
 "either",
 "libc",
 "once_cell",
]

[[package]]
name = "wide"
version = "0.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa469ffa65ef7e0ba0f164183697b89b854253fd31aeb92358b7b6155177d62f"
dependencies = [
 "bytemuck",
 "safe_arch",
]

[[package]]
name = "widestring"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8"

[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
 "winapi-i686-pc-windows-gnu",
 "winapi-x86_64-pc-windows-gnu",
]

[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"

[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
 "winapi",
]

[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"

[[package]]
name = "windows"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f"
dependencies = [
 "windows_aarch64_msvc 0.34.0",
 "windows_i686_gnu 0.34.0",
 "windows_i686_msvc 0.34.0",
 "windows_x86_64_gnu 0.34.0",
 "windows_x86_64_msvc 0.34.0",
]

[[package]]
name = "windows"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
 "windows-targets 0.48.5",
]

[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
 "windows-targets 0.42.2",
]

[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
 "windows-targets 0.48.5",
]

[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
 "windows_aarch64_gnullvm 0.42.2",
 "windows_aarch64_msvc 0.42.2",
 "windows_i686_gnu 0.42.2",
 "windows_i686_msvc 0.42.2",
 "windows_x86_64_gnu 0.42.2",
 "windows_x86_64_gnullvm 0.42.2",
 "windows_x86_64_msvc 0.42.2",
]

[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
 "windows_aarch64_gnullvm 0.48.5",
 "windows_aarch64_msvc 0.48.5",
 "windows_i686_gnu 0.48.5",
 "windows_i686_msvc 0.48.5",
 "windows_x86_64_gnu 0.48.5",
 "windows_x86_64_gnullvm 0.48.5",
 "windows_x86_64_msvc 0.48.5",
]

[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"

[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"

[[package]]
name = "windows_aarch64_msvc"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"

[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"

[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"

[[package]]
name = "windows_i686_gnu"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"

[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"

[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"

[[package]]
name = "windows_i686_msvc"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"

[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"

[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"

[[package]]
name = "windows_x86_64_gnu"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"

[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"

[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"

[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"

[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"

[[package]]
name = "windows_x86_64_msvc"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"

[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"

[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"

[[package]]
name = "winnow"
version = "0.5.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc"
dependencies = [
 "memchr",
]

[[package]]
name = "winreg"
version = "0.50.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
dependencies = [
 "cfg-if",
 "windows-sys 0.48.0",
]

[[package]]
name = "wyz"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
dependencies = [
 "tap",
]

[[package]]
name = "x25519-dalek"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f"
dependencies = [
 "curve25519-dalek 3.2.0",
 "rand_core 0.5.1",
 "zeroize",
]

[[package]]
name = "x25519-dalek"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"
dependencies = [
 "curve25519-dalek 4.1.1",
Alexander's avatar
Alexander committed
 "rand_core 0.6.4",
 "serde",
 "zeroize",
]

[[package]]
name = "x509-parser"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8"
dependencies = [
Alexander's avatar
Alexander committed
 "base64 0.13.1",
 "data-encoding",
 "der-parser",
Alexander's avatar
Alexander committed
 "lazy_static",
 "nom",
 "oid-registry",
Alexander's avatar
Alexander committed
 "rusticata-macros",
 "thiserror",
Alexander's avatar
Alexander committed
]

[[package]]
name = "xattr"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985"
dependencies = [
 "libc",
]

[[package]]
name = "xcm-emulator"
version = "0.1.0"
dependencies = [
 "cumulus-pallet-parachain-system",
Alexander's avatar
Alexander committed
 "cumulus-primitives-core",
 "cumulus-primitives-parachain-inherent",
 "cumulus-test-relay-sproof-builder",
 "frame-support",
 "frame-system",
 "impl-trait-for-tuples",
 "lazy_static",
 "log",
 "pallet-balances",
 "pallet-message-queue",
 "parachains-common",
 "parity-scale-codec",
 "paste",
 "polkadot-parachain-primitives",
Alexander's avatar
Alexander committed
 "polkadot-primitives",
 "polkadot-runtime-parachains",
 "sp-arithmetic",
 "sp-core",
 "sp-io",
 "sp-runtime",
 "sp-std 8.0.0",
 "sp-tracing 10.0.0",
Lulu's avatar
Lulu committed
 "staging-xcm",
 "staging-xcm-executor",
Alexander's avatar
Alexander committed
]

[[package]]
name = "xcm-executor-integration-tests"
version = "1.0.0"
dependencies = [
 "frame-support",
 "frame-system",
 "futures",
Alexander's avatar
Alexander committed
 "pallet-xcm",
 "parity-scale-codec",
 "polkadot-test-client",
 "polkadot-test-runtime",
 "polkadot-test-service",
 "sp-consensus",
 "sp-keyring",
 "sp-runtime",
 "sp-state-machine",
 "sp-tracing 10.0.0",
Lulu's avatar
Lulu committed
 "staging-xcm",
 "staging-xcm-executor",
Alexander's avatar
Alexander committed
]

[[package]]
name = "xcm-procedural"
version = "1.0.0"
dependencies = [
 "Inflector",
 "proc-macro2",
 "quote",
 "trybuild",