diff --git a/substrate/Cargo.lock b/substrate/Cargo.lock index fcea094542..2e3dc3238a 100644 --- a/substrate/Cargo.lock +++ b/substrate/Cargo.lock @@ -821,20 +821,6 @@ dependencies = [ "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "native-runtime" -version = "0.1.0" -dependencies = [ - "hex-literal 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.1.0", - "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-codec 0.1.0", - "substrate-primitives 0.1.0", - "substrate-runtime-io 0.1.0", - "substrate-runtime-std 0.1.0", -] - [[package]] name = "net2" version = "0.2.31" @@ -991,9 +977,9 @@ dependencies = [ "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "native-runtime 0.1.0", "polkadot-executor 0.1.0", "polkadot-primitives 0.1.0", + "polkadot-runtime 0.1.0", "substrate-client 0.1.0", "substrate-codec 0.1.0", "substrate-executor 0.1.0", @@ -1019,8 +1005,8 @@ version = "0.1.0" dependencies = [ "ed25519 0.1.0", "hex-literal 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "native-runtime 0.1.0", "polkadot-primitives 0.1.0", + "polkadot-runtime 0.1.0", "substrate-codec 0.1.0", "substrate-executor 0.1.0", "substrate-primitives 0.1.0", @@ -1068,6 +1054,20 @@ dependencies = [ "substrate-serializer 0.1.0", ] +[[package]] +name = "polkadot-runtime" +version = "0.1.0" +dependencies = [ + "hex-literal 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-primitives 0.1.0", + "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-codec 0.1.0", + "substrate-primitives 0.1.0", + "substrate-runtime-io 0.1.0", + "substrate-runtime-std 0.1.0", +] + [[package]] name = "polkadot-validator" version = "0.1.0" diff --git a/substrate/Cargo.toml b/substrate/Cargo.toml index 5d275c2caa..615a00dc05 100644 --- a/substrate/Cargo.toml +++ b/substrate/Cargo.toml @@ -5,30 +5,34 @@ authors = ["Parity Technologies "] [dependencies] error-chain = "0.11" -polkadot-cli = { path = "cli", version = "0.1" } +polkadot-cli = { path = "polkadot-cli", version = "0.1" } polkadot-network = { path = "network" } [workspace] members = [ - "candidate-agreement", "client", - "collator", + "codec", "environmental", "executor", - "native-runtime", "network", - "primitives", - "rpc-servers", - "rpc", - "codec", - "polkadot-primitives", + "polkadot-candidate-agreement", + "polkadot-cli", + "polkadot-collator", "polkadot-executor", + "polkadot-runtime", + "polkadot-primitives", + "polkadot-validator", + "primitives", + "rpc", + "rpc-servers", "runtime-io", "runtime-std", "serializer", "state-machine", - "validator", ] exclude = [ - "wasm-runtime" + "executor/wasm", + "polkadot-runtime/wasm", + "pwasm-alloc", + "pwasm-libc", ] diff --git a/substrate/client/src/Cargo.toml b/substrate/client/src/Cargo.toml index 794efd7358..6ab7915afb 100644 --- a/substrate/client/src/Cargo.toml +++ b/substrate/client/src/Cargo.toml @@ -21,4 +21,4 @@ substrate-primitives = { path = "../primitives" } substrate-rpc-servers = { path = "../rpc-servers" } polkadot-primitives = { path = "../polkadot-primitives" } polkadot-executor = { path = "../polkadot-executor" } -native-runtime = { path = "../native-runtime" } +polkadot-runtime = { path = "../polkadot-runtime" } diff --git a/substrate/executor/src/wasm_executor.rs b/substrate/executor/src/wasm_executor.rs index 5426aba447..beefb55ec1 100644 --- a/substrate/executor/src/wasm_executor.rs +++ b/substrate/executor/src/wasm_executor.rs @@ -297,7 +297,7 @@ mod tests { #[test] fn returning_should_work() { let mut ext = TestExternalities::default(); - let test_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); + let test_code = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); let output = WasmExecutor.call(&mut ext, &test_code[..], "test_empty_return", &[]).unwrap(); assert_eq!(output, vec![0u8; 0]); @@ -306,7 +306,7 @@ mod tests { #[test] fn panicking_should_work() { let mut ext = TestExternalities::default(); - let test_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); + let test_code = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); let output = WasmExecutor.call(&mut ext, &test_code[..], "test_panic", &[]); assert!(output.is_err()); @@ -319,7 +319,7 @@ mod tests { fn storage_should_work() { let mut ext = TestExternalities::default(); ext.set_storage(b"foo".to_vec(), b"bar".to_vec()); - let test_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); + let test_code = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); let output = WasmExecutor.call(&mut ext, &test_code[..], "test_data_in", b"Hello world").unwrap(); @@ -336,7 +336,7 @@ mod tests { #[test] fn blake2_256_should_work() { let mut ext = TestExternalities::default(); - let test_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); + let test_code = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); assert_eq!( WasmExecutor.call(&mut ext, &test_code[..], "test_blake2_256", &[]).unwrap(), blake2_256(&b""[..]).to_vec() @@ -350,7 +350,7 @@ mod tests { #[test] fn twox_256_should_work() { let mut ext = TestExternalities::default(); - let test_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); + let test_code = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); assert_eq!( WasmExecutor.call(&mut ext, &test_code[..], "test_twox_256", &[]).unwrap(), FromHex::from_hex("99e9d85137db46ef4bbea33613baafd56f963c64b1f3685a4eb4abd67ff6203a").unwrap() @@ -364,7 +364,7 @@ mod tests { #[test] fn twox_128_should_work() { let mut ext = TestExternalities::default(); - let test_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); + let test_code = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); assert_eq!( WasmExecutor.call(&mut ext, &test_code[..], "test_twox_128", &[]).unwrap(), FromHex::from_hex("99e9d85137db46ef4bbea33613baafd5").unwrap() @@ -378,7 +378,7 @@ mod tests { #[test] fn ed25519_verify_should_work() { let mut ext = TestExternalities::default(); - let test_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); + let test_code = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); let key = ::ed25519::Pair::from_seed(&blake2_256(b"test")); let sig = key.sign(b"all ok!"); let mut calldata = vec![]; @@ -393,7 +393,7 @@ mod tests { #[test] fn enumerated_trie_root_should_work() { let mut ext = TestExternalities::default(); - let test_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); + let test_code = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm"); assert_eq!( WasmExecutor.call(&mut ext, &test_code[..], "test_enumerated_trie_root", &[]).unwrap(), ordered_trie_root(vec![b"zero".to_vec(), b"one".to_vec(), b"two".to_vec()]).0.to_vec() diff --git a/substrate/executor/wasm/Cargo.lock b/substrate/executor/wasm/Cargo.lock new file mode 100644 index 0000000000..bed624c544 --- /dev/null +++ b/substrate/executor/wasm/Cargo.lock @@ -0,0 +1,124 @@ +[[package]] +name = "byteorder" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "crunchy" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fixed-hash" +version = "0.1.3" +source = "git+https://github.com/rphmeier/primitives.git?branch=compile-for-wasm#8dc457899afdaf968ff7f16140b03d1e37b01d71" + +[[package]] +name = "pwasm-alloc" +version = "0.1.0" +dependencies = [ + "pwasm-libc 0.1.0", + "rustc_version 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pwasm-libc" +version = "0.1.0" + +[[package]] +name = "runtime-test" +version = "0.1.0" +dependencies = [ + "substrate-runtime-io 0.1.0", +] + +[[package]] +name = "rustc-hex" +version = "2.0.0" +source = "git+https://github.com/rphmeier/rustc-hex.git#ee2ec40b9062ac7769ccb9dc891d6dc2cc9009d7" + +[[package]] +name = "rustc_version" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "substrate-codec" +version = "0.1.0" +dependencies = [ + "substrate-runtime-std 0.1.0", +] + +[[package]] +name = "substrate-primitives" +version = "0.1.0" +dependencies = [ + "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fixed-hash 0.1.3 (git+https://github.com/rphmeier/primitives.git?branch=compile-for-wasm)", + "rustc-hex 2.0.0 (git+https://github.com/rphmeier/rustc-hex.git)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-codec 0.1.0", + "substrate-runtime-std 0.1.0", + "uint 0.1.2 (git+https://github.com/rphmeier/primitives.git?branch=compile-for-wasm)", +] + +[[package]] +name = "substrate-runtime-io" +version = "0.1.0" +dependencies = [ + "pwasm-alloc 0.1.0", + "pwasm-libc 0.1.0", + "rustc_version 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-codec 0.1.0", + "substrate-primitives 0.1.0", + "substrate-runtime-std 0.1.0", +] + +[[package]] +name = "substrate-runtime-std" +version = "0.1.0" +dependencies = [ + "rustc_version 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "uint" +version = "0.1.2" +source = "git+https://github.com/rphmeier/primitives.git?branch=compile-for-wasm#8dc457899afdaf968ff7f16140b03d1e37b01d71" +dependencies = [ + "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "652805b7e73fada9d85e9a6682a4abd490cb52d96aeecc12e33a0de34dfd0d23" +"checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" +"checksum fixed-hash 0.1.3 (git+https://github.com/rphmeier/primitives.git?branch=compile-for-wasm)" = "" +"checksum rustc-hex 2.0.0 (git+https://github.com/rphmeier/rustc-hex.git)" = "" +"checksum rustc_version 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b9743a7670d88d5d52950408ecdb7c71d8986251ab604d4689dd2ca25c9bca69" +"checksum semver 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537" +"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +"checksum serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)" = "db99f3919e20faa51bb2996057f5031d8685019b5a06139b1ce761da671b8526" +"checksum uint 0.1.2 (git+https://github.com/rphmeier/primitives.git?branch=compile-for-wasm)" = "" diff --git a/substrate/wasm-runtime/test/Cargo.toml b/substrate/executor/wasm/Cargo.toml similarity index 80% rename from substrate/wasm-runtime/test/Cargo.toml rename to substrate/executor/wasm/Cargo.toml index 3df27c9c11..d63e04d5fa 100644 --- a/substrate/wasm-runtime/test/Cargo.toml +++ b/substrate/executor/wasm/Cargo.toml @@ -8,3 +8,9 @@ crate-type = ["cdylib"] [dependencies] substrate-runtime-io = { path = "../../runtime-io", version = "0.1", default_features = false } + +[profile.release] +panic = "abort" + +[workspace] +members = [] diff --git a/substrate/executor/wasm/build.sh b/substrate/executor/wasm/build.sh new file mode 100755 index 0000000000..e173ccd36e --- /dev/null +++ b/substrate/executor/wasm/build.sh @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +cargo +nightly build --target=wasm32-unknown-unknown --release +for i in test +do + wasm-gc target/wasm32-unknown-unknown/release/runtime_$i.wasm target/wasm32-unknown-unknown/release/runtime_$i.compact.wasm +done diff --git a/substrate/wasm-runtime/test/src/lib.rs b/substrate/executor/wasm/src/lib.rs similarity index 100% rename from substrate/wasm-runtime/test/src/lib.rs rename to substrate/executor/wasm/src/lib.rs diff --git a/substrate/executor/wasm/target/release/.cargo-lock b/substrate/executor/wasm/target/release/.cargo-lock new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31 b/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31 new file mode 100644 index 0000000000..387eafd6fa --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31 @@ -0,0 +1 @@ +509ab6c31e1913df \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31.json b/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31.json new file mode 100644 index 0000000000..3ff48ff218 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[\"default\", \"limit_128\"]","target":13123923088509177768,"profile":15831810099150395678,"path":17295367238253398808,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/dep-build-script-build_script_build-ba89b7917d65ca31 b/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/dep-build-script-build_script_build-ba89b7917d65ca31 new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/executor/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/dep-build-script-build_script_build-ba89b7917d65ca31 differ diff --git a/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc b/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc new file mode 100644 index 0000000000..5b949b219e --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc @@ -0,0 +1 @@ +39dbae01535c0ed3 \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc.json b/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc.json new file mode 100644 index 0000000000..0facc05c6d --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":18408649954394303363,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"MtimeBased":[[1518042529,398618791],".fingerprint/pwasm-alloc-9efd6681e33ed7dc/dep-build-script-build_script_build-9efd6681e33ed7dc"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/dep-build-script-build_script_build-9efd6681e33ed7dc b/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/dep-build-script-build_script_build-9efd6681e33ed7dc new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/executor/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/dep-build-script-build_script_build-9efd6681e33ed7dc differ diff --git a/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/dep-lib-rustc_version-52eacf6c66e1ba36 b/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/dep-lib-rustc_version-52eacf6c66e1ba36 new file mode 100644 index 0000000000..0b84ba17df Binary files /dev/null and b/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/dep-lib-rustc_version-52eacf6c66e1ba36 differ diff --git a/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36 b/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36 new file mode 100644 index 0000000000..95aa27b842 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36 @@ -0,0 +1 @@ +fbf5f7fc3344307c \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36.json b/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36.json new file mode 100644 index 0000000000..8e186d178a --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":2911174158177029576,"profile":15831810099150395678,"path":6202745217820959734,"deps":[["semver v0.6.0",10648209201870242739]],"local":[{"Precalculated":"0.2.1"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/dep-lib-semver-328d49bcb3959b88 b/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/dep-lib-semver-328d49bcb3959b88 new file mode 100644 index 0000000000..e73c546989 Binary files /dev/null and b/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/dep-lib-semver-328d49bcb3959b88 differ diff --git a/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88 b/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88 new file mode 100644 index 0000000000..87a77a78a3 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88 @@ -0,0 +1 @@ +b383853bda09c693 \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88.json b/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88.json new file mode 100644 index 0000000000..32d2d1d81f --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[\"default\"]","target":5374856119854582530,"profile":15831810099150395678,"path":3843670531440957878,"deps":[["semver-parser v0.7.0",13277112978033470570]],"local":[{"Precalculated":"0.6.0"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/dep-lib-semver_parser-feab2da7d241c6c5 b/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/dep-lib-semver_parser-feab2da7d241c6c5 new file mode 100644 index 0000000000..f1d2bcf07b Binary files /dev/null and b/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/dep-lib-semver_parser-feab2da7d241c6c5 differ diff --git a/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5 b/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5 new file mode 100644 index 0000000000..9b3aa07cc9 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5 @@ -0,0 +1 @@ +6aec698ae8c741b8 \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5.json b/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5.json new file mode 100644 index 0000000000..a109e557d6 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":18194665905980435929,"profile":15831810099150395678,"path":4437724614573083703,"deps":[],"local":[{"Precalculated":"0.7.0"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5 b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5 new file mode 100644 index 0000000000..cb53310e46 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5 @@ -0,0 +1 @@ +bd4831502d5f0102 \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5.json b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5.json new file mode 100644 index 0000000000..1da2899d93 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":2435122276712461288,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"MtimeBased":[[1518042529,399299348],".fingerprint/substrate-runtime-io-120f18841a83a6a5/dep-build-script-build_script_build-120f18841a83a6a5"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/dep-build-script-build_script_build-120f18841a83a6a5 b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/dep-build-script-build_script_build-120f18841a83a6a5 new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/dep-build-script-build_script_build-120f18841a83a6a5 differ diff --git a/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba new file mode 100644 index 0000000000..35f9f772ca --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba @@ -0,0 +1 @@ +3012aa97987781fb \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba.json b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba.json new file mode 100644 index 0000000000..557cb6ed68 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":13931521184423664563,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"MtimeBased":[[1518042529,354526276],".fingerprint/substrate-runtime-std-afc9f375808fedba/dep-build-script-build_script_build-afc9f375808fedba"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/dep-build-script-build_script_build-afc9f375808fedba b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/dep-build-script-build_script_build-afc9f375808fedba new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/executor/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/dep-build-script-build_script_build-afc9f375808fedba differ diff --git a/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449 b/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449 new file mode 100644 index 0000000000..a95f85528c --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449 @@ -0,0 +1 @@ +f942310a64770c98 \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449.json b/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449.json new file mode 100644 index 0000000000..bd619e86b5 --- /dev/null +++ b/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":925908939897551160,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/dep-build-script-build_script_build-c1fc2da54927f449 b/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/dep-build-script-build_script_build-c1fc2da54927f449 new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/executor/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/dep-build-script-build_script_build-c1fc2da54927f449 differ diff --git a/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build-script-build b/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build-script-build new file mode 100755 index 0000000000..b85ecfdab2 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build-script-build differ diff --git a/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31 b/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31 new file mode 100755 index 0000000000..b85ecfdab2 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31 differ diff --git a/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31.d b/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31.d new file mode 100644 index 0000000000..e0b7687df1 --- /dev/null +++ b/substrate/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/build.rs + +/Users/gav/Core/polkadot/executor/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/build.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/build.rs: diff --git a/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build-script-build b/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build-script-build new file mode 100755 index 0000000000..38428fd790 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build-script-build differ diff --git a/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc b/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc new file mode 100755 index 0000000000..38428fd790 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc differ diff --git a/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc.d b/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc.d new file mode 100644 index 0000000000..6bee1a87e8 --- /dev/null +++ b/substrate/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc: /Users/gav/Core/polkadot/pwasm-alloc/build.rs + +/Users/gav/Core/polkadot/executor/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc.d: /Users/gav/Core/polkadot/pwasm-alloc/build.rs + +/Users/gav/Core/polkadot/pwasm-alloc/build.rs: diff --git a/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build-script-build b/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build-script-build new file mode 100755 index 0000000000..387ad9cd53 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build-script-build differ diff --git a/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5 b/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5 new file mode 100755 index 0000000000..387ad9cd53 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5 differ diff --git a/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5.d b/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5.d new file mode 100644 index 0000000000..1fb8472a67 --- /dev/null +++ b/substrate/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5: /Users/gav/Core/polkadot/runtime-io/build.rs + +/Users/gav/Core/polkadot/executor/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5.d: /Users/gav/Core/polkadot/runtime-io/build.rs + +/Users/gav/Core/polkadot/runtime-io/build.rs: diff --git a/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build-script-build b/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build-script-build new file mode 100755 index 0000000000..535ce308f9 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build-script-build differ diff --git a/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba b/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba new file mode 100755 index 0000000000..535ce308f9 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba differ diff --git a/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba.d b/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba.d new file mode 100644 index 0000000000..79f781058c --- /dev/null +++ b/substrate/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba: /Users/gav/Core/polkadot/runtime-std/build.rs + +/Users/gav/Core/polkadot/executor/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba.d: /Users/gav/Core/polkadot/runtime-std/build.rs + +/Users/gav/Core/polkadot/runtime-std/build.rs: diff --git a/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build-script-build b/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build-script-build new file mode 100755 index 0000000000..b42f49c7b8 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build-script-build differ diff --git a/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449 b/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449 new file mode 100755 index 0000000000..b42f49c7b8 Binary files /dev/null and b/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449 differ diff --git a/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449.d b/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449.d new file mode 100644 index 0000000000..77636de798 --- /dev/null +++ b/substrate/executor/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/build.rs + +/Users/gav/Core/polkadot/executor/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449.d: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/build.rs + +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/build.rs: diff --git a/substrate/executor/wasm/target/release/deps/librustc_version-52eacf6c66e1ba36.rlib b/substrate/executor/wasm/target/release/deps/librustc_version-52eacf6c66e1ba36.rlib new file mode 100644 index 0000000000..00c96a7f83 Binary files /dev/null and b/substrate/executor/wasm/target/release/deps/librustc_version-52eacf6c66e1ba36.rlib differ diff --git a/substrate/executor/wasm/target/release/deps/libsemver-328d49bcb3959b88.rlib b/substrate/executor/wasm/target/release/deps/libsemver-328d49bcb3959b88.rlib new file mode 100644 index 0000000000..ca1eff4a97 Binary files /dev/null and b/substrate/executor/wasm/target/release/deps/libsemver-328d49bcb3959b88.rlib differ diff --git a/substrate/executor/wasm/target/release/deps/libsemver_parser-feab2da7d241c6c5.rlib b/substrate/executor/wasm/target/release/deps/libsemver_parser-feab2da7d241c6c5.rlib new file mode 100644 index 0000000000..ce8f2e2641 Binary files /dev/null and b/substrate/executor/wasm/target/release/deps/libsemver_parser-feab2da7d241c6c5.rlib differ diff --git a/substrate/executor/wasm/target/release/deps/rustc_version-52eacf6c66e1ba36.d b/substrate/executor/wasm/target/release/deps/rustc_version-52eacf6c66e1ba36.d new file mode 100644 index 0000000000..ca136da37b --- /dev/null +++ b/substrate/executor/wasm/target/release/deps/rustc_version-52eacf6c66e1ba36.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release/deps/librustc_version-52eacf6c66e1ba36.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/errors.rs + +/Users/gav/Core/polkadot/executor/wasm/target/release/deps/rustc_version-52eacf6c66e1ba36.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/errors.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/lib.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/errors.rs: diff --git a/substrate/executor/wasm/target/release/deps/semver-328d49bcb3959b88.d b/substrate/executor/wasm/target/release/deps/semver-328d49bcb3959b88.d new file mode 100644 index 0000000000..b816ee98e9 --- /dev/null +++ b/substrate/executor/wasm/target/release/deps/semver-328d49bcb3959b88.d @@ -0,0 +1,7 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release/deps/libsemver-328d49bcb3959b88.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version_req.rs + +/Users/gav/Core/polkadot/executor/wasm/target/release/deps/semver-328d49bcb3959b88.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version_req.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/lib.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version_req.rs: diff --git a/substrate/executor/wasm/target/release/deps/semver_parser-feab2da7d241c6c5.d b/substrate/executor/wasm/target/release/deps/semver_parser-feab2da7d241c6c5.d new file mode 100644 index 0000000000..25512bd92f --- /dev/null +++ b/substrate/executor/wasm/target/release/deps/semver_parser-feab2da7d241c6c5.d @@ -0,0 +1,9 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release/deps/libsemver_parser-feab2da7d241c6c5.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/version.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/range.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/common.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/recognize.rs + +/Users/gav/Core/polkadot/executor/wasm/target/release/deps/semver_parser-feab2da7d241c6c5.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/version.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/range.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/common.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/recognize.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/lib.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/version.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/range.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/common.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/recognize.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.cargo-lock b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.cargo-lock new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/dep-lib-byteorder-43cd3f813a8b2478 b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/dep-lib-byteorder-43cd3f813a8b2478 new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/dep-lib-byteorder-43cd3f813a8b2478 differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478 b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478 new file mode 100644 index 0000000000..21fc739f8c --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478 @@ -0,0 +1 @@ +f4bfc3a1a783401d \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478.json new file mode 100644 index 0000000000..c2fb996f75 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":4614426844476606629,"profile":15831810099150395678,"path":698767400166420428,"deps":[],"local":[{"Precalculated":"1.2.1"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/dep-lib-crunchy-44c14494c9b435da b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/dep-lib-crunchy-44c14494c9b435da new file mode 100644 index 0000000000..96cdb5c5fd Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/dep-lib-crunchy-44c14494c9b435da differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da new file mode 100644 index 0000000000..d920078e21 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da @@ -0,0 +1 @@ +dda0ec7806b72e92 \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da.json new file mode 100644 index 0000000000..a7ee923ebb --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[\"default\", \"limit_128\"]","target":5870929089954252329,"profile":15831810099150395678,"path":9201763800142418467,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build new file mode 100644 index 0000000000..173b7e6a55 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build @@ -0,0 +1 @@ +c1e43e74d40c28af \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build.json new file mode 100644 index 0000000000..0067bb937f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/dep-lib-fixed_hash-4d9ee4348cacca9e b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/dep-lib-fixed_hash-4d9ee4348cacca9e new file mode 100644 index 0000000000..20634396ba Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/dep-lib-fixed_hash-4d9ee4348cacca9e differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e new file mode 100644 index 0000000000..a20a96a3e6 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e @@ -0,0 +1 @@ +2376f05cec679af6 \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e.json new file mode 100644 index 0000000000..f50769307f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":4730082606641783495,"profile":15831810099150395678,"path":18187580461683024247,"deps":[],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/dep-lib-pwasm_alloc-d1163cae47c858ba b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/dep-lib-pwasm_alloc-d1163cae47c858ba new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/dep-lib-pwasm_alloc-d1163cae47c858ba differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba new file mode 100644 index 0000000000..db90c4c535 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba @@ -0,0 +1 @@ +6b65b0e4aa9e6793 \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba.json new file mode 100644 index 0000000000..a5a3560921 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":771379805288393749,"profile":15831810099150395678,"path":2248647755754404992,"deps":[["pwasm-libc v0.1.0 (file:///Users/gav/Core/polkadot/pwasm-libc)",18092503587621560115]],"local":[{"MtimeBased":[[1518042529,836864160],"/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/dep-lib-pwasm_alloc-d1163cae47c858ba"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build new file mode 100644 index 0000000000..931f1c0793 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build @@ -0,0 +1 @@ +9dd080006c315391 \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build.json new file mode 100644 index 0000000000..770105cb34 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"1517994929.962496350s (/Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/dep-lib-pwasm_libc-a3977572614454ff b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/dep-lib-pwasm_libc-a3977572614454ff new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/dep-lib-pwasm_libc-a3977572614454ff differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff new file mode 100644 index 0000000000..990d8634e7 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff @@ -0,0 +1 @@ +33dfa99d277c15fb \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff.json new file mode 100644 index 0000000000..ef9a908a4f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13124829426466301567,"profile":15831810099150395678,"path":13506730645259934862,"deps":[],"local":[{"MtimeBased":[[1518042525,972179553],"/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/dep-lib-pwasm_libc-a3977572614454ff"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/dep-lib-runtime_test b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/dep-lib-runtime_test new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/dep-lib-runtime_test differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/lib-runtime_test b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/lib-runtime_test new file mode 100644 index 0000000000..93e36c22d6 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/lib-runtime_test @@ -0,0 +1 @@ +dfeddb2f5e1e63db \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/lib-runtime_test.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/lib-runtime_test.json new file mode 100644 index 0000000000..1f68044cce --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/lib-runtime_test.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":15810319941109828137,"profile":15831810099150395678,"path":10872709659218687626,"deps":[["substrate-runtime-io v0.1.0 (file:///Users/gav/Core/polkadot/runtime-io)",5380904299140949060]],"local":[{"MtimeBased":[[1518042536,302346478],"/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-test-872069fe4c8c035d/dep-lib-runtime_test"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/dep-lib-rustc_hex-525f475c38c2b8d4 b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/dep-lib-rustc_hex-525f475c38c2b8d4 new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/dep-lib-rustc_hex-525f475c38c2b8d4 differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4 b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4 new file mode 100644 index 0000000000..c00d3c8f3c --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4 @@ -0,0 +1 @@ +f27084b27869611a \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4.json new file mode 100644 index 0000000000..e2d37fb5b9 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":15647727436054677533,"profile":15831810099150395678,"path":11390925097424032482,"deps":[],"local":[{"Precalculated":"ee2ec40b9062ac7769ccb9dc891d6dc2cc9009d7"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/dep-lib-serde-56faf2460a26e00a b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/dep-lib-serde-56faf2460a26e00a new file mode 100644 index 0000000000..d9457f814c Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/dep-lib-serde-56faf2460a26e00a differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a new file mode 100644 index 0000000000..86f3e02b9e --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a @@ -0,0 +1 @@ +41c62971b7af39fb \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a.json new file mode 100644 index 0000000000..e9fdf523c8 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":16707711045546007680,"profile":15831810099150395678,"path":10222960826373582376,"deps":[],"local":[{"Precalculated":"1.0.27"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/dep-lib-substrate_codec-ca118a65a903db9c b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/dep-lib-substrate_codec-ca118a65a903db9c new file mode 100644 index 0000000000..60767c5377 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/dep-lib-substrate_codec-ca118a65a903db9c differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c new file mode 100644 index 0000000000..47f63ab9e2 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c @@ -0,0 +1 @@ +ecc7eb6dff185294 \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c.json new file mode 100644 index 0000000000..b75d17e9e8 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":7319116959780948694,"profile":15831810099150395678,"path":6738607011474287905,"deps":[["substrate-runtime-std v0.1.0 (file:///Users/gav/Core/polkadot/runtime-std)",11887417843539138219]],"local":[{"MtimeBased":[[1518042530,86728401],"/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/dep-lib-substrate_codec-ca118a65a903db9c"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/dep-lib-substrate_primitives-e00108d9e0b99aec b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/dep-lib-substrate_primitives-e00108d9e0b99aec new file mode 100644 index 0000000000..a9ce883c23 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/dep-lib-substrate_primitives-e00108d9e0b99aec differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec new file mode 100644 index 0000000000..83ddf7bf5e --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec @@ -0,0 +1 @@ +c35cb2092eee47f3 \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec.json new file mode 100644 index 0000000000..5fc59e7d92 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":18219404549280547433,"profile":15831810099150395678,"path":12734014784070584121,"deps":[["byteorder v1.2.1",2107829381606129652],["crunchy v0.1.6",10533557816892629213],["fixed-hash v0.1.3 (https://github.com/rphmeier/primitives.git?branch=compile-for-wasm#8dc45789)",17769629544612918819],["rustc-hex v2.0.0 (https://github.com/rphmeier/rustc-hex.git#ee2ec40b)",1900916484839076082],["serde v1.0.27",18102693379604858433],["substrate-codec v0.1.0 (file:///Users/gav/Core/polkadot/codec)",10687632351043504108],["substrate-runtime-std v0.1.0 (file:///Users/gav/Core/polkadot/runtime-std)",11887417843539138219],["uint v0.1.2 (https://github.com/rphmeier/primitives.git?branch=compile-for-wasm#8dc45789)",13477789436971579115]],"local":[{"MtimeBased":[[1518042535,271169641],"/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/dep-lib-substrate_primitives-e00108d9e0b99aec"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build new file mode 100644 index 0000000000..719a09d88d --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build @@ -0,0 +1 @@ +d24ef7a11ca721ff \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build.json new file mode 100644 index 0000000000..a54a888e83 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"1518041862.368589700s (/Users/gav/Core/polkadot/runtime-io/Cargo.toml)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/dep-lib-substrate_runtime_io-d1bc1618243202c7 b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/dep-lib-substrate_runtime_io-d1bc1618243202c7 new file mode 100644 index 0000000000..417d560f6c Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/dep-lib-substrate_runtime_io-d1bc1618243202c7 differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7 b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7 new file mode 100644 index 0000000000..45a5df63f9 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7 @@ -0,0 +1 @@ +4424ab68f3cfac4a \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7.json new file mode 100644 index 0000000000..a91d87500c --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13126870863896525761,"profile":15831810099150395678,"path":26769199562927344,"deps":[["pwasm-alloc v0.1.0 (file:///Users/gav/Core/polkadot/pwasm-alloc)",10621632702994998635],["pwasm-libc v0.1.0 (file:///Users/gav/Core/polkadot/pwasm-libc)",18092503587621560115],["substrate-codec v0.1.0 (file:///Users/gav/Core/polkadot/codec)",10687632351043504108],["substrate-primitives v0.1.0 (file:///Users/gav/Core/polkadot/primitives)",17530241956061535427],["substrate-runtime-std v0.1.0 (file:///Users/gav/Core/polkadot/runtime-std)",11887417843539138219]],"local":[{"MtimeBased":[[1518042535,499814316],"/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/dep-lib-substrate_runtime_io-d1bc1618243202c7"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/dep-lib-substrate_runtime_std-4b73587f85fc5f7b b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/dep-lib-substrate_runtime_std-4b73587f85fc5f7b new file mode 100644 index 0000000000..417d560f6c Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/dep-lib-substrate_runtime_std-4b73587f85fc5f7b differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b new file mode 100644 index 0000000000..83e2485764 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b @@ -0,0 +1 @@ +ab56cae48b97f8a4 \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b.json new file mode 100644 index 0000000000..006ab523b5 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13525610188994224686,"profile":15831810099150395678,"path":8349102629444457169,"deps":[],"local":[{"MtimeBased":[[1518042529,739827293],"/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/dep-lib-substrate_runtime_std-4b73587f85fc5f7b"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build new file mode 100644 index 0000000000..2302a2ebe4 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build @@ -0,0 +1 @@ +c7366091397b119f \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build.json new file mode 100644 index 0000000000..dba1f193c0 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"1518021996.209388061s (/Users/gav/Core/polkadot/runtime-std/without_std.rs)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/dep-lib-uint-9bae4fca0449e2f1 b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/dep-lib-uint-9bae4fca0449e2f1 new file mode 100644 index 0000000000..d309bade4e Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/dep-lib-uint-9bae4fca0449e2f1 differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1 b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1 new file mode 100644 index 0000000000..351ef810bd --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1 @@ -0,0 +1 @@ +ebf633a415ba0abb \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1.json new file mode 100644 index 0000000000..53f239a947 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":14313918334586728655,"profile":15831810099150395678,"path":2820468535736626715,"deps":[["byteorder v1.2.1",2107829381606129652]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build new file mode 100644 index 0000000000..615624f1b7 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build @@ -0,0 +1 @@ +e90501364981a033 \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build.json b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build.json new file mode 100644 index 0000000000..fc70ef9bf9 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs new file mode 100644 index 0000000000..a038c018e5 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs @@ -0,0 +1,815 @@ + +/// Unroll the given for loop +/// +/// Example: +/// +/// ```ignore +/// unroll! { +/// for i in 0..5 { +/// println!("Iteration {}", i); +/// } +/// } +/// ``` +/// +/// will expand into: +/// +/// ```ignore +/// { println!("Iteration {}", 0); } +/// { println!("Iteration {}", 1); } +/// { println!("Iteration {}", 2); } +/// { println!("Iteration {}", 3); } +/// { println!("Iteration {}", 4); } +/// ``` +#[macro_export] +macro_rules! unroll { + (for $v:ident in 0..0 $c:block) => {}; + + (for $v:ident in 0..$b:tt {$($c:tt)*}) => { + #[allow(non_upper_case_globals)] + { unroll!(@$v, 0, $b, {$($c)*}); } + }; + + (@$v:ident, $a:expr, 0, $c:block) => { + { const $v: usize = $a; $c } + }; + + (@$v:ident, $a:expr, 1, $c:block) => { + { const $v: usize = $a; $c } + }; + + (@$v:ident, $a:expr, 2, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + }; + + (@$v:ident, $a:expr, 3, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + }; + + (@$v:ident, $a:expr, 4, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + }; + + (@$v:ident, $a:expr, 5, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + }; + + (@$v:ident, $a:expr, 6, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + }; + + (@$v:ident, $a:expr, 7, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + }; + + (@$v:ident, $a:expr, 8, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + }; + + (@$v:ident, $a:expr, 9, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + }; + + (@$v:ident, $a:expr, 10, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + }; + + (@$v:ident, $a:expr, 11, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + }; + + (@$v:ident, $a:expr, 12, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + }; + + (@$v:ident, $a:expr, 13, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + }; + + (@$v:ident, $a:expr, 14, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + }; + + (@$v:ident, $a:expr, 15, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + { const $v: usize = $a + 14; $c } + }; + + (@$v:ident, $a:expr, 16, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + { const $v: usize = $a + 14; $c } + { const $v: usize = $a + 15; $c } + }; + + (@$v:ident, $a:expr, 17, $c:block) => { + unroll!(@$v, $a, 16, $c); + { const $v: usize = $a + 16; $c } + }; + + (@$v:ident, $a:expr, 18, $c:block) => { + unroll!(@$v, $a, 9, $c); + unroll!(@$v, $a + 9, 9, $c); + }; + + (@$v:ident, $a:expr, 19, $c:block) => { + unroll!(@$v, $a, 18, $c); + { const $v: usize = $a + 18; $c } + }; + + (@$v:ident, $a:expr, 20, $c:block) => { + unroll!(@$v, $a, 10, $c); + unroll!(@$v, $a + 10, 10, $c); + }; + + (@$v:ident, $a:expr, 21, $c:block) => { + unroll!(@$v, $a, 20, $c); + { const $v: usize = $a + 20; $c } + }; + + (@$v:ident, $a:expr, 22, $c:block) => { + unroll!(@$v, $a, 11, $c); + unroll!(@$v, $a + 11, 11, $c); + }; + + (@$v:ident, $a:expr, 23, $c:block) => { + unroll!(@$v, $a, 22, $c); + { const $v: usize = $a + 22; $c } + }; + + (@$v:ident, $a:expr, 24, $c:block) => { + unroll!(@$v, $a, 12, $c); + unroll!(@$v, $a + 12, 12, $c); + }; + + (@$v:ident, $a:expr, 25, $c:block) => { + unroll!(@$v, $a, 24, $c); + { const $v: usize = $a + 24; $c } + }; + + (@$v:ident, $a:expr, 26, $c:block) => { + unroll!(@$v, $a, 13, $c); + unroll!(@$v, $a + 13, 13, $c); + }; + + (@$v:ident, $a:expr, 27, $c:block) => { + unroll!(@$v, $a, 26, $c); + { const $v: usize = $a + 26; $c } + }; + + (@$v:ident, $a:expr, 28, $c:block) => { + unroll!(@$v, $a, 14, $c); + unroll!(@$v, $a + 14, 14, $c); + }; + + (@$v:ident, $a:expr, 29, $c:block) => { + unroll!(@$v, $a, 28, $c); + { const $v: usize = $a + 28; $c } + }; + + (@$v:ident, $a:expr, 30, $c:block) => { + unroll!(@$v, $a, 15, $c); + unroll!(@$v, $a + 15, 15, $c); + }; + + (@$v:ident, $a:expr, 31, $c:block) => { + unroll!(@$v, $a, 30, $c); + { const $v: usize = $a + 30; $c } + }; + + (@$v:ident, $a:expr, 32, $c:block) => { + unroll!(@$v, $a, 16, $c); + unroll!(@$v, $a + 16, 16, $c); + }; + + (@$v:ident, $a:expr, 33, $c:block) => { + unroll!(@$v, $a, 32, $c); + { const $v: usize = $a + 32; $c } + }; + + (@$v:ident, $a:expr, 34, $c:block) => { + unroll!(@$v, $a, 17, $c); + unroll!(@$v, $a + 17, 17, $c); + }; + + (@$v:ident, $a:expr, 35, $c:block) => { + unroll!(@$v, $a, 34, $c); + { const $v: usize = $a + 34; $c } + }; + + (@$v:ident, $a:expr, 36, $c:block) => { + unroll!(@$v, $a, 18, $c); + unroll!(@$v, $a + 18, 18, $c); + }; + + (@$v:ident, $a:expr, 37, $c:block) => { + unroll!(@$v, $a, 36, $c); + { const $v: usize = $a + 36; $c } + }; + + (@$v:ident, $a:expr, 38, $c:block) => { + unroll!(@$v, $a, 19, $c); + unroll!(@$v, $a + 19, 19, $c); + }; + + (@$v:ident, $a:expr, 39, $c:block) => { + unroll!(@$v, $a, 38, $c); + { const $v: usize = $a + 38; $c } + }; + + (@$v:ident, $a:expr, 40, $c:block) => { + unroll!(@$v, $a, 20, $c); + unroll!(@$v, $a + 20, 20, $c); + }; + + (@$v:ident, $a:expr, 41, $c:block) => { + unroll!(@$v, $a, 40, $c); + { const $v: usize = $a + 40; $c } + }; + + (@$v:ident, $a:expr, 42, $c:block) => { + unroll!(@$v, $a, 21, $c); + unroll!(@$v, $a + 21, 21, $c); + }; + + (@$v:ident, $a:expr, 43, $c:block) => { + unroll!(@$v, $a, 42, $c); + { const $v: usize = $a + 42; $c } + }; + + (@$v:ident, $a:expr, 44, $c:block) => { + unroll!(@$v, $a, 22, $c); + unroll!(@$v, $a + 22, 22, $c); + }; + + (@$v:ident, $a:expr, 45, $c:block) => { + unroll!(@$v, $a, 44, $c); + { const $v: usize = $a + 44; $c } + }; + + (@$v:ident, $a:expr, 46, $c:block) => { + unroll!(@$v, $a, 23, $c); + unroll!(@$v, $a + 23, 23, $c); + }; + + (@$v:ident, $a:expr, 47, $c:block) => { + unroll!(@$v, $a, 46, $c); + { const $v: usize = $a + 46; $c } + }; + + (@$v:ident, $a:expr, 48, $c:block) => { + unroll!(@$v, $a, 24, $c); + unroll!(@$v, $a + 24, 24, $c); + }; + + (@$v:ident, $a:expr, 49, $c:block) => { + unroll!(@$v, $a, 48, $c); + { const $v: usize = $a + 48; $c } + }; + + (@$v:ident, $a:expr, 50, $c:block) => { + unroll!(@$v, $a, 25, $c); + unroll!(@$v, $a + 25, 25, $c); + }; + + (@$v:ident, $a:expr, 51, $c:block) => { + unroll!(@$v, $a, 50, $c); + { const $v: usize = $a + 50; $c } + }; + + (@$v:ident, $a:expr, 52, $c:block) => { + unroll!(@$v, $a, 26, $c); + unroll!(@$v, $a + 26, 26, $c); + }; + + (@$v:ident, $a:expr, 53, $c:block) => { + unroll!(@$v, $a, 52, $c); + { const $v: usize = $a + 52; $c } + }; + + (@$v:ident, $a:expr, 54, $c:block) => { + unroll!(@$v, $a, 27, $c); + unroll!(@$v, $a + 27, 27, $c); + }; + + (@$v:ident, $a:expr, 55, $c:block) => { + unroll!(@$v, $a, 54, $c); + { const $v: usize = $a + 54; $c } + }; + + (@$v:ident, $a:expr, 56, $c:block) => { + unroll!(@$v, $a, 28, $c); + unroll!(@$v, $a + 28, 28, $c); + }; + + (@$v:ident, $a:expr, 57, $c:block) => { + unroll!(@$v, $a, 56, $c); + { const $v: usize = $a + 56; $c } + }; + + (@$v:ident, $a:expr, 58, $c:block) => { + unroll!(@$v, $a, 29, $c); + unroll!(@$v, $a + 29, 29, $c); + }; + + (@$v:ident, $a:expr, 59, $c:block) => { + unroll!(@$v, $a, 58, $c); + { const $v: usize = $a + 58; $c } + }; + + (@$v:ident, $a:expr, 60, $c:block) => { + unroll!(@$v, $a, 30, $c); + unroll!(@$v, $a + 30, 30, $c); + }; + + (@$v:ident, $a:expr, 61, $c:block) => { + unroll!(@$v, $a, 60, $c); + { const $v: usize = $a + 60; $c } + }; + + (@$v:ident, $a:expr, 62, $c:block) => { + unroll!(@$v, $a, 31, $c); + unroll!(@$v, $a + 31, 31, $c); + }; + + (@$v:ident, $a:expr, 63, $c:block) => { + unroll!(@$v, $a, 62, $c); + { const $v: usize = $a + 62; $c } + }; + + (@$v:ident, $a:expr, 64, $c:block) => { + unroll!(@$v, $a, 32, $c); + unroll!(@$v, $a + 32, 32, $c); + }; + + (@$v:ident, $a:expr, 65, $c:block) => { + unroll!(@$v, $a, 64, $c); + { const $v: usize = $a + 64; $c } + }; + + (@$v:ident, $a:expr, 66, $c:block) => { + unroll!(@$v, $a, 33, $c); + unroll!(@$v, $a + 33, 33, $c); + }; + + (@$v:ident, $a:expr, 67, $c:block) => { + unroll!(@$v, $a, 66, $c); + { const $v: usize = $a + 66; $c } + }; + + (@$v:ident, $a:expr, 68, $c:block) => { + unroll!(@$v, $a, 34, $c); + unroll!(@$v, $a + 34, 34, $c); + }; + + (@$v:ident, $a:expr, 69, $c:block) => { + unroll!(@$v, $a, 68, $c); + { const $v: usize = $a + 68; $c } + }; + + (@$v:ident, $a:expr, 70, $c:block) => { + unroll!(@$v, $a, 35, $c); + unroll!(@$v, $a + 35, 35, $c); + }; + + (@$v:ident, $a:expr, 71, $c:block) => { + unroll!(@$v, $a, 70, $c); + { const $v: usize = $a + 70; $c } + }; + + (@$v:ident, $a:expr, 72, $c:block) => { + unroll!(@$v, $a, 36, $c); + unroll!(@$v, $a + 36, 36, $c); + }; + + (@$v:ident, $a:expr, 73, $c:block) => { + unroll!(@$v, $a, 72, $c); + { const $v: usize = $a + 72; $c } + }; + + (@$v:ident, $a:expr, 74, $c:block) => { + unroll!(@$v, $a, 37, $c); + unroll!(@$v, $a + 37, 37, $c); + }; + + (@$v:ident, $a:expr, 75, $c:block) => { + unroll!(@$v, $a, 74, $c); + { const $v: usize = $a + 74; $c } + }; + + (@$v:ident, $a:expr, 76, $c:block) => { + unroll!(@$v, $a, 38, $c); + unroll!(@$v, $a + 38, 38, $c); + }; + + (@$v:ident, $a:expr, 77, $c:block) => { + unroll!(@$v, $a, 76, $c); + { const $v: usize = $a + 76; $c } + }; + + (@$v:ident, $a:expr, 78, $c:block) => { + unroll!(@$v, $a, 39, $c); + unroll!(@$v, $a + 39, 39, $c); + }; + + (@$v:ident, $a:expr, 79, $c:block) => { + unroll!(@$v, $a, 78, $c); + { const $v: usize = $a + 78; $c } + }; + + (@$v:ident, $a:expr, 80, $c:block) => { + unroll!(@$v, $a, 40, $c); + unroll!(@$v, $a + 40, 40, $c); + }; + + (@$v:ident, $a:expr, 81, $c:block) => { + unroll!(@$v, $a, 80, $c); + { const $v: usize = $a + 80; $c } + }; + + (@$v:ident, $a:expr, 82, $c:block) => { + unroll!(@$v, $a, 41, $c); + unroll!(@$v, $a + 41, 41, $c); + }; + + (@$v:ident, $a:expr, 83, $c:block) => { + unroll!(@$v, $a, 82, $c); + { const $v: usize = $a + 82; $c } + }; + + (@$v:ident, $a:expr, 84, $c:block) => { + unroll!(@$v, $a, 42, $c); + unroll!(@$v, $a + 42, 42, $c); + }; + + (@$v:ident, $a:expr, 85, $c:block) => { + unroll!(@$v, $a, 84, $c); + { const $v: usize = $a + 84; $c } + }; + + (@$v:ident, $a:expr, 86, $c:block) => { + unroll!(@$v, $a, 43, $c); + unroll!(@$v, $a + 43, 43, $c); + }; + + (@$v:ident, $a:expr, 87, $c:block) => { + unroll!(@$v, $a, 86, $c); + { const $v: usize = $a + 86; $c } + }; + + (@$v:ident, $a:expr, 88, $c:block) => { + unroll!(@$v, $a, 44, $c); + unroll!(@$v, $a + 44, 44, $c); + }; + + (@$v:ident, $a:expr, 89, $c:block) => { + unroll!(@$v, $a, 88, $c); + { const $v: usize = $a + 88; $c } + }; + + (@$v:ident, $a:expr, 90, $c:block) => { + unroll!(@$v, $a, 45, $c); + unroll!(@$v, $a + 45, 45, $c); + }; + + (@$v:ident, $a:expr, 91, $c:block) => { + unroll!(@$v, $a, 90, $c); + { const $v: usize = $a + 90; $c } + }; + + (@$v:ident, $a:expr, 92, $c:block) => { + unroll!(@$v, $a, 46, $c); + unroll!(@$v, $a + 46, 46, $c); + }; + + (@$v:ident, $a:expr, 93, $c:block) => { + unroll!(@$v, $a, 92, $c); + { const $v: usize = $a + 92; $c } + }; + + (@$v:ident, $a:expr, 94, $c:block) => { + unroll!(@$v, $a, 47, $c); + unroll!(@$v, $a + 47, 47, $c); + }; + + (@$v:ident, $a:expr, 95, $c:block) => { + unroll!(@$v, $a, 94, $c); + { const $v: usize = $a + 94; $c } + }; + + (@$v:ident, $a:expr, 96, $c:block) => { + unroll!(@$v, $a, 48, $c); + unroll!(@$v, $a + 48, 48, $c); + }; + + (@$v:ident, $a:expr, 97, $c:block) => { + unroll!(@$v, $a, 96, $c); + { const $v: usize = $a + 96; $c } + }; + + (@$v:ident, $a:expr, 98, $c:block) => { + unroll!(@$v, $a, 49, $c); + unroll!(@$v, $a + 49, 49, $c); + }; + + (@$v:ident, $a:expr, 99, $c:block) => { + unroll!(@$v, $a, 98, $c); + { const $v: usize = $a + 98; $c } + }; + + (@$v:ident, $a:expr, 100, $c:block) => { + unroll!(@$v, $a, 50, $c); + unroll!(@$v, $a + 50, 50, $c); + }; + + (@$v:ident, $a:expr, 101, $c:block) => { + unroll!(@$v, $a, 100, $c); + { const $v: usize = $a + 100; $c } + }; + + (@$v:ident, $a:expr, 102, $c:block) => { + unroll!(@$v, $a, 51, $c); + unroll!(@$v, $a + 51, 51, $c); + }; + + (@$v:ident, $a:expr, 103, $c:block) => { + unroll!(@$v, $a, 102, $c); + { const $v: usize = $a + 102; $c } + }; + + (@$v:ident, $a:expr, 104, $c:block) => { + unroll!(@$v, $a, 52, $c); + unroll!(@$v, $a + 52, 52, $c); + }; + + (@$v:ident, $a:expr, 105, $c:block) => { + unroll!(@$v, $a, 104, $c); + { const $v: usize = $a + 104; $c } + }; + + (@$v:ident, $a:expr, 106, $c:block) => { + unroll!(@$v, $a, 53, $c); + unroll!(@$v, $a + 53, 53, $c); + }; + + (@$v:ident, $a:expr, 107, $c:block) => { + unroll!(@$v, $a, 106, $c); + { const $v: usize = $a + 106; $c } + }; + + (@$v:ident, $a:expr, 108, $c:block) => { + unroll!(@$v, $a, 54, $c); + unroll!(@$v, $a + 54, 54, $c); + }; + + (@$v:ident, $a:expr, 109, $c:block) => { + unroll!(@$v, $a, 108, $c); + { const $v: usize = $a + 108; $c } + }; + + (@$v:ident, $a:expr, 110, $c:block) => { + unroll!(@$v, $a, 55, $c); + unroll!(@$v, $a + 55, 55, $c); + }; + + (@$v:ident, $a:expr, 111, $c:block) => { + unroll!(@$v, $a, 110, $c); + { const $v: usize = $a + 110; $c } + }; + + (@$v:ident, $a:expr, 112, $c:block) => { + unroll!(@$v, $a, 56, $c); + unroll!(@$v, $a + 56, 56, $c); + }; + + (@$v:ident, $a:expr, 113, $c:block) => { + unroll!(@$v, $a, 112, $c); + { const $v: usize = $a + 112; $c } + }; + + (@$v:ident, $a:expr, 114, $c:block) => { + unroll!(@$v, $a, 57, $c); + unroll!(@$v, $a + 57, 57, $c); + }; + + (@$v:ident, $a:expr, 115, $c:block) => { + unroll!(@$v, $a, 114, $c); + { const $v: usize = $a + 114; $c } + }; + + (@$v:ident, $a:expr, 116, $c:block) => { + unroll!(@$v, $a, 58, $c); + unroll!(@$v, $a + 58, 58, $c); + }; + + (@$v:ident, $a:expr, 117, $c:block) => { + unroll!(@$v, $a, 116, $c); + { const $v: usize = $a + 116; $c } + }; + + (@$v:ident, $a:expr, 118, $c:block) => { + unroll!(@$v, $a, 59, $c); + unroll!(@$v, $a + 59, 59, $c); + }; + + (@$v:ident, $a:expr, 119, $c:block) => { + unroll!(@$v, $a, 118, $c); + { const $v: usize = $a + 118; $c } + }; + + (@$v:ident, $a:expr, 120, $c:block) => { + unroll!(@$v, $a, 60, $c); + unroll!(@$v, $a + 60, 60, $c); + }; + + (@$v:ident, $a:expr, 121, $c:block) => { + unroll!(@$v, $a, 120, $c); + { const $v: usize = $a + 120; $c } + }; + + (@$v:ident, $a:expr, 122, $c:block) => { + unroll!(@$v, $a, 61, $c); + unroll!(@$v, $a + 61, 61, $c); + }; + + (@$v:ident, $a:expr, 123, $c:block) => { + unroll!(@$v, $a, 122, $c); + { const $v: usize = $a + 122; $c } + }; + + (@$v:ident, $a:expr, 124, $c:block) => { + unroll!(@$v, $a, 62, $c); + unroll!(@$v, $a + 62, 62, $c); + }; + + (@$v:ident, $a:expr, 125, $c:block) => { + unroll!(@$v, $a, 124, $c); + { const $v: usize = $a + 124; $c } + }; + + (@$v:ident, $a:expr, 126, $c:block) => { + unroll!(@$v, $a, 63, $c); + unroll!(@$v, $a + 63, 63, $c); + }; + + (@$v:ident, $a:expr, 127, $c:block) => { + unroll!(@$v, $a, 126, $c); + { const $v: usize = $a + 126; $c } + }; + + (@$v:ident, $a:expr, 128, $c:block) => { + unroll!(@$v, $a, 64, $c); + unroll!(@$v, $a + 64, 64, $c); + }; + +} + + +#[cfg(test)] +mod tests { + #[test] + fn test_all() { + { + let a: Vec = vec![]; + unroll! { + for i in 0..0 { + a.push(i); + } + } + assert_eq!(a, (0..0).collect::>()); + } + { + let mut a: Vec = vec![]; + unroll! { + for i in 0..1 { + a.push(i); + } + } + assert_eq!(a, (0..1).collect::>()); + } + { + let mut a: Vec = vec![]; + unroll! { + for i in 0..128 { + a.push(i); + } + } + assert_eq!(a, (0..128).collect::>()); + } + } +} diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/root-output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/root-output new file mode 100644 index 0000000000..3999d9e95f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/stderr b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/output new file mode 100644 index 0000000000..f6fcf8e26c --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/output @@ -0,0 +1 @@ +cargo:rustc-cfg=feature="nightly" diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/root-output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/root-output new file mode 100644 index 0000000000..3999d9e95f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/stderr b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/output new file mode 100644 index 0000000000..f6fcf8e26c --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/output @@ -0,0 +1 @@ +cargo:rustc-cfg=feature="nightly" diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/root-output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/root-output new file mode 100644 index 0000000000..3999d9e95f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/stderr b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/output new file mode 100644 index 0000000000..f6fcf8e26c --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/output @@ -0,0 +1 @@ +cargo:rustc-cfg=feature="nightly" diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/root-output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/root-output new file mode 100644 index 0000000000..3999d9e95f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/stderr b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/root-output b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/root-output new file mode 100644 index 0000000000..3999d9e95f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/executor/wasm/target/release \ No newline at end of file diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/stderr b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/byteorder-43cd3f813a8b2478.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/byteorder-43cd3f813a8b2478.d new file mode 100644 index 0000000000..aece28fd6a --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/byteorder-43cd3f813a8b2478.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libbyteorder-43cd3f813a8b2478.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.2.1/src/lib.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/byteorder-43cd3f813a8b2478.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.2.1/src/lib.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.2.1/src/lib.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/crunchy-44c14494c9b435da.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/crunchy-44c14494c9b435da.d new file mode 100644 index 0000000000..a4bbd45e04 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/crunchy-44c14494c9b435da.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libcrunchy-44c14494c9b435da.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/src/lib.rs /Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/crunchy-44c14494c9b435da.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/src/lib.rs /Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/src/lib.rs: +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/fixed_hash-4d9ee4348cacca9e.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/fixed_hash-4d9ee4348cacca9e.d new file mode 100644 index 0000000000..4c5a75a072 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/fixed_hash-4d9ee4348cacca9e.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libfixed_hash-4d9ee4348cacca9e.rlib: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/lib.rs /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/hash.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/fixed_hash-4d9ee4348cacca9e.d: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/lib.rs /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/hash.rs + +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/lib.rs: +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/hash.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libbyteorder-43cd3f813a8b2478.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libbyteorder-43cd3f813a8b2478.rlib new file mode 100644 index 0000000000..a05e88f9fa Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libbyteorder-43cd3f813a8b2478.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libcrunchy-44c14494c9b435da.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libcrunchy-44c14494c9b435da.rlib new file mode 100644 index 0000000000..efc238b27f Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libcrunchy-44c14494c9b435da.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libfixed_hash-4d9ee4348cacca9e.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libfixed_hash-4d9ee4348cacca9e.rlib new file mode 100644 index 0000000000..ba32a712eb Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libfixed_hash-4d9ee4348cacca9e.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_alloc-d1163cae47c858ba.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_alloc-d1163cae47c858ba.rlib new file mode 100644 index 0000000000..f0332ebbe6 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_alloc-d1163cae47c858ba.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_libc-a3977572614454ff.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_libc-a3977572614454ff.rlib new file mode 100644 index 0000000000..c6673e1898 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_libc-a3977572614454ff.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/librustc_hex-525f475c38c2b8d4.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/librustc_hex-525f475c38c2b8d4.rlib new file mode 100644 index 0000000000..fe6842fec8 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/librustc_hex-525f475c38c2b8d4.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libserde-56faf2460a26e00a.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libserde-56faf2460a26e00a.rlib new file mode 100644 index 0000000000..d8278d6ee6 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libserde-56faf2460a26e00a.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_codec-ca118a65a903db9c.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_codec-ca118a65a903db9c.rlib new file mode 100644 index 0000000000..dee5235ac6 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_codec-ca118a65a903db9c.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_primitives-e00108d9e0b99aec.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_primitives-e00108d9e0b99aec.rlib new file mode 100644 index 0000000000..f7a8caa3ba Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_primitives-e00108d9e0b99aec.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_io-d1bc1618243202c7.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_io-d1bc1618243202c7.rlib new file mode 100644 index 0000000000..e98321997f Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_io-d1bc1618243202c7.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_std-4b73587f85fc5f7b.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_std-4b73587f85fc5f7b.rlib new file mode 100644 index 0000000000..7626d760c1 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_std-4b73587f85fc5f7b.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libuint-9bae4fca0449e2f1.rlib b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libuint-9bae4fca0449e2f1.rlib new file mode 100644 index 0000000000..c3a7c0e1f0 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/libuint-9bae4fca0449e2f1.rlib differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_alloc-d1163cae47c858ba.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_alloc-d1163cae47c858ba.d new file mode 100644 index 0000000000..63e9459e8d --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_alloc-d1163cae47c858ba.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_alloc-d1163cae47c858ba.rlib: /Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_alloc-d1163cae47c858ba.d: /Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs + +/Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_libc-a3977572614454ff.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_libc-a3977572614454ff.d new file mode 100644 index 0000000000..263fb670bd --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_libc-a3977572614454ff.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_libc-a3977572614454ff.rlib: /Users/gav/Core/polkadot/pwasm-libc/src/lib.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_libc-a3977572614454ff.d: /Users/gav/Core/polkadot/pwasm-libc/src/lib.rs + +/Users/gav/Core/polkadot/pwasm-libc/src/lib.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/runtime_test.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/runtime_test.d new file mode 100644 index 0000000000..18a4390185 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/runtime_test.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/runtime_test.wasm: src/lib.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/runtime_test.d: src/lib.rs + +src/lib.rs: diff --git a/substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.wasm b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/runtime_test.wasm similarity index 84% rename from substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.wasm rename to substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/runtime_test.wasm index 6a79823c53..dba19ead86 100644 Binary files a/substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.wasm and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/runtime_test.wasm differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/rustc_hex-525f475c38c2b8d4.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/rustc_hex-525f475c38c2b8d4.d new file mode 100644 index 0000000000..eb1aef66b8 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/rustc_hex-525f475c38c2b8d4.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/librustc_hex-525f475c38c2b8d4.rlib: /Users/gav/.cargo/git/checkouts/rustc-hex-5c07b62dcd38bbca/ee2ec40/src/lib.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/rustc_hex-525f475c38c2b8d4.d: /Users/gav/.cargo/git/checkouts/rustc-hex-5c07b62dcd38bbca/ee2ec40/src/lib.rs + +/Users/gav/.cargo/git/checkouts/rustc-hex-5c07b62dcd38bbca/ee2ec40/src/lib.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/serde-56faf2460a26e00a.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/serde-56faf2460a26e00a.d new file mode 100644 index 0000000000..3e7f7a0337 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/serde-56faf2460a26e00a.d @@ -0,0 +1,20 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libserde-56faf2460a26e00a.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/macros.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impls.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impossible.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/value.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/from_primitive.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/ignored_any.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/impls.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/utf8.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/export.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/macros.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/ser.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/de.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/serde-56faf2460a26e00a.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/macros.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impls.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impossible.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/value.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/from_primitive.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/ignored_any.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/impls.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/utf8.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/export.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/macros.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/ser.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/de.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/lib.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/macros.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/mod.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impls.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impossible.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/mod.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/value.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/from_primitive.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/ignored_any.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/impls.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/utf8.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/export.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/mod.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/macros.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/ser.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/de.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_codec-ca118a65a903db9c.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_codec-ca118a65a903db9c.d new file mode 100644 index 0000000000..db459dbf99 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_codec-ca118a65a903db9c.d @@ -0,0 +1,9 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_codec-ca118a65a903db9c.rlib: /Users/gav/Core/polkadot/codec/src/lib.rs /Users/gav/Core/polkadot/codec/src/endiansensitive.rs /Users/gav/Core/polkadot/codec/src/slicable.rs /Users/gav/Core/polkadot/codec/src/joiner.rs /Users/gav/Core/polkadot/codec/src/keyedvec.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_codec-ca118a65a903db9c.d: /Users/gav/Core/polkadot/codec/src/lib.rs /Users/gav/Core/polkadot/codec/src/endiansensitive.rs /Users/gav/Core/polkadot/codec/src/slicable.rs /Users/gav/Core/polkadot/codec/src/joiner.rs /Users/gav/Core/polkadot/codec/src/keyedvec.rs + +/Users/gav/Core/polkadot/codec/src/lib.rs: +/Users/gav/Core/polkadot/codec/src/endiansensitive.rs: +/Users/gav/Core/polkadot/codec/src/slicable.rs: +/Users/gav/Core/polkadot/codec/src/joiner.rs: +/Users/gav/Core/polkadot/codec/src/keyedvec.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_primitives-e00108d9e0b99aec.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_primitives-e00108d9e0b99aec.d new file mode 100644 index 0000000000..f89c84af1f --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_primitives-e00108d9e0b99aec.d @@ -0,0 +1,9 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_primitives-e00108d9e0b99aec.rlib: /Users/gav/Core/polkadot/primitives/src/lib.rs /Users/gav/Core/polkadot/primitives/src/storage.rs /Users/gav/Core/polkadot/primitives/src/hash.rs /Users/gav/Core/polkadot/primitives/src/uint.rs /Users/gav/Core/polkadot/primitives/src/block.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_primitives-e00108d9e0b99aec.d: /Users/gav/Core/polkadot/primitives/src/lib.rs /Users/gav/Core/polkadot/primitives/src/storage.rs /Users/gav/Core/polkadot/primitives/src/hash.rs /Users/gav/Core/polkadot/primitives/src/uint.rs /Users/gav/Core/polkadot/primitives/src/block.rs + +/Users/gav/Core/polkadot/primitives/src/lib.rs: +/Users/gav/Core/polkadot/primitives/src/storage.rs: +/Users/gav/Core/polkadot/primitives/src/hash.rs: +/Users/gav/Core/polkadot/primitives/src/uint.rs: +/Users/gav/Core/polkadot/primitives/src/block.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_io-d1bc1618243202c7.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_io-d1bc1618243202c7.d new file mode 100644 index 0000000000..51b228917c --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_io-d1bc1618243202c7.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_io-d1bc1618243202c7.rlib: /Users/gav/Core/polkadot/runtime-io/src/lib.rs /Users/gav/Core/polkadot/runtime-io/src/../without_std.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_io-d1bc1618243202c7.d: /Users/gav/Core/polkadot/runtime-io/src/lib.rs /Users/gav/Core/polkadot/runtime-io/src/../without_std.rs + +/Users/gav/Core/polkadot/runtime-io/src/lib.rs: +/Users/gav/Core/polkadot/runtime-io/src/../without_std.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_std-4b73587f85fc5f7b.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_std-4b73587f85fc5f7b.d new file mode 100644 index 0000000000..09d202f93b --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_std-4b73587f85fc5f7b.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_std-4b73587f85fc5f7b.rlib: /Users/gav/Core/polkadot/runtime-std/src/lib.rs /Users/gav/Core/polkadot/runtime-std/src/../without_std.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_std-4b73587f85fc5f7b.d: /Users/gav/Core/polkadot/runtime-std/src/lib.rs /Users/gav/Core/polkadot/runtime-std/src/../without_std.rs + +/Users/gav/Core/polkadot/runtime-std/src/lib.rs: +/Users/gav/Core/polkadot/runtime-std/src/../without_std.rs: diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/uint-9bae4fca0449e2f1.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/uint-9bae4fca0449e2f1.d new file mode 100644 index 0000000000..a414d1a952 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/deps/uint-9bae4fca0449e2f1.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/libuint-9bae4fca0449e2f1.rlib: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/lib.rs /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/uint.rs + +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/deps/uint-9bae4fca0449e2f1.d: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/lib.rs /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/uint.rs + +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/lib.rs: +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/uint.rs: diff --git a/substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm similarity index 84% rename from substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm rename to substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm index 3c4e94098f..e508765c35 100644 Binary files a/substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.compact.wasm differ diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.d b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.d new file mode 100644 index 0000000000..1dc894dc29 --- /dev/null +++ b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.d @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.wasm: /Users/gav/Core/polkadot/codec/src/slicable.rs /Users/gav/Core/polkadot/primitives/src/block.rs /Users/gav/Core/polkadot/executor/wasm/src/lib.rs /Users/gav/Core/polkadot/primitives/src/uint.rs /Users/gav/Core/polkadot/codec/src/endiansensitive.rs /Users/gav/Core/polkadot/runtime-io/build.rs /Users/gav/Core/polkadot/runtime-io/src/../without_std.rs /Users/gav/Core/polkadot/runtime-std/src/../without_std.rs /Users/gav/Core/polkadot/primitives/src/hash.rs /Users/gav/Core/polkadot/pwasm-libc/src/lib.rs /Users/gav/Core/polkadot/runtime-io/src/lib.rs /Users/gav/Core/polkadot/pwasm-alloc/build.rs /Users/gav/Core/polkadot/runtime-std/src/lib.rs /Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs /Users/gav/Core/polkadot/primitives/src/lib.rs /Users/gav/Core/polkadot/runtime-std/build.rs /Users/gav/Core/polkadot/codec/src/lib.rs /Users/gav/Core/polkadot/primitives/src/storage.rs /Users/gav/Core/polkadot/codec/src/keyedvec.rs /Users/gav/Core/polkadot/codec/src/joiner.rs diff --git a/substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.wasm b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.wasm new file mode 100644 index 0000000000..dba19ead86 Binary files /dev/null and b/substrate/executor/wasm/target/wasm32-unknown-unknown/release/runtime_test.wasm differ diff --git a/substrate/native-runtime/src b/substrate/native-runtime/src deleted file mode 120000 index 12e3333860..0000000000 --- a/substrate/native-runtime/src +++ /dev/null @@ -1 +0,0 @@ -../wasm-runtime/polkadot/src \ No newline at end of file diff --git a/substrate/candidate-agreement/Cargo.toml b/substrate/polkadot-candidate-agreement/Cargo.toml similarity index 100% rename from substrate/candidate-agreement/Cargo.toml rename to substrate/polkadot-candidate-agreement/Cargo.toml diff --git a/substrate/candidate-agreement/src/bft/accumulator.rs b/substrate/polkadot-candidate-agreement/src/bft/accumulator.rs similarity index 100% rename from substrate/candidate-agreement/src/bft/accumulator.rs rename to substrate/polkadot-candidate-agreement/src/bft/accumulator.rs diff --git a/substrate/candidate-agreement/src/bft/mod.rs b/substrate/polkadot-candidate-agreement/src/bft/mod.rs similarity index 100% rename from substrate/candidate-agreement/src/bft/mod.rs rename to substrate/polkadot-candidate-agreement/src/bft/mod.rs diff --git a/substrate/candidate-agreement/src/bft/tests.rs b/substrate/polkadot-candidate-agreement/src/bft/tests.rs similarity index 100% rename from substrate/candidate-agreement/src/bft/tests.rs rename to substrate/polkadot-candidate-agreement/src/bft/tests.rs diff --git a/substrate/candidate-agreement/src/handle_incoming.rs b/substrate/polkadot-candidate-agreement/src/handle_incoming.rs similarity index 100% rename from substrate/candidate-agreement/src/handle_incoming.rs rename to substrate/polkadot-candidate-agreement/src/handle_incoming.rs diff --git a/substrate/candidate-agreement/src/lib.rs b/substrate/polkadot-candidate-agreement/src/lib.rs similarity index 100% rename from substrate/candidate-agreement/src/lib.rs rename to substrate/polkadot-candidate-agreement/src/lib.rs diff --git a/substrate/candidate-agreement/src/round_robin.rs b/substrate/polkadot-candidate-agreement/src/round_robin.rs similarity index 100% rename from substrate/candidate-agreement/src/round_robin.rs rename to substrate/polkadot-candidate-agreement/src/round_robin.rs diff --git a/substrate/candidate-agreement/src/table.rs b/substrate/polkadot-candidate-agreement/src/table.rs similarity index 100% rename from substrate/candidate-agreement/src/table.rs rename to substrate/polkadot-candidate-agreement/src/table.rs diff --git a/substrate/candidate-agreement/src/tests/mod.rs b/substrate/polkadot-candidate-agreement/src/tests/mod.rs similarity index 100% rename from substrate/candidate-agreement/src/tests/mod.rs rename to substrate/polkadot-candidate-agreement/src/tests/mod.rs diff --git a/substrate/cli/Cargo.toml b/substrate/polkadot-cli/Cargo.toml similarity index 93% rename from substrate/cli/Cargo.toml rename to substrate/polkadot-cli/Cargo.toml index 794efd7358..6ab7915afb 100644 --- a/substrate/cli/Cargo.toml +++ b/substrate/polkadot-cli/Cargo.toml @@ -21,4 +21,4 @@ substrate-primitives = { path = "../primitives" } substrate-rpc-servers = { path = "../rpc-servers" } polkadot-primitives = { path = "../polkadot-primitives" } polkadot-executor = { path = "../polkadot-executor" } -native-runtime = { path = "../native-runtime" } +polkadot-runtime = { path = "../polkadot-runtime" } diff --git a/substrate/cli/src/cli.yml b/substrate/polkadot-cli/src/cli.yml similarity index 100% rename from substrate/cli/src/cli.yml rename to substrate/polkadot-cli/src/cli.yml diff --git a/substrate/cli/src/error.rs b/substrate/polkadot-cli/src/error.rs similarity index 100% rename from substrate/cli/src/error.rs rename to substrate/polkadot-cli/src/error.rs diff --git a/substrate/cli/src/genesis.rs b/substrate/polkadot-cli/src/genesis.rs similarity index 96% rename from substrate/cli/src/genesis.rs rename to substrate/polkadot-cli/src/genesis.rs index 78a6c526c2..74e6ff6a3a 100644 --- a/substrate/cli/src/genesis.rs +++ b/substrate/polkadot-cli/src/genesis.rs @@ -40,8 +40,8 @@ pub fn construct_genesis_block(storage: &HashMap, Vec>) -> Block { mod tests { use super::*; use codec::{Slicable, Joiner}; - use native_runtime::support::{one, two, Hashable}; - use native_runtime::runtime::genesismap::{GenesisConfig, additional_storage_with_genesis}; + use polkadot_runtime::support::{one, two, Hashable}; + use polkadot_runtime::genesismap::{GenesisConfig, additional_storage_with_genesis}; use state_machine::execute; use state_machine::OverlayedChanges; use state_machine::backend::InMemory; diff --git a/substrate/cli/src/lib.rs b/substrate/polkadot-cli/src/lib.rs similarity index 93% rename from substrate/cli/src/lib.rs rename to substrate/polkadot-cli/src/lib.rs index 5f4246763c..5c087a48b2 100644 --- a/substrate/cli/src/lib.rs +++ b/substrate/polkadot-cli/src/lib.rs @@ -29,7 +29,7 @@ extern crate substrate_runtime_io as runtime_io; extern crate substrate_rpc_servers as rpc; extern crate polkadot_primitives; extern crate polkadot_executor; -extern crate native_runtime; +extern crate polkadot_runtime; #[macro_use] extern crate hex_literal; @@ -66,7 +66,9 @@ pub fn run(args: I) -> error::Result<()> where let executor = polkadot_executor::executor(); let mut storage = Default::default(); let god_key = hex!["3d866ec8a9190c8343c2fc593d21d8a6d0c5c4763aaab2349de3a6111d64d124"]; - let genesis_config = native_runtime::runtime::genesismap::GenesisConfig { + + use polkadot_runtime::genesismap::{additional_storage_with_genesis, GenesisConfig}; + let genesis_config = GenesisConfig { validators: vec![god_key.clone()], authorities: vec![god_key.clone()], balances: vec![(god_key.clone(), 1u64 << 63)].into_iter().collect(), @@ -76,16 +78,14 @@ pub fn run(args: I) -> error::Result<()> where bonding_duration: 90, // 90 days per bond. approval_ratio: 667, // 66.7% approvals required for legislation. }; - let prepare_genesis = || { storage = genesis_config.genesis_map(); let block = genesis::construct_genesis_block(&storage); - use native_runtime::runtime::genesismap::additional_storage_with_genesis; storage.extend(additional_storage_with_genesis(&block).into_iter()); use codec::Slicable; (primitives::block::Header::from_slice(&mut block.header.to_vec().as_ref()).expect("to_vec() always gives a valid serialisation; qed"), storage.into_iter().collect()) }; - let client = client::new_in_mem(executor, prepare_genesis)?; // TODO: pass in genesis builder. + let client = client::new_in_mem(executor, prepare_genesis)?; let address = "127.0.0.1:9933".parse().unwrap(); let handler = rpc::rpc_handler(client); diff --git a/substrate/collator/Cargo.toml b/substrate/polkadot-collator/Cargo.toml similarity index 100% rename from substrate/collator/Cargo.toml rename to substrate/polkadot-collator/Cargo.toml diff --git a/substrate/collator/src/lib.rs b/substrate/polkadot-collator/src/lib.rs similarity index 100% rename from substrate/collator/src/lib.rs rename to substrate/polkadot-collator/src/lib.rs diff --git a/substrate/polkadot-executor/Cargo.toml b/substrate/polkadot-executor/Cargo.toml index 39ee892a56..fdab366062 100644 --- a/substrate/polkadot-executor/Cargo.toml +++ b/substrate/polkadot-executor/Cargo.toml @@ -14,4 +14,4 @@ substrate-state-machine = { path = "../state-machine" } substrate-executor = { path = "../executor" } substrate-primitives = { path = "../primitives" } polkadot-primitives = { path = "../polkadot-primitives", version = "0.1" } -native-runtime = { path = "../native-runtime" } +polkadot-runtime = { path = "../polkadot-runtime" } diff --git a/substrate/polkadot-executor/src/lib.rs b/substrate/polkadot-executor/src/lib.rs index 51b75e3273..8680d7d4a6 100644 --- a/substrate/polkadot-executor/src/lib.rs +++ b/substrate/polkadot-executor/src/lib.rs @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with Substrate. If not, see . -extern crate native_runtime; +extern crate polkadot_runtime; extern crate substrate_executor; extern crate substrate_codec as codec; extern crate substrate_state_machine as state_machine; @@ -26,7 +26,7 @@ extern crate triehash; #[macro_use] extern crate hex_literal; -use native_runtime as runtime; +use polkadot_runtime as runtime; use substrate_executor::{NativeExecutionDispatch, NativeExecutor}; pub struct LocalNativeExecutionDispatch; @@ -35,7 +35,7 @@ impl NativeExecutionDispatch for LocalNativeExecutionDispatch { fn native_equivalent() -> &'static [u8] { // WARNING!!! This assumes that the runtime was built *before* the main project. Until we // get a proper build script, this must be strictly adhered to or things will go wrong. - include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm") + include_bytes!("../../polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm") } fn dispatch(method: &str, data: &[u8]) -> Option> { @@ -54,16 +54,16 @@ mod tests { use super::*; use substrate_executor::WasmExecutor; use codec::{KeyedVec, Slicable, Joiner}; - use native_runtime::support::{one, two, Hashable}; - use native_runtime::runtime::staking::balance; + use polkadot_runtime::support::{one, two, Hashable}; + use polkadot_runtime::runtime::staking::balance; use state_machine::{CodeExecutor, TestExternalities}; use primitives::twox_128; use polkadot_primitives::{Hash, Header, BlockNumber, Block, Digest, Transaction, UncheckedTransaction, Function, AccountId}; use ed25519::Pair; - const BLOATY_CODE: &[u8] = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm"); - const COMPACT_CODE: &[u8] = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm"); + const BLOATY_CODE: &[u8] = include_bytes!("../../polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm"); + const COMPACT_CODE: &[u8] = include_bytes!("../../polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm"); // TODO: move into own crate. macro_rules! map { @@ -284,7 +284,7 @@ mod tests { twox_128(&one.to_keyed_vec(b"sta:bal:")).to_vec() => vec![68u8, 0, 0, 0, 0, 0, 0, 0] ], }; - let foreign_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm"); + let foreign_code = include_bytes!("../../polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm"); let r = WasmExecutor.call(&mut t, &foreign_code[..], "execute_transaction", &vec![].join(&Header::from_block_number(1u64)).join(&tx())); assert!(r.is_err()); } @@ -298,7 +298,7 @@ mod tests { twox_128(&one.to_keyed_vec(b"sta:bal:")).to_vec() => vec![111u8, 0, 0, 0, 0, 0, 0, 0] ], }; - let foreign_code = include_bytes!("../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm"); + let foreign_code = include_bytes!("../../polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm"); let r = WasmExecutor.call(&mut t, &foreign_code[..], "execute_transaction", &vec![].join(&Header::from_block_number(1u64)).join(&tx())); assert!(r.is_ok()); diff --git a/substrate/native-runtime/Cargo.toml b/substrate/polkadot-runtime/Cargo.toml similarity index 96% rename from substrate/native-runtime/Cargo.toml rename to substrate/polkadot-runtime/Cargo.toml index 5666a80ce7..3bb02f1fbb 100644 --- a/substrate/native-runtime/Cargo.toml +++ b/substrate/polkadot-runtime/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "native-runtime" +name = "polkadot-runtime" version = "0.1.0" authors = ["Parity Technologies "] diff --git a/substrate/wasm-runtime/polkadot/src/runtime/genesismap.rs b/substrate/polkadot-runtime/src/genesismap.rs similarity index 95% rename from substrate/wasm-runtime/polkadot/src/runtime/genesismap.rs rename to substrate/polkadot-runtime/src/genesismap.rs index 8f55e0c073..df7fe04711 100644 --- a/substrate/wasm-runtime/polkadot/src/runtime/genesismap.rs +++ b/substrate/polkadot-runtime/src/genesismap.rs @@ -50,7 +50,7 @@ impl GenesisConfig { } pub fn genesis_map(&self) -> HashMap, Vec> { - let wasm_runtime = include_bytes!("../../../../wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm").to_vec(); + let wasm_runtime = include_bytes!("../wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm").to_vec(); vec![ (&b"gov:apr"[..], vec![].join(&self.approval_ratio)), (&b"ses:len"[..], vec![].join(&self.session_length)), diff --git a/substrate/wasm-runtime/polkadot/src/lib.rs b/substrate/polkadot-runtime/src/lib.rs similarity index 98% rename from substrate/wasm-runtime/polkadot/src/lib.rs rename to substrate/polkadot-runtime/src/lib.rs index 72e2d23c50..46e4b6c860 100644 --- a/substrate/wasm-runtime/polkadot/src/lib.rs +++ b/substrate/polkadot-runtime/src/lib.rs @@ -38,6 +38,9 @@ extern crate hex_literal; pub mod support; pub mod runtime; +#[cfg(feature = "std")] +pub mod genesismap; + use rstd::prelude::*; use codec::Slicable; use polkadot_primitives::{Header, Block, UncheckedTransaction}; diff --git a/substrate/wasm-runtime/polkadot/src/runtime/consensus.rs b/substrate/polkadot-runtime/src/runtime/consensus.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/runtime/consensus.rs rename to substrate/polkadot-runtime/src/runtime/consensus.rs diff --git a/substrate/wasm-runtime/polkadot/src/runtime/governance.rs b/substrate/polkadot-runtime/src/runtime/governance.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/runtime/governance.rs rename to substrate/polkadot-runtime/src/runtime/governance.rs diff --git a/substrate/wasm-runtime/polkadot/src/runtime/mod.rs b/substrate/polkadot-runtime/src/runtime/mod.rs similarity index 95% rename from substrate/wasm-runtime/polkadot/src/runtime/mod.rs rename to substrate/polkadot-runtime/src/runtime/mod.rs index ff70fe8928..6a54fa7310 100644 --- a/substrate/wasm-runtime/polkadot/src/runtime/mod.rs +++ b/substrate/polkadot-runtime/src/runtime/mod.rs @@ -32,6 +32,3 @@ pub mod governance; pub mod parachains; // TODO: polkadao - -#[cfg(feature = "std")] -pub mod genesismap; diff --git a/substrate/wasm-runtime/polkadot/src/runtime/parachains.rs b/substrate/polkadot-runtime/src/runtime/parachains.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/runtime/parachains.rs rename to substrate/polkadot-runtime/src/runtime/parachains.rs diff --git a/substrate/wasm-runtime/polkadot/src/runtime/session.rs b/substrate/polkadot-runtime/src/runtime/session.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/runtime/session.rs rename to substrate/polkadot-runtime/src/runtime/session.rs diff --git a/substrate/wasm-runtime/polkadot/src/runtime/staking.rs b/substrate/polkadot-runtime/src/runtime/staking.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/runtime/staking.rs rename to substrate/polkadot-runtime/src/runtime/staking.rs diff --git a/substrate/wasm-runtime/polkadot/src/runtime/system.rs b/substrate/polkadot-runtime/src/runtime/system.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/runtime/system.rs rename to substrate/polkadot-runtime/src/runtime/system.rs diff --git a/substrate/wasm-runtime/polkadot/src/runtime/timestamp.rs b/substrate/polkadot-runtime/src/runtime/timestamp.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/runtime/timestamp.rs rename to substrate/polkadot-runtime/src/runtime/timestamp.rs diff --git a/substrate/wasm-runtime/polkadot/src/support/environment.rs b/substrate/polkadot-runtime/src/support/environment.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/support/environment.rs rename to substrate/polkadot-runtime/src/support/environment.rs diff --git a/substrate/wasm-runtime/polkadot/src/support/hashable.rs b/substrate/polkadot-runtime/src/support/hashable.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/support/hashable.rs rename to substrate/polkadot-runtime/src/support/hashable.rs diff --git a/substrate/wasm-runtime/polkadot/src/support/mod.rs b/substrate/polkadot-runtime/src/support/mod.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/support/mod.rs rename to substrate/polkadot-runtime/src/support/mod.rs diff --git a/substrate/wasm-runtime/polkadot/src/support/statichex.rs b/substrate/polkadot-runtime/src/support/statichex.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/support/statichex.rs rename to substrate/polkadot-runtime/src/support/statichex.rs diff --git a/substrate/wasm-runtime/polkadot/src/support/storage.rs b/substrate/polkadot-runtime/src/support/storage.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/support/storage.rs rename to substrate/polkadot-runtime/src/support/storage.rs diff --git a/substrate/wasm-runtime/polkadot/src/support/testing.rs b/substrate/polkadot-runtime/src/support/testing.rs similarity index 100% rename from substrate/wasm-runtime/polkadot/src/support/testing.rs rename to substrate/polkadot-runtime/src/support/testing.rs diff --git a/substrate/wasm-runtime/Cargo.lock b/substrate/polkadot-runtime/wasm/Cargo.lock similarity index 99% rename from substrate/wasm-runtime/Cargo.lock rename to substrate/polkadot-runtime/wasm/Cargo.lock index a6777c28db..7656a5a670 100644 --- a/substrate/wasm-runtime/Cargo.lock +++ b/substrate/polkadot-runtime/wasm/Cargo.lock @@ -521,13 +521,6 @@ dependencies = [ "substrate-runtime-std 0.1.0", ] -[[package]] -name = "runtime-test" -version = "0.1.0" -dependencies = [ - "substrate-runtime-io 0.1.0", -] - [[package]] name = "rustc-hex" version = "1.0.0" diff --git a/substrate/wasm-runtime/polkadot/Cargo.toml b/substrate/polkadot-runtime/wasm/Cargo.toml similarity index 92% rename from substrate/wasm-runtime/polkadot/Cargo.toml rename to substrate/polkadot-runtime/wasm/Cargo.toml index bde7c47729..96084ddbde 100644 --- a/substrate/wasm-runtime/polkadot/Cargo.toml +++ b/substrate/polkadot-runtime/wasm/Cargo.toml @@ -16,3 +16,9 @@ polkadot-primitives = { path = "../../polkadot-primitives", version = "0.1", def [features] default = [] std = ["substrate-codec/std", "substrate-runtime-io/std", "substrate-runtime-std/std", "substrate-primitives/std", "polkadot-primitives/std"] + +[profile.release] +panic = "abort" + +[workspace] +members = [] diff --git a/substrate/polkadot-runtime/wasm/build.sh b/substrate/polkadot-runtime/wasm/build.sh new file mode 100755 index 0000000000..2cc63b0775 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/build.sh @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +cargo +nightly build --target=wasm32-unknown-unknown --release +for i in polkadot +do + wasm-gc target/wasm32-unknown-unknown/release/runtime_$i.wasm target/wasm32-unknown-unknown/release/runtime_$i.compact.wasm +done diff --git a/substrate/wasm-runtime/init.sh b/substrate/polkadot-runtime/wasm/init.sh similarity index 100% rename from substrate/wasm-runtime/init.sh rename to substrate/polkadot-runtime/wasm/init.sh diff --git a/substrate/polkadot-runtime/wasm/src b/substrate/polkadot-runtime/wasm/src new file mode 120000 index 0000000000..5cd551cf26 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/src @@ -0,0 +1 @@ +../src \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.cargo-lock b/substrate/polkadot-runtime/wasm/target/debug/.cargo-lock new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/dep-lib-byteorder-d042eee36ae0c5bf b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/dep-lib-byteorder-d042eee36ae0c5bf new file mode 100644 index 0000000000..4218e0b0a1 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/dep-lib-byteorder-d042eee36ae0c5bf differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/lib-byteorder-d042eee36ae0c5bf b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/lib-byteorder-d042eee36ae0c5bf new file mode 100644 index 0000000000..5e80ab2d9f --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/lib-byteorder-d042eee36ae0c5bf @@ -0,0 +1 @@ +886af10eac278f98 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/lib-byteorder-d042eee36ae0c5bf.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/lib-byteorder-d042eee36ae0c5bf.json new file mode 100644 index 0000000000..c39389ebd1 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/byteorder-d042eee36ae0c5bf/lib-byteorder-d042eee36ae0c5bf.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":14273275588615045656,"profile":731176819336294830,"deps":[],"local":[{"Precalculated":"1.2.1"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/dep-lib-crunchy-428ca79f7094ae1b b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/dep-lib-crunchy-428ca79f7094ae1b new file mode 100644 index 0000000000..6f0d75f199 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/dep-lib-crunchy-428ca79f7094ae1b differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/lib-crunchy-428ca79f7094ae1b b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/lib-crunchy-428ca79f7094ae1b new file mode 100644 index 0000000000..dfcc936fb2 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/lib-crunchy-428ca79f7094ae1b @@ -0,0 +1 @@ +7afe5707b6b07892 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/lib-crunchy-428ca79f7094ae1b.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/lib-crunchy-428ca79f7094ae1b.json new file mode 100644 index 0000000000..d0d7596850 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-428ca79f7094ae1b/lib-crunchy-428ca79f7094ae1b.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[\"default\", \"limit_128\"]","target":1199109001173133208,"profile":731176819336294830,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/build-script-build_script_build-7afe3ee0284c8f65 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/build-script-build_script_build-7afe3ee0284c8f65 new file mode 100644 index 0000000000..184d504cb4 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/build-script-build_script_build-7afe3ee0284c8f65 @@ -0,0 +1 @@ +d39dfb72b3b66e9c \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/build-script-build_script_build-7afe3ee0284c8f65.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/build-script-build_script_build-7afe3ee0284c8f65.json new file mode 100644 index 0000000000..d4e66ea350 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/build-script-build_script_build-7afe3ee0284c8f65.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[\"default\", \"limit_128\"]","target":17567538301449956701,"profile":731176819336294830,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/dep-build-script-build_script_build-7afe3ee0284c8f65 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/dep-build-script-build_script_build-7afe3ee0284c8f65 new file mode 100644 index 0000000000..e80da2d145 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-7afe3ee0284c8f65/dep-build-script-build_script_build-7afe3ee0284c8f65 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-aa6f78c4ab60ae0c/build b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-aa6f78c4ab60ae0c/build new file mode 100644 index 0000000000..9804052576 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-aa6f78c4ab60ae0c/build @@ -0,0 +1 @@ +41e076aa8725cdfd \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-aa6f78c4ab60ae0c/build.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-aa6f78c4ab60ae0c/build.json new file mode 100644 index 0000000000..749cfa2b91 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/crunchy-aa6f78c4ab60ae0c/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/dep-lib-fixed_hash-1efcfb7c375dbdea b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/dep-lib-fixed_hash-1efcfb7c375dbdea new file mode 100644 index 0000000000..c37a269589 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/dep-lib-fixed_hash-1efcfb7c375dbdea differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/lib-fixed_hash-1efcfb7c375dbdea b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/lib-fixed_hash-1efcfb7c375dbdea new file mode 100644 index 0000000000..6d6e5ca597 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/lib-fixed_hash-1efcfb7c375dbdea @@ -0,0 +1 @@ +d79a3e2b5eee98da \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/lib-fixed_hash-1efcfb7c375dbdea.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/lib-fixed_hash-1efcfb7c375dbdea.json new file mode 100644 index 0000000000..1bed924418 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/fixed-hash-1efcfb7c375dbdea/lib-fixed_hash-1efcfb7c375dbdea.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":5013696897081889700,"profile":731176819336294830,"deps":[],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/build-script-build_script_build-284228216c0862ab b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/build-script-build_script_build-284228216c0862ab new file mode 100644 index 0000000000..db8d63b4bb --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/build-script-build_script_build-284228216c0862ab @@ -0,0 +1 @@ +2a7515528f889773 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/build-script-build_script_build-284228216c0862ab.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/build-script-build_script_build-284228216c0862ab.json new file mode 100644 index 0000000000..253b5692c5 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/build-script-build_script_build-284228216c0862ab.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":17887640050043915344,"profile":731176819336294830,"deps":[["rustc_version v0.2.1",8668969671064323358]],"local":[{"MtimeBased":[[1518042632,805481967],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/dep-build-script-build_script_build-284228216c0862ab"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/dep-build-script-build_script_build-284228216c0862ab b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/dep-build-script-build_script_build-284228216c0862ab new file mode 100644 index 0000000000..0400b8825d Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-284228216c0862ab/dep-build-script-build_script_build-284228216c0862ab differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/dep-lib-pwasm_alloc-5595e35c8d1d0375 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/dep-lib-pwasm_alloc-5595e35c8d1d0375 new file mode 100644 index 0000000000..c72895d4d7 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/dep-lib-pwasm_alloc-5595e35c8d1d0375 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/lib-pwasm_alloc-5595e35c8d1d0375 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/lib-pwasm_alloc-5595e35c8d1d0375 new file mode 100644 index 0000000000..ecc8285348 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/lib-pwasm_alloc-5595e35c8d1d0375 @@ -0,0 +1 @@ +75393c3c5de927c2 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/lib-pwasm_alloc-5595e35c8d1d0375.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/lib-pwasm_alloc-5595e35c8d1d0375.json new file mode 100644 index 0000000000..5810e7f9fc --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/lib-pwasm_alloc-5595e35c8d1d0375.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":16381687520801172552,"profile":731176819336294830,"deps":[["pwasm-libc v0.1.0 (file:///Users/gav/Core/polkadot/pwasm-libc)",2590986117911703621]],"local":[{"MtimeBased":[[1518042634,737180368],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-5595e35c8d1d0375/dep-lib-pwasm_alloc-5595e35c8d1d0375"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-b07d4b56ebd67f50/build b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-b07d4b56ebd67f50/build new file mode 100644 index 0000000000..3984baaa22 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-b07d4b56ebd67f50/build @@ -0,0 +1 @@ +61589799b5bfcd78 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-b07d4b56ebd67f50/build.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-b07d4b56ebd67f50/build.json new file mode 100644 index 0000000000..8975d111e6 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-alloc-b07d4b56ebd67f50/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"deps":[],"local":[{"Precalculated":"1517994929.962496350s (/Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/dep-lib-pwasm_libc-ee4fc689433c70fc b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/dep-lib-pwasm_libc-ee4fc689433c70fc new file mode 100644 index 0000000000..dc9b6c9049 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/dep-lib-pwasm_libc-ee4fc689433c70fc differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/lib-pwasm_libc-ee4fc689433c70fc b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/lib-pwasm_libc-ee4fc689433c70fc new file mode 100644 index 0000000000..c5040f49cf --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/lib-pwasm_libc-ee4fc689433c70fc @@ -0,0 +1 @@ +457018882508f523 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/lib-pwasm_libc-ee4fc689433c70fc.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/lib-pwasm_libc-ee4fc689433c70fc.json new file mode 100644 index 0000000000..ffb9678342 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/lib-pwasm_libc-ee4fc689433c70fc.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":346745090441272009,"profile":731176819336294830,"deps":[],"local":[{"MtimeBased":[[1518042629,751015578],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/debug/.fingerprint/pwasm-libc-ee4fc689433c70fc/dep-lib-pwasm_libc-ee4fc689433c70fc"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/dep-lib-rustc_hex-36874c31cb1e074b b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/dep-lib-rustc_hex-36874c31cb1e074b new file mode 100644 index 0000000000..12a9c48e30 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/dep-lib-rustc_hex-36874c31cb1e074b differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/lib-rustc_hex-36874c31cb1e074b b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/lib-rustc_hex-36874c31cb1e074b new file mode 100644 index 0000000000..33ac59bddf --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/lib-rustc_hex-36874c31cb1e074b @@ -0,0 +1 @@ +a9bba54c23cf64a7 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/lib-rustc_hex-36874c31cb1e074b.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/lib-rustc_hex-36874c31cb1e074b.json new file mode 100644 index 0000000000..c94523eaca --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc-hex-36874c31cb1e074b/lib-rustc_hex-36874c31cb1e074b.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":16670102957649486419,"profile":731176819336294830,"deps":[],"local":[{"Precalculated":"ee2ec40b9062ac7769ccb9dc891d6dc2cc9009d7"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/dep-lib-rustc_version-5b6a601163a6fa82 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/dep-lib-rustc_version-5b6a601163a6fa82 new file mode 100644 index 0000000000..97d6fd04b3 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/dep-lib-rustc_version-5b6a601163a6fa82 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/lib-rustc_version-5b6a601163a6fa82 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/lib-rustc_version-5b6a601163a6fa82 new file mode 100644 index 0000000000..5a585b2c1a --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/lib-rustc_version-5b6a601163a6fa82 @@ -0,0 +1 @@ +1e856c54fc5d4e78 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/lib-rustc_version-5b6a601163a6fa82.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/lib-rustc_version-5b6a601163a6fa82.json new file mode 100644 index 0000000000..7d9e7fca6f --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/rustc_version-5b6a601163a6fa82/lib-rustc_version-5b6a601163a6fa82.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":1494946782096695454,"profile":731176819336294830,"deps":[["semver v0.6.0",9778926162762572505]],"local":[{"Precalculated":"0.2.1"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/dep-lib-semver-c1ec2df066d48dfc b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/dep-lib-semver-c1ec2df066d48dfc new file mode 100644 index 0000000000..abca858117 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/dep-lib-semver-c1ec2df066d48dfc differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/lib-semver-c1ec2df066d48dfc b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/lib-semver-c1ec2df066d48dfc new file mode 100644 index 0000000000..370b9a9cca --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/lib-semver-c1ec2df066d48dfc @@ -0,0 +1 @@ +d9a23cb888b9b587 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/lib-semver-c1ec2df066d48dfc.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/lib-semver-c1ec2df066d48dfc.json new file mode 100644 index 0000000000..4f3bf8dd1e --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-c1ec2df066d48dfc/lib-semver-c1ec2df066d48dfc.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[\"default\"]","target":356893538095437893,"profile":731176819336294830,"deps":[["semver-parser v0.7.0",6177733820198020260]],"local":[{"Precalculated":"0.6.0"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/dep-lib-semver_parser-76e51e73206527e9 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/dep-lib-semver_parser-76e51e73206527e9 new file mode 100644 index 0000000000..eaf76a6ff9 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/dep-lib-semver_parser-76e51e73206527e9 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/lib-semver_parser-76e51e73206527e9 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/lib-semver_parser-76e51e73206527e9 new file mode 100644 index 0000000000..dc40ecb45d --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/lib-semver_parser-76e51e73206527e9 @@ -0,0 +1 @@ +a4e4d1ad2db8bb55 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/lib-semver_parser-76e51e73206527e9.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/lib-semver_parser-76e51e73206527e9.json new file mode 100644 index 0000000000..215a0ad36d --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/semver-parser-76e51e73206527e9/lib-semver_parser-76e51e73206527e9.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":11743311642726602848,"profile":731176819336294830,"deps":[],"local":[{"Precalculated":"0.7.0"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/dep-lib-serde-133bbc10deb4b2bf b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/dep-lib-serde-133bbc10deb4b2bf new file mode 100644 index 0000000000..2ecf85d04a Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/dep-lib-serde-133bbc10deb4b2bf differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/lib-serde-133bbc10deb4b2bf b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/lib-serde-133bbc10deb4b2bf new file mode 100644 index 0000000000..98294be09e --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/lib-serde-133bbc10deb4b2bf @@ -0,0 +1 @@ +1497f6e800bfad1b \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/lib-serde-133bbc10deb4b2bf.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/lib-serde-133bbc10deb4b2bf.json new file mode 100644 index 0000000000..4ce178b481 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/serde-133bbc10deb4b2bf/lib-serde-133bbc10deb4b2bf.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":13503936060867580529,"profile":731176819336294830,"deps":[],"local":[{"Precalculated":"1.0.27"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-30f9d13785183581/build b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-30f9d13785183581/build new file mode 100644 index 0000000000..bda09580bd --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-30f9d13785183581/build @@ -0,0 +1 @@ +f6923b777ce33247 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-30f9d13785183581/build.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-30f9d13785183581/build.json new file mode 100644 index 0000000000..50ab271fac --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-30f9d13785183581/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"deps":[],"local":[{"Precalculated":"1518041862.368589700s (/Users/gav/Core/polkadot/runtime-io/Cargo.toml)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/build-script-build_script_build-a912dae9a71befc0 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/build-script-build_script_build-a912dae9a71befc0 new file mode 100644 index 0000000000..9bdbd8afea --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/build-script-build_script_build-a912dae9a71befc0 @@ -0,0 +1 @@ +7ab680d3aa1d3f04 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/build-script-build_script_build-a912dae9a71befc0.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/build-script-build_script_build-a912dae9a71befc0.json new file mode 100644 index 0000000000..9e52727e2f --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/build-script-build_script_build-a912dae9a71befc0.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":8247738107769607372,"profile":731176819336294830,"deps":[["rustc_version v0.2.1",8668969671064323358]],"local":[{"MtimeBased":[[1518042633,343397590],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/dep-build-script-build_script_build-a912dae9a71befc0"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/dep-build-script-build_script_build-a912dae9a71befc0 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/dep-build-script-build_script_build-a912dae9a71befc0 new file mode 100644 index 0000000000..356b05e36e Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-io-a912dae9a71befc0/dep-build-script-build_script_build-a912dae9a71befc0 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-0e3391d038d16e52/build b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-0e3391d038d16e52/build new file mode 100644 index 0000000000..e7272ae863 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-0e3391d038d16e52/build @@ -0,0 +1 @@ +7898f71b5707e68f \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-0e3391d038d16e52/build.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-0e3391d038d16e52/build.json new file mode 100644 index 0000000000..e42266c66c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-0e3391d038d16e52/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"deps":[],"local":[{"Precalculated":"1518021996.209388061s (/Users/gav/Core/polkadot/runtime-std/without_std.rs)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/build-script-build_script_build-61d54fefa7496f50 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/build-script-build_script_build-61d54fefa7496f50 new file mode 100644 index 0000000000..a1bbce8c2f --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/build-script-build_script_build-61d54fefa7496f50 @@ -0,0 +1 @@ +d58d98706c38c30b \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/build-script-build_script_build-61d54fefa7496f50.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/build-script-build_script_build-61d54fefa7496f50.json new file mode 100644 index 0000000000..f1383c260c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/build-script-build_script_build-61d54fefa7496f50.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":11758734124015086991,"profile":731176819336294830,"deps":[["rustc_version v0.2.1",8668969671064323358]],"local":[{"MtimeBased":[[1518042633,834568473],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/dep-build-script-build_script_build-61d54fefa7496f50"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/dep-build-script-build_script_build-61d54fefa7496f50 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/dep-build-script-build_script_build-61d54fefa7496f50 new file mode 100644 index 0000000000..0d5638a383 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/substrate-runtime-std-61d54fefa7496f50/dep-build-script-build_script_build-61d54fefa7496f50 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/dep-lib-uint-00ce69ad7e7eb4d6 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/dep-lib-uint-00ce69ad7e7eb4d6 new file mode 100644 index 0000000000..f7a7a5a255 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/dep-lib-uint-00ce69ad7e7eb4d6 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/lib-uint-00ce69ad7e7eb4d6 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/lib-uint-00ce69ad7e7eb4d6 new file mode 100644 index 0000000000..e66f87e1e1 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/lib-uint-00ce69ad7e7eb4d6 @@ -0,0 +1 @@ +dca36084f0f5085a \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/lib-uint-00ce69ad7e7eb4d6.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/lib-uint-00ce69ad7e7eb4d6.json new file mode 100644 index 0000000000..f485271d22 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-00ce69ad7e7eb4d6/lib-uint-00ce69ad7e7eb4d6.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":16759311700645620298,"profile":731176819336294830,"deps":[["byteorder v1.2.1",10993048835373230728]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/build-script-build_script_build-07239eb1916014b7 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/build-script-build_script_build-07239eb1916014b7 new file mode 100644 index 0000000000..065aa74b6a --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/build-script-build_script_build-07239eb1916014b7 @@ -0,0 +1 @@ +6756bb8857284f95 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/build-script-build_script_build-07239eb1916014b7.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/build-script-build_script_build-07239eb1916014b7.json new file mode 100644 index 0000000000..80eb1b067b --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/build-script-build_script_build-07239eb1916014b7.json @@ -0,0 +1 @@ +{"rustc":2076919156954903493,"features":"[]","target":6771221677873906921,"profile":731176819336294830,"deps":[["rustc_version v0.2.1",8668969671064323358]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/dep-build-script-build_script_build-07239eb1916014b7 b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/dep-build-script-build_script_build-07239eb1916014b7 new file mode 100644 index 0000000000..a3c16b6e8a Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-07239eb1916014b7/dep-build-script-build_script_build-07239eb1916014b7 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-d3e5c9930d5fba2d/build b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-d3e5c9930d5fba2d/build new file mode 100644 index 0000000000..d3bf7725f1 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-d3e5c9930d5fba2d/build @@ -0,0 +1 @@ +4c01460e12fb5129 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-d3e5c9930d5fba2d/build.json b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-d3e5c9930d5fba2d/build.json new file mode 100644 index 0000000000..20eea1306a --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/.fingerprint/uint-d3e5c9930d5fba2d/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"deps":[],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build-script-build b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build-script-build new file mode 100755 index 0000000000..5d48aedf5c Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65 b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65 new file mode 100755 index 0000000000..5d48aedf5c Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65.dSYM/Contents/Info.plist b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65.dSYM/Contents/Info.plist new file mode 100644 index 0000000000..e6068c1682 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.build_script_build-7afe3ee0284c8f65 + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65.dSYM/Contents/Resources/DWARF/build_script_build-7afe3ee0284c8f65 b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65.dSYM/Contents/Resources/DWARF/build_script_build-7afe3ee0284c8f65 new file mode 100644 index 0000000000..ae87ff9736 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-7afe3ee0284c8f65/build_script_build-7afe3ee0284c8f65.dSYM/Contents/Resources/DWARF/build_script_build-7afe3ee0284c8f65 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-aa6f78c4ab60ae0c/out/lib.rs b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-aa6f78c4ab60ae0c/out/lib.rs new file mode 100644 index 0000000000..a038c018e5 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-aa6f78c4ab60ae0c/out/lib.rs @@ -0,0 +1,815 @@ + +/// Unroll the given for loop +/// +/// Example: +/// +/// ```ignore +/// unroll! { +/// for i in 0..5 { +/// println!("Iteration {}", i); +/// } +/// } +/// ``` +/// +/// will expand into: +/// +/// ```ignore +/// { println!("Iteration {}", 0); } +/// { println!("Iteration {}", 1); } +/// { println!("Iteration {}", 2); } +/// { println!("Iteration {}", 3); } +/// { println!("Iteration {}", 4); } +/// ``` +#[macro_export] +macro_rules! unroll { + (for $v:ident in 0..0 $c:block) => {}; + + (for $v:ident in 0..$b:tt {$($c:tt)*}) => { + #[allow(non_upper_case_globals)] + { unroll!(@$v, 0, $b, {$($c)*}); } + }; + + (@$v:ident, $a:expr, 0, $c:block) => { + { const $v: usize = $a; $c } + }; + + (@$v:ident, $a:expr, 1, $c:block) => { + { const $v: usize = $a; $c } + }; + + (@$v:ident, $a:expr, 2, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + }; + + (@$v:ident, $a:expr, 3, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + }; + + (@$v:ident, $a:expr, 4, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + }; + + (@$v:ident, $a:expr, 5, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + }; + + (@$v:ident, $a:expr, 6, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + }; + + (@$v:ident, $a:expr, 7, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + }; + + (@$v:ident, $a:expr, 8, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + }; + + (@$v:ident, $a:expr, 9, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + }; + + (@$v:ident, $a:expr, 10, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + }; + + (@$v:ident, $a:expr, 11, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + }; + + (@$v:ident, $a:expr, 12, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + }; + + (@$v:ident, $a:expr, 13, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + }; + + (@$v:ident, $a:expr, 14, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + }; + + (@$v:ident, $a:expr, 15, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + { const $v: usize = $a + 14; $c } + }; + + (@$v:ident, $a:expr, 16, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + { const $v: usize = $a + 14; $c } + { const $v: usize = $a + 15; $c } + }; + + (@$v:ident, $a:expr, 17, $c:block) => { + unroll!(@$v, $a, 16, $c); + { const $v: usize = $a + 16; $c } + }; + + (@$v:ident, $a:expr, 18, $c:block) => { + unroll!(@$v, $a, 9, $c); + unroll!(@$v, $a + 9, 9, $c); + }; + + (@$v:ident, $a:expr, 19, $c:block) => { + unroll!(@$v, $a, 18, $c); + { const $v: usize = $a + 18; $c } + }; + + (@$v:ident, $a:expr, 20, $c:block) => { + unroll!(@$v, $a, 10, $c); + unroll!(@$v, $a + 10, 10, $c); + }; + + (@$v:ident, $a:expr, 21, $c:block) => { + unroll!(@$v, $a, 20, $c); + { const $v: usize = $a + 20; $c } + }; + + (@$v:ident, $a:expr, 22, $c:block) => { + unroll!(@$v, $a, 11, $c); + unroll!(@$v, $a + 11, 11, $c); + }; + + (@$v:ident, $a:expr, 23, $c:block) => { + unroll!(@$v, $a, 22, $c); + { const $v: usize = $a + 22; $c } + }; + + (@$v:ident, $a:expr, 24, $c:block) => { + unroll!(@$v, $a, 12, $c); + unroll!(@$v, $a + 12, 12, $c); + }; + + (@$v:ident, $a:expr, 25, $c:block) => { + unroll!(@$v, $a, 24, $c); + { const $v: usize = $a + 24; $c } + }; + + (@$v:ident, $a:expr, 26, $c:block) => { + unroll!(@$v, $a, 13, $c); + unroll!(@$v, $a + 13, 13, $c); + }; + + (@$v:ident, $a:expr, 27, $c:block) => { + unroll!(@$v, $a, 26, $c); + { const $v: usize = $a + 26; $c } + }; + + (@$v:ident, $a:expr, 28, $c:block) => { + unroll!(@$v, $a, 14, $c); + unroll!(@$v, $a + 14, 14, $c); + }; + + (@$v:ident, $a:expr, 29, $c:block) => { + unroll!(@$v, $a, 28, $c); + { const $v: usize = $a + 28; $c } + }; + + (@$v:ident, $a:expr, 30, $c:block) => { + unroll!(@$v, $a, 15, $c); + unroll!(@$v, $a + 15, 15, $c); + }; + + (@$v:ident, $a:expr, 31, $c:block) => { + unroll!(@$v, $a, 30, $c); + { const $v: usize = $a + 30; $c } + }; + + (@$v:ident, $a:expr, 32, $c:block) => { + unroll!(@$v, $a, 16, $c); + unroll!(@$v, $a + 16, 16, $c); + }; + + (@$v:ident, $a:expr, 33, $c:block) => { + unroll!(@$v, $a, 32, $c); + { const $v: usize = $a + 32; $c } + }; + + (@$v:ident, $a:expr, 34, $c:block) => { + unroll!(@$v, $a, 17, $c); + unroll!(@$v, $a + 17, 17, $c); + }; + + (@$v:ident, $a:expr, 35, $c:block) => { + unroll!(@$v, $a, 34, $c); + { const $v: usize = $a + 34; $c } + }; + + (@$v:ident, $a:expr, 36, $c:block) => { + unroll!(@$v, $a, 18, $c); + unroll!(@$v, $a + 18, 18, $c); + }; + + (@$v:ident, $a:expr, 37, $c:block) => { + unroll!(@$v, $a, 36, $c); + { const $v: usize = $a + 36; $c } + }; + + (@$v:ident, $a:expr, 38, $c:block) => { + unroll!(@$v, $a, 19, $c); + unroll!(@$v, $a + 19, 19, $c); + }; + + (@$v:ident, $a:expr, 39, $c:block) => { + unroll!(@$v, $a, 38, $c); + { const $v: usize = $a + 38; $c } + }; + + (@$v:ident, $a:expr, 40, $c:block) => { + unroll!(@$v, $a, 20, $c); + unroll!(@$v, $a + 20, 20, $c); + }; + + (@$v:ident, $a:expr, 41, $c:block) => { + unroll!(@$v, $a, 40, $c); + { const $v: usize = $a + 40; $c } + }; + + (@$v:ident, $a:expr, 42, $c:block) => { + unroll!(@$v, $a, 21, $c); + unroll!(@$v, $a + 21, 21, $c); + }; + + (@$v:ident, $a:expr, 43, $c:block) => { + unroll!(@$v, $a, 42, $c); + { const $v: usize = $a + 42; $c } + }; + + (@$v:ident, $a:expr, 44, $c:block) => { + unroll!(@$v, $a, 22, $c); + unroll!(@$v, $a + 22, 22, $c); + }; + + (@$v:ident, $a:expr, 45, $c:block) => { + unroll!(@$v, $a, 44, $c); + { const $v: usize = $a + 44; $c } + }; + + (@$v:ident, $a:expr, 46, $c:block) => { + unroll!(@$v, $a, 23, $c); + unroll!(@$v, $a + 23, 23, $c); + }; + + (@$v:ident, $a:expr, 47, $c:block) => { + unroll!(@$v, $a, 46, $c); + { const $v: usize = $a + 46; $c } + }; + + (@$v:ident, $a:expr, 48, $c:block) => { + unroll!(@$v, $a, 24, $c); + unroll!(@$v, $a + 24, 24, $c); + }; + + (@$v:ident, $a:expr, 49, $c:block) => { + unroll!(@$v, $a, 48, $c); + { const $v: usize = $a + 48; $c } + }; + + (@$v:ident, $a:expr, 50, $c:block) => { + unroll!(@$v, $a, 25, $c); + unroll!(@$v, $a + 25, 25, $c); + }; + + (@$v:ident, $a:expr, 51, $c:block) => { + unroll!(@$v, $a, 50, $c); + { const $v: usize = $a + 50; $c } + }; + + (@$v:ident, $a:expr, 52, $c:block) => { + unroll!(@$v, $a, 26, $c); + unroll!(@$v, $a + 26, 26, $c); + }; + + (@$v:ident, $a:expr, 53, $c:block) => { + unroll!(@$v, $a, 52, $c); + { const $v: usize = $a + 52; $c } + }; + + (@$v:ident, $a:expr, 54, $c:block) => { + unroll!(@$v, $a, 27, $c); + unroll!(@$v, $a + 27, 27, $c); + }; + + (@$v:ident, $a:expr, 55, $c:block) => { + unroll!(@$v, $a, 54, $c); + { const $v: usize = $a + 54; $c } + }; + + (@$v:ident, $a:expr, 56, $c:block) => { + unroll!(@$v, $a, 28, $c); + unroll!(@$v, $a + 28, 28, $c); + }; + + (@$v:ident, $a:expr, 57, $c:block) => { + unroll!(@$v, $a, 56, $c); + { const $v: usize = $a + 56; $c } + }; + + (@$v:ident, $a:expr, 58, $c:block) => { + unroll!(@$v, $a, 29, $c); + unroll!(@$v, $a + 29, 29, $c); + }; + + (@$v:ident, $a:expr, 59, $c:block) => { + unroll!(@$v, $a, 58, $c); + { const $v: usize = $a + 58; $c } + }; + + (@$v:ident, $a:expr, 60, $c:block) => { + unroll!(@$v, $a, 30, $c); + unroll!(@$v, $a + 30, 30, $c); + }; + + (@$v:ident, $a:expr, 61, $c:block) => { + unroll!(@$v, $a, 60, $c); + { const $v: usize = $a + 60; $c } + }; + + (@$v:ident, $a:expr, 62, $c:block) => { + unroll!(@$v, $a, 31, $c); + unroll!(@$v, $a + 31, 31, $c); + }; + + (@$v:ident, $a:expr, 63, $c:block) => { + unroll!(@$v, $a, 62, $c); + { const $v: usize = $a + 62; $c } + }; + + (@$v:ident, $a:expr, 64, $c:block) => { + unroll!(@$v, $a, 32, $c); + unroll!(@$v, $a + 32, 32, $c); + }; + + (@$v:ident, $a:expr, 65, $c:block) => { + unroll!(@$v, $a, 64, $c); + { const $v: usize = $a + 64; $c } + }; + + (@$v:ident, $a:expr, 66, $c:block) => { + unroll!(@$v, $a, 33, $c); + unroll!(@$v, $a + 33, 33, $c); + }; + + (@$v:ident, $a:expr, 67, $c:block) => { + unroll!(@$v, $a, 66, $c); + { const $v: usize = $a + 66; $c } + }; + + (@$v:ident, $a:expr, 68, $c:block) => { + unroll!(@$v, $a, 34, $c); + unroll!(@$v, $a + 34, 34, $c); + }; + + (@$v:ident, $a:expr, 69, $c:block) => { + unroll!(@$v, $a, 68, $c); + { const $v: usize = $a + 68; $c } + }; + + (@$v:ident, $a:expr, 70, $c:block) => { + unroll!(@$v, $a, 35, $c); + unroll!(@$v, $a + 35, 35, $c); + }; + + (@$v:ident, $a:expr, 71, $c:block) => { + unroll!(@$v, $a, 70, $c); + { const $v: usize = $a + 70; $c } + }; + + (@$v:ident, $a:expr, 72, $c:block) => { + unroll!(@$v, $a, 36, $c); + unroll!(@$v, $a + 36, 36, $c); + }; + + (@$v:ident, $a:expr, 73, $c:block) => { + unroll!(@$v, $a, 72, $c); + { const $v: usize = $a + 72; $c } + }; + + (@$v:ident, $a:expr, 74, $c:block) => { + unroll!(@$v, $a, 37, $c); + unroll!(@$v, $a + 37, 37, $c); + }; + + (@$v:ident, $a:expr, 75, $c:block) => { + unroll!(@$v, $a, 74, $c); + { const $v: usize = $a + 74; $c } + }; + + (@$v:ident, $a:expr, 76, $c:block) => { + unroll!(@$v, $a, 38, $c); + unroll!(@$v, $a + 38, 38, $c); + }; + + (@$v:ident, $a:expr, 77, $c:block) => { + unroll!(@$v, $a, 76, $c); + { const $v: usize = $a + 76; $c } + }; + + (@$v:ident, $a:expr, 78, $c:block) => { + unroll!(@$v, $a, 39, $c); + unroll!(@$v, $a + 39, 39, $c); + }; + + (@$v:ident, $a:expr, 79, $c:block) => { + unroll!(@$v, $a, 78, $c); + { const $v: usize = $a + 78; $c } + }; + + (@$v:ident, $a:expr, 80, $c:block) => { + unroll!(@$v, $a, 40, $c); + unroll!(@$v, $a + 40, 40, $c); + }; + + (@$v:ident, $a:expr, 81, $c:block) => { + unroll!(@$v, $a, 80, $c); + { const $v: usize = $a + 80; $c } + }; + + (@$v:ident, $a:expr, 82, $c:block) => { + unroll!(@$v, $a, 41, $c); + unroll!(@$v, $a + 41, 41, $c); + }; + + (@$v:ident, $a:expr, 83, $c:block) => { + unroll!(@$v, $a, 82, $c); + { const $v: usize = $a + 82; $c } + }; + + (@$v:ident, $a:expr, 84, $c:block) => { + unroll!(@$v, $a, 42, $c); + unroll!(@$v, $a + 42, 42, $c); + }; + + (@$v:ident, $a:expr, 85, $c:block) => { + unroll!(@$v, $a, 84, $c); + { const $v: usize = $a + 84; $c } + }; + + (@$v:ident, $a:expr, 86, $c:block) => { + unroll!(@$v, $a, 43, $c); + unroll!(@$v, $a + 43, 43, $c); + }; + + (@$v:ident, $a:expr, 87, $c:block) => { + unroll!(@$v, $a, 86, $c); + { const $v: usize = $a + 86; $c } + }; + + (@$v:ident, $a:expr, 88, $c:block) => { + unroll!(@$v, $a, 44, $c); + unroll!(@$v, $a + 44, 44, $c); + }; + + (@$v:ident, $a:expr, 89, $c:block) => { + unroll!(@$v, $a, 88, $c); + { const $v: usize = $a + 88; $c } + }; + + (@$v:ident, $a:expr, 90, $c:block) => { + unroll!(@$v, $a, 45, $c); + unroll!(@$v, $a + 45, 45, $c); + }; + + (@$v:ident, $a:expr, 91, $c:block) => { + unroll!(@$v, $a, 90, $c); + { const $v: usize = $a + 90; $c } + }; + + (@$v:ident, $a:expr, 92, $c:block) => { + unroll!(@$v, $a, 46, $c); + unroll!(@$v, $a + 46, 46, $c); + }; + + (@$v:ident, $a:expr, 93, $c:block) => { + unroll!(@$v, $a, 92, $c); + { const $v: usize = $a + 92; $c } + }; + + (@$v:ident, $a:expr, 94, $c:block) => { + unroll!(@$v, $a, 47, $c); + unroll!(@$v, $a + 47, 47, $c); + }; + + (@$v:ident, $a:expr, 95, $c:block) => { + unroll!(@$v, $a, 94, $c); + { const $v: usize = $a + 94; $c } + }; + + (@$v:ident, $a:expr, 96, $c:block) => { + unroll!(@$v, $a, 48, $c); + unroll!(@$v, $a + 48, 48, $c); + }; + + (@$v:ident, $a:expr, 97, $c:block) => { + unroll!(@$v, $a, 96, $c); + { const $v: usize = $a + 96; $c } + }; + + (@$v:ident, $a:expr, 98, $c:block) => { + unroll!(@$v, $a, 49, $c); + unroll!(@$v, $a + 49, 49, $c); + }; + + (@$v:ident, $a:expr, 99, $c:block) => { + unroll!(@$v, $a, 98, $c); + { const $v: usize = $a + 98; $c } + }; + + (@$v:ident, $a:expr, 100, $c:block) => { + unroll!(@$v, $a, 50, $c); + unroll!(@$v, $a + 50, 50, $c); + }; + + (@$v:ident, $a:expr, 101, $c:block) => { + unroll!(@$v, $a, 100, $c); + { const $v: usize = $a + 100; $c } + }; + + (@$v:ident, $a:expr, 102, $c:block) => { + unroll!(@$v, $a, 51, $c); + unroll!(@$v, $a + 51, 51, $c); + }; + + (@$v:ident, $a:expr, 103, $c:block) => { + unroll!(@$v, $a, 102, $c); + { const $v: usize = $a + 102; $c } + }; + + (@$v:ident, $a:expr, 104, $c:block) => { + unroll!(@$v, $a, 52, $c); + unroll!(@$v, $a + 52, 52, $c); + }; + + (@$v:ident, $a:expr, 105, $c:block) => { + unroll!(@$v, $a, 104, $c); + { const $v: usize = $a + 104; $c } + }; + + (@$v:ident, $a:expr, 106, $c:block) => { + unroll!(@$v, $a, 53, $c); + unroll!(@$v, $a + 53, 53, $c); + }; + + (@$v:ident, $a:expr, 107, $c:block) => { + unroll!(@$v, $a, 106, $c); + { const $v: usize = $a + 106; $c } + }; + + (@$v:ident, $a:expr, 108, $c:block) => { + unroll!(@$v, $a, 54, $c); + unroll!(@$v, $a + 54, 54, $c); + }; + + (@$v:ident, $a:expr, 109, $c:block) => { + unroll!(@$v, $a, 108, $c); + { const $v: usize = $a + 108; $c } + }; + + (@$v:ident, $a:expr, 110, $c:block) => { + unroll!(@$v, $a, 55, $c); + unroll!(@$v, $a + 55, 55, $c); + }; + + (@$v:ident, $a:expr, 111, $c:block) => { + unroll!(@$v, $a, 110, $c); + { const $v: usize = $a + 110; $c } + }; + + (@$v:ident, $a:expr, 112, $c:block) => { + unroll!(@$v, $a, 56, $c); + unroll!(@$v, $a + 56, 56, $c); + }; + + (@$v:ident, $a:expr, 113, $c:block) => { + unroll!(@$v, $a, 112, $c); + { const $v: usize = $a + 112; $c } + }; + + (@$v:ident, $a:expr, 114, $c:block) => { + unroll!(@$v, $a, 57, $c); + unroll!(@$v, $a + 57, 57, $c); + }; + + (@$v:ident, $a:expr, 115, $c:block) => { + unroll!(@$v, $a, 114, $c); + { const $v: usize = $a + 114; $c } + }; + + (@$v:ident, $a:expr, 116, $c:block) => { + unroll!(@$v, $a, 58, $c); + unroll!(@$v, $a + 58, 58, $c); + }; + + (@$v:ident, $a:expr, 117, $c:block) => { + unroll!(@$v, $a, 116, $c); + { const $v: usize = $a + 116; $c } + }; + + (@$v:ident, $a:expr, 118, $c:block) => { + unroll!(@$v, $a, 59, $c); + unroll!(@$v, $a + 59, 59, $c); + }; + + (@$v:ident, $a:expr, 119, $c:block) => { + unroll!(@$v, $a, 118, $c); + { const $v: usize = $a + 118; $c } + }; + + (@$v:ident, $a:expr, 120, $c:block) => { + unroll!(@$v, $a, 60, $c); + unroll!(@$v, $a + 60, 60, $c); + }; + + (@$v:ident, $a:expr, 121, $c:block) => { + unroll!(@$v, $a, 120, $c); + { const $v: usize = $a + 120; $c } + }; + + (@$v:ident, $a:expr, 122, $c:block) => { + unroll!(@$v, $a, 61, $c); + unroll!(@$v, $a + 61, 61, $c); + }; + + (@$v:ident, $a:expr, 123, $c:block) => { + unroll!(@$v, $a, 122, $c); + { const $v: usize = $a + 122; $c } + }; + + (@$v:ident, $a:expr, 124, $c:block) => { + unroll!(@$v, $a, 62, $c); + unroll!(@$v, $a + 62, 62, $c); + }; + + (@$v:ident, $a:expr, 125, $c:block) => { + unroll!(@$v, $a, 124, $c); + { const $v: usize = $a + 124; $c } + }; + + (@$v:ident, $a:expr, 126, $c:block) => { + unroll!(@$v, $a, 63, $c); + unroll!(@$v, $a + 63, 63, $c); + }; + + (@$v:ident, $a:expr, 127, $c:block) => { + unroll!(@$v, $a, 126, $c); + { const $v: usize = $a + 126; $c } + }; + + (@$v:ident, $a:expr, 128, $c:block) => { + unroll!(@$v, $a, 64, $c); + unroll!(@$v, $a + 64, 64, $c); + }; + +} + + +#[cfg(test)] +mod tests { + #[test] + fn test_all() { + { + let a: Vec = vec![]; + unroll! { + for i in 0..0 { + a.push(i); + } + } + assert_eq!(a, (0..0).collect::>()); + } + { + let mut a: Vec = vec![]; + unroll! { + for i in 0..1 { + a.push(i); + } + } + assert_eq!(a, (0..1).collect::>()); + } + { + let mut a: Vec = vec![]; + unroll! { + for i in 0..128 { + a.push(i); + } + } + assert_eq!(a, (0..128).collect::>()); + } + } +} diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-aa6f78c4ab60ae0c/output b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-aa6f78c4ab60ae0c/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-aa6f78c4ab60ae0c/stderr b/substrate/polkadot-runtime/wasm/target/debug/build/crunchy-aa6f78c4ab60ae0c/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build-script-build b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build-script-build new file mode 100755 index 0000000000..891a33e340 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab new file mode 100755 index 0000000000..891a33e340 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab.dSYM/Contents/Info.plist b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab.dSYM/Contents/Info.plist new file mode 100644 index 0000000000..0287a2f5eb --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.build_script_build-284228216c0862ab + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab.dSYM/Contents/Resources/DWARF/build_script_build-284228216c0862ab b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab.dSYM/Contents/Resources/DWARF/build_script_build-284228216c0862ab new file mode 100644 index 0000000000..ec6b034e6b Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-284228216c0862ab/build_script_build-284228216c0862ab.dSYM/Contents/Resources/DWARF/build_script_build-284228216c0862ab differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-b07d4b56ebd67f50/output b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-b07d4b56ebd67f50/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-b07d4b56ebd67f50/stderr b/substrate/polkadot-runtime/wasm/target/debug/build/pwasm-alloc-b07d4b56ebd67f50/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-30f9d13785183581/output b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-30f9d13785183581/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-30f9d13785183581/stderr b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-30f9d13785183581/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build-script-build b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build-script-build new file mode 100755 index 0000000000..504a946ce9 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0 b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0 new file mode 100755 index 0000000000..504a946ce9 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0.dSYM/Contents/Info.plist b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0.dSYM/Contents/Info.plist new file mode 100644 index 0000000000..109bcc3262 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.build_script_build-a912dae9a71befc0 + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0.dSYM/Contents/Resources/DWARF/build_script_build-a912dae9a71befc0 b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0.dSYM/Contents/Resources/DWARF/build_script_build-a912dae9a71befc0 new file mode 100644 index 0000000000..a00bbf5abd Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-io-a912dae9a71befc0/build_script_build-a912dae9a71befc0.dSYM/Contents/Resources/DWARF/build_script_build-a912dae9a71befc0 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-0e3391d038d16e52/output b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-0e3391d038d16e52/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-0e3391d038d16e52/stderr b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-0e3391d038d16e52/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build-script-build b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build-script-build new file mode 100755 index 0000000000..236cc114c1 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50 b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50 new file mode 100755 index 0000000000..236cc114c1 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50.dSYM/Contents/Info.plist b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50.dSYM/Contents/Info.plist new file mode 100644 index 0000000000..7f2ea73b96 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.build_script_build-61d54fefa7496f50 + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50.dSYM/Contents/Resources/DWARF/build_script_build-61d54fefa7496f50 b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50.dSYM/Contents/Resources/DWARF/build_script_build-61d54fefa7496f50 new file mode 100644 index 0000000000..2a8b0346bf Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/substrate-runtime-std-61d54fefa7496f50/build_script_build-61d54fefa7496f50.dSYM/Contents/Resources/DWARF/build_script_build-61d54fefa7496f50 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build-script-build b/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build-script-build new file mode 100755 index 0000000000..83bc45ca21 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7 b/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7 new file mode 100755 index 0000000000..83bc45ca21 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7.dSYM/Contents/Info.plist b/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7.dSYM/Contents/Info.plist new file mode 100644 index 0000000000..226c5a1a2b --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.build_script_build-07239eb1916014b7 + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7.dSYM/Contents/Resources/DWARF/build_script_build-07239eb1916014b7 b/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7.dSYM/Contents/Resources/DWARF/build_script_build-07239eb1916014b7 new file mode 100644 index 0000000000..cb6b21f0de Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/build/uint-07239eb1916014b7/build_script_build-07239eb1916014b7.dSYM/Contents/Resources/DWARF/build_script_build-07239eb1916014b7 differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/uint-d3e5c9930d5fba2d/output b/substrate/polkadot-runtime/wasm/target/debug/build/uint-d3e5c9930d5fba2d/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/build/uint-d3e5c9930d5fba2d/stderr b/substrate/polkadot-runtime/wasm/target/debug/build/uint-d3e5c9930d5fba2d/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libbyteorder-d042eee36ae0c5bf.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libbyteorder-d042eee36ae0c5bf.rlib new file mode 100644 index 0000000000..acf8e6c1fb Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libbyteorder-d042eee36ae0c5bf.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libcrunchy-428ca79f7094ae1b.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libcrunchy-428ca79f7094ae1b.rlib new file mode 100644 index 0000000000..42d8f54c4e Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libcrunchy-428ca79f7094ae1b.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libfixed_hash-1efcfb7c375dbdea.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libfixed_hash-1efcfb7c375dbdea.rlib new file mode 100644 index 0000000000..720e8cea06 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libfixed_hash-1efcfb7c375dbdea.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libpwasm_alloc-5595e35c8d1d0375.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libpwasm_alloc-5595e35c8d1d0375.rlib new file mode 100644 index 0000000000..9604a252a6 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libpwasm_alloc-5595e35c8d1d0375.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libpwasm_libc-ee4fc689433c70fc.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libpwasm_libc-ee4fc689433c70fc.rlib new file mode 100644 index 0000000000..00d19f38d3 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libpwasm_libc-ee4fc689433c70fc.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/librustc_hex-36874c31cb1e074b.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/librustc_hex-36874c31cb1e074b.rlib new file mode 100644 index 0000000000..bc9c0f713b Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/librustc_hex-36874c31cb1e074b.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/librustc_version-5b6a601163a6fa82.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/librustc_version-5b6a601163a6fa82.rlib new file mode 100644 index 0000000000..bc3c43af22 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/librustc_version-5b6a601163a6fa82.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libsemver-c1ec2df066d48dfc.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libsemver-c1ec2df066d48dfc.rlib new file mode 100644 index 0000000000..d7fbb493b1 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libsemver-c1ec2df066d48dfc.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libsemver_parser-76e51e73206527e9.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libsemver_parser-76e51e73206527e9.rlib new file mode 100644 index 0000000000..f99ab01379 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libsemver_parser-76e51e73206527e9.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libserde-133bbc10deb4b2bf.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libserde-133bbc10deb4b2bf.rlib new file mode 100644 index 0000000000..4ad04c7ed0 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libserde-133bbc10deb4b2bf.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/debug/deps/libuint-00ce69ad7e7eb4d6.rlib b/substrate/polkadot-runtime/wasm/target/debug/deps/libuint-00ce69ad7e7eb4d6.rlib new file mode 100644 index 0000000000..fc30db6f03 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/debug/deps/libuint-00ce69ad7e7eb4d6.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/release/.cargo-lock b/substrate/polkadot-runtime/wasm/target/release/.cargo-lock new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31 new file mode 100644 index 0000000000..387eafd6fa --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31 @@ -0,0 +1 @@ +509ab6c31e1913df \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31.json b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31.json new file mode 100644 index 0000000000..3ff48ff218 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/build-script-build_script_build-ba89b7917d65ca31.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[\"default\", \"limit_128\"]","target":13123923088509177768,"profile":15831810099150395678,"path":17295367238253398808,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/dep-build-script-build_script_build-ba89b7917d65ca31 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/dep-build-script-build_script_build-ba89b7917d65ca31 new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/crunchy-ba89b7917d65ca31/dep-build-script-build_script_build-ba89b7917d65ca31 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc new file mode 100644 index 0000000000..157d903e8e --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc @@ -0,0 +1 @@ +a35a46947bb1691f \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc.json b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc.json new file mode 100644 index 0000000000..2cb900de10 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/build-script-build_script_build-9efd6681e33ed7dc.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":18408649954394303363,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"MtimeBased":[[1518042142,667048106],".fingerprint/pwasm-alloc-9efd6681e33ed7dc/dep-build-script-build_script_build-9efd6681e33ed7dc"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/dep-build-script-build_script_build-9efd6681e33ed7dc b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/dep-build-script-build_script_build-9efd6681e33ed7dc new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/pwasm-alloc-9efd6681e33ed7dc/dep-build-script-build_script_build-9efd6681e33ed7dc differ diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/dep-lib-rustc_version-52eacf6c66e1ba36 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/dep-lib-rustc_version-52eacf6c66e1ba36 new file mode 100644 index 0000000000..0b84ba17df Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/dep-lib-rustc_version-52eacf6c66e1ba36 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36 new file mode 100644 index 0000000000..95aa27b842 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36 @@ -0,0 +1 @@ +fbf5f7fc3344307c \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36.json b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36.json new file mode 100644 index 0000000000..8e186d178a --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/rustc_version-52eacf6c66e1ba36/lib-rustc_version-52eacf6c66e1ba36.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":2911174158177029576,"profile":15831810099150395678,"path":6202745217820959734,"deps":[["semver v0.6.0",10648209201870242739]],"local":[{"Precalculated":"0.2.1"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/dep-lib-semver-328d49bcb3959b88 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/dep-lib-semver-328d49bcb3959b88 new file mode 100644 index 0000000000..e73c546989 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/dep-lib-semver-328d49bcb3959b88 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88 new file mode 100644 index 0000000000..87a77a78a3 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88 @@ -0,0 +1 @@ +b383853bda09c693 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88.json b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88.json new file mode 100644 index 0000000000..32d2d1d81f --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-328d49bcb3959b88/lib-semver-328d49bcb3959b88.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[\"default\"]","target":5374856119854582530,"profile":15831810099150395678,"path":3843670531440957878,"deps":[["semver-parser v0.7.0",13277112978033470570]],"local":[{"Precalculated":"0.6.0"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/dep-lib-semver_parser-feab2da7d241c6c5 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/dep-lib-semver_parser-feab2da7d241c6c5 new file mode 100644 index 0000000000..f1d2bcf07b Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/dep-lib-semver_parser-feab2da7d241c6c5 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5 new file mode 100644 index 0000000000..9b3aa07cc9 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5 @@ -0,0 +1 @@ +6aec698ae8c741b8 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5.json b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5.json new file mode 100644 index 0000000000..a109e557d6 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/semver-parser-feab2da7d241c6c5/lib-semver_parser-feab2da7d241c6c5.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":18194665905980435929,"profile":15831810099150395678,"path":4437724614573083703,"deps":[],"local":[{"Precalculated":"0.7.0"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5 new file mode 100644 index 0000000000..0c14d82a1c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5 @@ -0,0 +1 @@ +3e1f3dfc3305479b \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5.json b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5.json new file mode 100644 index 0000000000..6d38e3c7d4 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/build-script-build_script_build-120f18841a83a6a5.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":2435122276712461288,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"MtimeBased":[[1518042142,689547362],".fingerprint/substrate-runtime-io-120f18841a83a6a5/dep-build-script-build_script_build-120f18841a83a6a5"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/dep-build-script-build_script_build-120f18841a83a6a5 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/dep-build-script-build_script_build-120f18841a83a6a5 new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-io-120f18841a83a6a5/dep-build-script-build_script_build-120f18841a83a6a5 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba new file mode 100644 index 0000000000..58e2537efe --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba @@ -0,0 +1 @@ +f1693956bc4a5efe \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba.json b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba.json new file mode 100644 index 0000000000..dc5b40d406 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/build-script-build_script_build-afc9f375808fedba.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":13931521184423664563,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"MtimeBased":[[1518042142,662358331],".fingerprint/substrate-runtime-std-afc9f375808fedba/dep-build-script-build_script_build-afc9f375808fedba"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/dep-build-script-build_script_build-afc9f375808fedba b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/dep-build-script-build_script_build-afc9f375808fedba new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/substrate-runtime-std-afc9f375808fedba/dep-build-script-build_script_build-afc9f375808fedba differ diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449 new file mode 100644 index 0000000000..a95f85528c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449 @@ -0,0 +1 @@ +f942310a64770c98 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449.json b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449.json new file mode 100644 index 0000000000..bd619e86b5 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/build-script-build_script_build-c1fc2da54927f449.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":925908939897551160,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/dep-build-script-build_script_build-c1fc2da54927f449 b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/dep-build-script-build_script_build-c1fc2da54927f449 new file mode 100644 index 0000000000..1b1b374ee4 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/.fingerprint/uint-c1fc2da54927f449/dep-build-script-build_script_build-c1fc2da54927f449 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build-script-build b/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build-script-build new file mode 100755 index 0000000000..b85ecfdab2 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31 b/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31 new file mode 100755 index 0000000000..b85ecfdab2 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31.d b/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31.d new file mode 100644 index 0000000000..6bafe204ba --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/build.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/crunchy-ba89b7917d65ca31/build_script_build-ba89b7917d65ca31.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/build.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/build.rs: diff --git a/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build-script-build b/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build-script-build new file mode 100755 index 0000000000..38428fd790 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc b/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc new file mode 100755 index 0000000000..38428fd790 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc.d b/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc.d new file mode 100644 index 0000000000..76f678e81c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc: /Users/gav/Core/polkadot/pwasm-alloc/build.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/pwasm-alloc-9efd6681e33ed7dc/build_script_build-9efd6681e33ed7dc.d: /Users/gav/Core/polkadot/pwasm-alloc/build.rs + +/Users/gav/Core/polkadot/pwasm-alloc/build.rs: diff --git a/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build-script-build b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build-script-build new file mode 100755 index 0000000000..387ad9cd53 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5 b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5 new file mode 100755 index 0000000000..387ad9cd53 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5.d b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5.d new file mode 100644 index 0000000000..8e32bd2bcf --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5: /Users/gav/Core/polkadot/runtime-io/build.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/substrate-runtime-io-120f18841a83a6a5/build_script_build-120f18841a83a6a5.d: /Users/gav/Core/polkadot/runtime-io/build.rs + +/Users/gav/Core/polkadot/runtime-io/build.rs: diff --git a/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build-script-build b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build-script-build new file mode 100755 index 0000000000..535ce308f9 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba new file mode 100755 index 0000000000..535ce308f9 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba.d b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba.d new file mode 100644 index 0000000000..6fdfc10438 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba: /Users/gav/Core/polkadot/runtime-std/build.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/substrate-runtime-std-afc9f375808fedba/build_script_build-afc9f375808fedba.d: /Users/gav/Core/polkadot/runtime-std/build.rs + +/Users/gav/Core/polkadot/runtime-std/build.rs: diff --git a/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build-script-build b/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build-script-build new file mode 100755 index 0000000000..b42f49c7b8 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build-script-build differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449 b/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449 new file mode 100755 index 0000000000..b42f49c7b8 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449 differ diff --git a/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449.d b/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449.d new file mode 100644 index 0000000000..6c739243e5 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/build.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/build/uint-c1fc2da54927f449/build_script_build-c1fc2da54927f449.d: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/build.rs + +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/build.rs: diff --git a/substrate/polkadot-runtime/wasm/target/release/deps/librustc_version-52eacf6c66e1ba36.rlib b/substrate/polkadot-runtime/wasm/target/release/deps/librustc_version-52eacf6c66e1ba36.rlib new file mode 100644 index 0000000000..b1d1fb3322 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/deps/librustc_version-52eacf6c66e1ba36.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/release/deps/libsemver-328d49bcb3959b88.rlib b/substrate/polkadot-runtime/wasm/target/release/deps/libsemver-328d49bcb3959b88.rlib new file mode 100644 index 0000000000..b11b52f069 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/deps/libsemver-328d49bcb3959b88.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/release/deps/libsemver_parser-feab2da7d241c6c5.rlib b/substrate/polkadot-runtime/wasm/target/release/deps/libsemver_parser-feab2da7d241c6c5.rlib new file mode 100644 index 0000000000..4ae1a7f210 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/release/deps/libsemver_parser-feab2da7d241c6c5.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/release/deps/rustc_version-52eacf6c66e1ba36.d b/substrate/polkadot-runtime/wasm/target/release/deps/rustc_version-52eacf6c66e1ba36.d new file mode 100644 index 0000000000..4bc2ca0264 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/deps/rustc_version-52eacf6c66e1ba36.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/deps/librustc_version-52eacf6c66e1ba36.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/errors.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/deps/rustc_version-52eacf6c66e1ba36.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/errors.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/lib.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc_version-0.2.1/src/errors.rs: diff --git a/substrate/polkadot-runtime/wasm/target/release/deps/semver-328d49bcb3959b88.d b/substrate/polkadot-runtime/wasm/target/release/deps/semver-328d49bcb3959b88.d new file mode 100644 index 0000000000..47ad07124e --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/deps/semver-328d49bcb3959b88.d @@ -0,0 +1,7 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/deps/libsemver-328d49bcb3959b88.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version_req.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/deps/semver-328d49bcb3959b88.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version_req.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/lib.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-0.6.0/src/version_req.rs: diff --git a/substrate/polkadot-runtime/wasm/target/release/deps/semver_parser-feab2da7d241c6c5.d b/substrate/polkadot-runtime/wasm/target/release/deps/semver_parser-feab2da7d241c6c5.d new file mode 100644 index 0000000000..8c16a956bf --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/release/deps/semver_parser-feab2da7d241c6c5.d @@ -0,0 +1,9 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/deps/libsemver_parser-feab2da7d241c6c5.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/version.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/range.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/common.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/recognize.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release/deps/semver_parser-feab2da7d241c6c5.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/version.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/range.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/common.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/recognize.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/lib.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/version.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/range.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/common.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.7.0/src/recognize.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.cargo-lock b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.cargo-lock new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/dep-lib-byteorder-43cd3f813a8b2478 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/dep-lib-byteorder-43cd3f813a8b2478 new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/dep-lib-byteorder-43cd3f813a8b2478 differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478 new file mode 100644 index 0000000000..21fc739f8c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478 @@ -0,0 +1 @@ +f4bfc3a1a783401d \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478.json new file mode 100644 index 0000000000..c2fb996f75 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/byteorder-43cd3f813a8b2478/lib-byteorder-43cd3f813a8b2478.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":4614426844476606629,"profile":15831810099150395678,"path":698767400166420428,"deps":[],"local":[{"Precalculated":"1.2.1"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/dep-lib-crunchy-44c14494c9b435da b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/dep-lib-crunchy-44c14494c9b435da new file mode 100644 index 0000000000..fd63987ecd Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/dep-lib-crunchy-44c14494c9b435da differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da new file mode 100644 index 0000000000..d920078e21 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da @@ -0,0 +1 @@ +dda0ec7806b72e92 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da.json new file mode 100644 index 0000000000..a7ee923ebb --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-44c14494c9b435da/lib-crunchy-44c14494c9b435da.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[\"default\", \"limit_128\"]","target":5870929089954252329,"profile":15831810099150395678,"path":9201763800142418467,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build new file mode 100644 index 0000000000..173b7e6a55 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build @@ -0,0 +1 @@ +c1e43e74d40c28af \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build.json new file mode 100644 index 0000000000..0067bb937f --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/crunchy-88f6af40709cf30d/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/dep-lib-fixed_hash-4d9ee4348cacca9e b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/dep-lib-fixed_hash-4d9ee4348cacca9e new file mode 100644 index 0000000000..20634396ba Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/dep-lib-fixed_hash-4d9ee4348cacca9e differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e new file mode 100644 index 0000000000..a20a96a3e6 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e @@ -0,0 +1 @@ +2376f05cec679af6 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e.json new file mode 100644 index 0000000000..f50769307f --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/fixed-hash-4d9ee4348cacca9e/lib-fixed_hash-4d9ee4348cacca9e.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":4730082606641783495,"profile":15831810099150395678,"path":18187580461683024247,"deps":[],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/dep-lib-polkadot_primitives-f129ce8108b659e1 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/dep-lib-polkadot_primitives-f129ce8108b659e1 new file mode 100644 index 0000000000..5dd5220a42 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/dep-lib-polkadot_primitives-f129ce8108b659e1 differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/lib-polkadot_primitives-f129ce8108b659e1 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/lib-polkadot_primitives-f129ce8108b659e1 new file mode 100644 index 0000000000..fc0aa84d25 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/lib-polkadot_primitives-f129ce8108b659e1 @@ -0,0 +1 @@ +1e3a84e3558d65a4 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/lib-polkadot_primitives-f129ce8108b659e1.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/lib-polkadot_primitives-f129ce8108b659e1.json new file mode 100644 index 0000000000..70b026cd07 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/lib-polkadot_primitives-f129ce8108b659e1.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":18042859682335112003,"profile":15831810099150395678,"path":7319317788955268939,"deps":[["serde v1.0.27",18102693379604858433],["substrate-codec v0.1.0 (file:///Users/gav/Core/polkadot/codec)",10118334888732154000],["substrate-primitives v0.1.0 (file:///Users/gav/Core/polkadot/primitives)",8151613772967347753],["substrate-runtime-std v0.1.0 (file:///Users/gav/Core/polkadot/runtime-std)",1432891941548421404]],"local":[{"MtimeBased":[[1518042181,269025868],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/polkadot-primitives-f129ce8108b659e1/dep-lib-polkadot_primitives-f129ce8108b659e1"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/dep-lib-pwasm_alloc-d1163cae47c858ba b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/dep-lib-pwasm_alloc-d1163cae47c858ba new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/dep-lib-pwasm_alloc-d1163cae47c858ba differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba new file mode 100644 index 0000000000..10aaf1e9ac --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba @@ -0,0 +1 @@ +8f942e28d6fc76e7 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba.json new file mode 100644 index 0000000000..ad23d60ff6 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/lib-pwasm_alloc-d1163cae47c858ba.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":771379805288393749,"profile":15831810099150395678,"path":2248647755754404992,"deps":[["pwasm-libc v0.1.0 (file:///Users/gav/Core/polkadot/pwasm-libc)",10055905046717778363]],"local":[{"MtimeBased":[[1518042143,102648363],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-d1163cae47c858ba/dep-lib-pwasm_alloc-d1163cae47c858ba"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build new file mode 100644 index 0000000000..931f1c0793 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build @@ -0,0 +1 @@ +9dd080006c315391 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build.json new file mode 100644 index 0000000000..770105cb34 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-alloc-df9abb2ec9551291/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"1517994929.962496350s (/Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/dep-lib-pwasm_libc-a3977572614454ff b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/dep-lib-pwasm_libc-a3977572614454ff new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/dep-lib-pwasm_libc-a3977572614454ff differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff new file mode 100644 index 0000000000..4b9d06f490 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff @@ -0,0 +1 @@ +bbc9ab8c5cc08d8b \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff.json new file mode 100644 index 0000000000..522fa257e3 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/lib-pwasm_libc-a3977572614454ff.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13124829426466301567,"profile":15831810099150395678,"path":13506730645259934862,"deps":[],"local":[{"MtimeBased":[[1518042139,346511394],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/pwasm-libc-a3977572614454ff/dep-lib-pwasm_libc-a3977572614454ff"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/dep-lib-runtime_polkadot b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/dep-lib-runtime_polkadot new file mode 100644 index 0000000000..e07bcb0fa3 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/dep-lib-runtime_polkadot differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/lib-runtime_polkadot b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/lib-runtime_polkadot new file mode 100644 index 0000000000..135efa04b9 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/lib-runtime_polkadot @@ -0,0 +1 @@ +81e0957a5a6c8b75 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/lib-runtime_polkadot.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/lib-runtime_polkadot.json new file mode 100644 index 0000000000..933260e4e0 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/lib-runtime_polkadot.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[\"default\"]","target":2637754092091589655,"profile":15831810099150395678,"path":10872709659218687626,"deps":[["polkadot-primitives v0.1.0 (file:///Users/gav/Core/polkadot/polkadot-primitives)",11846029794896787998],["substrate-codec v0.1.0 (file:///Users/gav/Core/polkadot/codec)",10118334888732154000],["substrate-primitives v0.1.0 (file:///Users/gav/Core/polkadot/primitives)",8151613772967347753],["substrate-runtime-io v0.1.0 (file:///Users/gav/Core/polkadot/runtime-io)",6465800769720262434],["substrate-runtime-std v0.1.0 (file:///Users/gav/Core/polkadot/runtime-std)",1432891941548421404]],"local":[{"MtimeBased":[[1518042183,794234508],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/runtime-polkadot-1ec9079e10b41f3a/dep-lib-runtime_polkadot"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/dep-lib-rustc_hex-525f475c38c2b8d4 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/dep-lib-rustc_hex-525f475c38c2b8d4 new file mode 100644 index 0000000000..b8e6181790 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/dep-lib-rustc_hex-525f475c38c2b8d4 differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4 new file mode 100644 index 0000000000..c00d3c8f3c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4 @@ -0,0 +1 @@ +f27084b27869611a \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4.json new file mode 100644 index 0000000000..e2d37fb5b9 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/rustc-hex-525f475c38c2b8d4/lib-rustc_hex-525f475c38c2b8d4.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":15647727436054677533,"profile":15831810099150395678,"path":11390925097424032482,"deps":[],"local":[{"Precalculated":"ee2ec40b9062ac7769ccb9dc891d6dc2cc9009d7"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/dep-lib-serde-56faf2460a26e00a b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/dep-lib-serde-56faf2460a26e00a new file mode 100644 index 0000000000..d9457f814c Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/dep-lib-serde-56faf2460a26e00a differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a new file mode 100644 index 0000000000..86f3e02b9e --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a @@ -0,0 +1 @@ +41c62971b7af39fb \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a.json new file mode 100644 index 0000000000..e9fdf523c8 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/serde-56faf2460a26e00a/lib-serde-56faf2460a26e00a.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":16707711045546007680,"profile":15831810099150395678,"path":10222960826373582376,"deps":[],"local":[{"Precalculated":"1.0.27"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/dep-lib-substrate_codec-ca118a65a903db9c b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/dep-lib-substrate_codec-ca118a65a903db9c new file mode 100644 index 0000000000..60767c5377 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/dep-lib-substrate_codec-ca118a65a903db9c differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c new file mode 100644 index 0000000000..b37ce97fc5 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c @@ -0,0 +1 @@ +905852d9f88b6b8c \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c.json new file mode 100644 index 0000000000..c6734081f4 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/lib-substrate_codec-ca118a65a903db9c.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":7319116959780948694,"profile":15831810099150395678,"path":6738607011474287905,"deps":[["substrate-runtime-std v0.1.0 (file:///Users/gav/Core/polkadot/runtime-std)",1432891941548421404]],"local":[{"MtimeBased":[[1518042143,386136909],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-codec-ca118a65a903db9c/dep-lib-substrate_codec-ca118a65a903db9c"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/dep-lib-substrate_primitives-e00108d9e0b99aec b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/dep-lib-substrate_primitives-e00108d9e0b99aec new file mode 100644 index 0000000000..a9ce883c23 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/dep-lib-substrate_primitives-e00108d9e0b99aec differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec new file mode 100644 index 0000000000..1acaaea9b3 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec @@ -0,0 +1 @@ +2986e69389592071 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec.json new file mode 100644 index 0000000000..6d1b7b1747 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/lib-substrate_primitives-e00108d9e0b99aec.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":18219404549280547433,"profile":15831810099150395678,"path":12734014784070584121,"deps":[["byteorder v1.2.1",2107829381606129652],["crunchy v0.1.6",10533557816892629213],["fixed-hash v0.1.3 (https://github.com/rphmeier/primitives.git?branch=compile-for-wasm#8dc45789)",17769629544612918819],["rustc-hex v2.0.0 (https://github.com/rphmeier/rustc-hex.git#ee2ec40b)",1900916484839076082],["serde v1.0.27",18102693379604858433],["substrate-codec v0.1.0 (file:///Users/gav/Core/polkadot/codec)",10118334888732154000],["substrate-runtime-std v0.1.0 (file:///Users/gav/Core/polkadot/runtime-std)",1432891941548421404],["uint v0.1.2 (https://github.com/rphmeier/primitives.git?branch=compile-for-wasm#8dc45789)",13477789436971579115]],"local":[{"MtimeBased":[[1518042180,582564290],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-primitives-e00108d9e0b99aec/dep-lib-substrate_primitives-e00108d9e0b99aec"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build new file mode 100644 index 0000000000..719a09d88d --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build @@ -0,0 +1 @@ +d24ef7a11ca721ff \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build.json new file mode 100644 index 0000000000..a54a888e83 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-18dd4d36aa047e62/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"1518041862.368589700s (/Users/gav/Core/polkadot/runtime-io/Cargo.toml)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/dep-lib-substrate_runtime_io-d1bc1618243202c7 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/dep-lib-substrate_runtime_io-d1bc1618243202c7 new file mode 100644 index 0000000000..417d560f6c Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/dep-lib-substrate_runtime_io-d1bc1618243202c7 differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7 new file mode 100644 index 0000000000..5b2fcfd913 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7 @@ -0,0 +1 @@ +229f9ff38a23bb59 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7.json new file mode 100644 index 0000000000..7407eb45d3 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/lib-substrate_runtime_io-d1bc1618243202c7.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13126870863896525761,"profile":15831810099150395678,"path":26769199562927344,"deps":[["pwasm-alloc v0.1.0 (file:///Users/gav/Core/polkadot/pwasm-alloc)",16678796266740552847],["pwasm-libc v0.1.0 (file:///Users/gav/Core/polkadot/pwasm-libc)",10055905046717778363],["substrate-codec v0.1.0 (file:///Users/gav/Core/polkadot/codec)",10118334888732154000],["substrate-primitives v0.1.0 (file:///Users/gav/Core/polkadot/primitives)",8151613772967347753],["substrate-runtime-std v0.1.0 (file:///Users/gav/Core/polkadot/runtime-std)",1432891941548421404]],"local":[{"MtimeBased":[[1518042180,913404970],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-io-d1bc1618243202c7/dep-lib-substrate_runtime_io-d1bc1618243202c7"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/dep-lib-substrate_runtime_std-4b73587f85fc5f7b b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/dep-lib-substrate_runtime_std-4b73587f85fc5f7b new file mode 100644 index 0000000000..417d560f6c Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/dep-lib-substrate_runtime_std-4b73587f85fc5f7b differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b new file mode 100644 index 0000000000..300150e882 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b @@ -0,0 +1 @@ +1c718309a1a7e213 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b.json new file mode 100644 index 0000000000..6e7daaead0 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/lib-substrate_runtime_std-4b73587f85fc5f7b.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":13525610188994224686,"profile":15831810099150395678,"path":8349102629444457169,"deps":[],"local":[{"MtimeBased":[[1518042143,27769661],"/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-4b73587f85fc5f7b/dep-lib-substrate_runtime_std-4b73587f85fc5f7b"]}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build new file mode 100644 index 0000000000..2302a2ebe4 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build @@ -0,0 +1 @@ +c7366091397b119f \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build.json new file mode 100644 index 0000000000..dba1f193c0 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/substrate-runtime-std-951ced4f04348b20/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"1518021996.209388061s (/Users/gav/Core/polkadot/runtime-std/without_std.rs)"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/dep-lib-uint-9bae4fca0449e2f1 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/dep-lib-uint-9bae4fca0449e2f1 new file mode 100644 index 0000000000..d309bade4e Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/dep-lib-uint-9bae4fca0449e2f1 differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1 b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1 new file mode 100644 index 0000000000..351ef810bd --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1 @@ -0,0 +1 @@ +ebf633a415ba0abb \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1.json new file mode 100644 index 0000000000..53f239a947 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-9bae4fca0449e2f1/lib-uint-9bae4fca0449e2f1.json @@ -0,0 +1 @@ +{"rustc":16805685935550167939,"features":"[]","target":14313918334586728655,"profile":15831810099150395678,"path":2820468535736626715,"deps":[["byteorder v1.2.1",2107829381606129652]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build new file mode 100644 index 0000000000..615624f1b7 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build @@ -0,0 +1 @@ +e90501364981a033 \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build.json b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build.json new file mode 100644 index 0000000000..fc70ef9bf9 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/.fingerprint/uint-abaf257946feda3e/build.json @@ -0,0 +1 @@ +{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]} \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs new file mode 100644 index 0000000000..a038c018e5 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs @@ -0,0 +1,815 @@ + +/// Unroll the given for loop +/// +/// Example: +/// +/// ```ignore +/// unroll! { +/// for i in 0..5 { +/// println!("Iteration {}", i); +/// } +/// } +/// ``` +/// +/// will expand into: +/// +/// ```ignore +/// { println!("Iteration {}", 0); } +/// { println!("Iteration {}", 1); } +/// { println!("Iteration {}", 2); } +/// { println!("Iteration {}", 3); } +/// { println!("Iteration {}", 4); } +/// ``` +#[macro_export] +macro_rules! unroll { + (for $v:ident in 0..0 $c:block) => {}; + + (for $v:ident in 0..$b:tt {$($c:tt)*}) => { + #[allow(non_upper_case_globals)] + { unroll!(@$v, 0, $b, {$($c)*}); } + }; + + (@$v:ident, $a:expr, 0, $c:block) => { + { const $v: usize = $a; $c } + }; + + (@$v:ident, $a:expr, 1, $c:block) => { + { const $v: usize = $a; $c } + }; + + (@$v:ident, $a:expr, 2, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + }; + + (@$v:ident, $a:expr, 3, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + }; + + (@$v:ident, $a:expr, 4, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + }; + + (@$v:ident, $a:expr, 5, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + }; + + (@$v:ident, $a:expr, 6, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + }; + + (@$v:ident, $a:expr, 7, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + }; + + (@$v:ident, $a:expr, 8, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + }; + + (@$v:ident, $a:expr, 9, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + }; + + (@$v:ident, $a:expr, 10, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + }; + + (@$v:ident, $a:expr, 11, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + }; + + (@$v:ident, $a:expr, 12, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + }; + + (@$v:ident, $a:expr, 13, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + }; + + (@$v:ident, $a:expr, 14, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + }; + + (@$v:ident, $a:expr, 15, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + { const $v: usize = $a + 14; $c } + }; + + (@$v:ident, $a:expr, 16, $c:block) => { + { const $v: usize = $a; $c } + { const $v: usize = $a + 1; $c } + { const $v: usize = $a + 2; $c } + { const $v: usize = $a + 3; $c } + { const $v: usize = $a + 4; $c } + { const $v: usize = $a + 5; $c } + { const $v: usize = $a + 6; $c } + { const $v: usize = $a + 7; $c } + { const $v: usize = $a + 8; $c } + { const $v: usize = $a + 9; $c } + { const $v: usize = $a + 10; $c } + { const $v: usize = $a + 11; $c } + { const $v: usize = $a + 12; $c } + { const $v: usize = $a + 13; $c } + { const $v: usize = $a + 14; $c } + { const $v: usize = $a + 15; $c } + }; + + (@$v:ident, $a:expr, 17, $c:block) => { + unroll!(@$v, $a, 16, $c); + { const $v: usize = $a + 16; $c } + }; + + (@$v:ident, $a:expr, 18, $c:block) => { + unroll!(@$v, $a, 9, $c); + unroll!(@$v, $a + 9, 9, $c); + }; + + (@$v:ident, $a:expr, 19, $c:block) => { + unroll!(@$v, $a, 18, $c); + { const $v: usize = $a + 18; $c } + }; + + (@$v:ident, $a:expr, 20, $c:block) => { + unroll!(@$v, $a, 10, $c); + unroll!(@$v, $a + 10, 10, $c); + }; + + (@$v:ident, $a:expr, 21, $c:block) => { + unroll!(@$v, $a, 20, $c); + { const $v: usize = $a + 20; $c } + }; + + (@$v:ident, $a:expr, 22, $c:block) => { + unroll!(@$v, $a, 11, $c); + unroll!(@$v, $a + 11, 11, $c); + }; + + (@$v:ident, $a:expr, 23, $c:block) => { + unroll!(@$v, $a, 22, $c); + { const $v: usize = $a + 22; $c } + }; + + (@$v:ident, $a:expr, 24, $c:block) => { + unroll!(@$v, $a, 12, $c); + unroll!(@$v, $a + 12, 12, $c); + }; + + (@$v:ident, $a:expr, 25, $c:block) => { + unroll!(@$v, $a, 24, $c); + { const $v: usize = $a + 24; $c } + }; + + (@$v:ident, $a:expr, 26, $c:block) => { + unroll!(@$v, $a, 13, $c); + unroll!(@$v, $a + 13, 13, $c); + }; + + (@$v:ident, $a:expr, 27, $c:block) => { + unroll!(@$v, $a, 26, $c); + { const $v: usize = $a + 26; $c } + }; + + (@$v:ident, $a:expr, 28, $c:block) => { + unroll!(@$v, $a, 14, $c); + unroll!(@$v, $a + 14, 14, $c); + }; + + (@$v:ident, $a:expr, 29, $c:block) => { + unroll!(@$v, $a, 28, $c); + { const $v: usize = $a + 28; $c } + }; + + (@$v:ident, $a:expr, 30, $c:block) => { + unroll!(@$v, $a, 15, $c); + unroll!(@$v, $a + 15, 15, $c); + }; + + (@$v:ident, $a:expr, 31, $c:block) => { + unroll!(@$v, $a, 30, $c); + { const $v: usize = $a + 30; $c } + }; + + (@$v:ident, $a:expr, 32, $c:block) => { + unroll!(@$v, $a, 16, $c); + unroll!(@$v, $a + 16, 16, $c); + }; + + (@$v:ident, $a:expr, 33, $c:block) => { + unroll!(@$v, $a, 32, $c); + { const $v: usize = $a + 32; $c } + }; + + (@$v:ident, $a:expr, 34, $c:block) => { + unroll!(@$v, $a, 17, $c); + unroll!(@$v, $a + 17, 17, $c); + }; + + (@$v:ident, $a:expr, 35, $c:block) => { + unroll!(@$v, $a, 34, $c); + { const $v: usize = $a + 34; $c } + }; + + (@$v:ident, $a:expr, 36, $c:block) => { + unroll!(@$v, $a, 18, $c); + unroll!(@$v, $a + 18, 18, $c); + }; + + (@$v:ident, $a:expr, 37, $c:block) => { + unroll!(@$v, $a, 36, $c); + { const $v: usize = $a + 36; $c } + }; + + (@$v:ident, $a:expr, 38, $c:block) => { + unroll!(@$v, $a, 19, $c); + unroll!(@$v, $a + 19, 19, $c); + }; + + (@$v:ident, $a:expr, 39, $c:block) => { + unroll!(@$v, $a, 38, $c); + { const $v: usize = $a + 38; $c } + }; + + (@$v:ident, $a:expr, 40, $c:block) => { + unroll!(@$v, $a, 20, $c); + unroll!(@$v, $a + 20, 20, $c); + }; + + (@$v:ident, $a:expr, 41, $c:block) => { + unroll!(@$v, $a, 40, $c); + { const $v: usize = $a + 40; $c } + }; + + (@$v:ident, $a:expr, 42, $c:block) => { + unroll!(@$v, $a, 21, $c); + unroll!(@$v, $a + 21, 21, $c); + }; + + (@$v:ident, $a:expr, 43, $c:block) => { + unroll!(@$v, $a, 42, $c); + { const $v: usize = $a + 42; $c } + }; + + (@$v:ident, $a:expr, 44, $c:block) => { + unroll!(@$v, $a, 22, $c); + unroll!(@$v, $a + 22, 22, $c); + }; + + (@$v:ident, $a:expr, 45, $c:block) => { + unroll!(@$v, $a, 44, $c); + { const $v: usize = $a + 44; $c } + }; + + (@$v:ident, $a:expr, 46, $c:block) => { + unroll!(@$v, $a, 23, $c); + unroll!(@$v, $a + 23, 23, $c); + }; + + (@$v:ident, $a:expr, 47, $c:block) => { + unroll!(@$v, $a, 46, $c); + { const $v: usize = $a + 46; $c } + }; + + (@$v:ident, $a:expr, 48, $c:block) => { + unroll!(@$v, $a, 24, $c); + unroll!(@$v, $a + 24, 24, $c); + }; + + (@$v:ident, $a:expr, 49, $c:block) => { + unroll!(@$v, $a, 48, $c); + { const $v: usize = $a + 48; $c } + }; + + (@$v:ident, $a:expr, 50, $c:block) => { + unroll!(@$v, $a, 25, $c); + unroll!(@$v, $a + 25, 25, $c); + }; + + (@$v:ident, $a:expr, 51, $c:block) => { + unroll!(@$v, $a, 50, $c); + { const $v: usize = $a + 50; $c } + }; + + (@$v:ident, $a:expr, 52, $c:block) => { + unroll!(@$v, $a, 26, $c); + unroll!(@$v, $a + 26, 26, $c); + }; + + (@$v:ident, $a:expr, 53, $c:block) => { + unroll!(@$v, $a, 52, $c); + { const $v: usize = $a + 52; $c } + }; + + (@$v:ident, $a:expr, 54, $c:block) => { + unroll!(@$v, $a, 27, $c); + unroll!(@$v, $a + 27, 27, $c); + }; + + (@$v:ident, $a:expr, 55, $c:block) => { + unroll!(@$v, $a, 54, $c); + { const $v: usize = $a + 54; $c } + }; + + (@$v:ident, $a:expr, 56, $c:block) => { + unroll!(@$v, $a, 28, $c); + unroll!(@$v, $a + 28, 28, $c); + }; + + (@$v:ident, $a:expr, 57, $c:block) => { + unroll!(@$v, $a, 56, $c); + { const $v: usize = $a + 56; $c } + }; + + (@$v:ident, $a:expr, 58, $c:block) => { + unroll!(@$v, $a, 29, $c); + unroll!(@$v, $a + 29, 29, $c); + }; + + (@$v:ident, $a:expr, 59, $c:block) => { + unroll!(@$v, $a, 58, $c); + { const $v: usize = $a + 58; $c } + }; + + (@$v:ident, $a:expr, 60, $c:block) => { + unroll!(@$v, $a, 30, $c); + unroll!(@$v, $a + 30, 30, $c); + }; + + (@$v:ident, $a:expr, 61, $c:block) => { + unroll!(@$v, $a, 60, $c); + { const $v: usize = $a + 60; $c } + }; + + (@$v:ident, $a:expr, 62, $c:block) => { + unroll!(@$v, $a, 31, $c); + unroll!(@$v, $a + 31, 31, $c); + }; + + (@$v:ident, $a:expr, 63, $c:block) => { + unroll!(@$v, $a, 62, $c); + { const $v: usize = $a + 62; $c } + }; + + (@$v:ident, $a:expr, 64, $c:block) => { + unroll!(@$v, $a, 32, $c); + unroll!(@$v, $a + 32, 32, $c); + }; + + (@$v:ident, $a:expr, 65, $c:block) => { + unroll!(@$v, $a, 64, $c); + { const $v: usize = $a + 64; $c } + }; + + (@$v:ident, $a:expr, 66, $c:block) => { + unroll!(@$v, $a, 33, $c); + unroll!(@$v, $a + 33, 33, $c); + }; + + (@$v:ident, $a:expr, 67, $c:block) => { + unroll!(@$v, $a, 66, $c); + { const $v: usize = $a + 66; $c } + }; + + (@$v:ident, $a:expr, 68, $c:block) => { + unroll!(@$v, $a, 34, $c); + unroll!(@$v, $a + 34, 34, $c); + }; + + (@$v:ident, $a:expr, 69, $c:block) => { + unroll!(@$v, $a, 68, $c); + { const $v: usize = $a + 68; $c } + }; + + (@$v:ident, $a:expr, 70, $c:block) => { + unroll!(@$v, $a, 35, $c); + unroll!(@$v, $a + 35, 35, $c); + }; + + (@$v:ident, $a:expr, 71, $c:block) => { + unroll!(@$v, $a, 70, $c); + { const $v: usize = $a + 70; $c } + }; + + (@$v:ident, $a:expr, 72, $c:block) => { + unroll!(@$v, $a, 36, $c); + unroll!(@$v, $a + 36, 36, $c); + }; + + (@$v:ident, $a:expr, 73, $c:block) => { + unroll!(@$v, $a, 72, $c); + { const $v: usize = $a + 72; $c } + }; + + (@$v:ident, $a:expr, 74, $c:block) => { + unroll!(@$v, $a, 37, $c); + unroll!(@$v, $a + 37, 37, $c); + }; + + (@$v:ident, $a:expr, 75, $c:block) => { + unroll!(@$v, $a, 74, $c); + { const $v: usize = $a + 74; $c } + }; + + (@$v:ident, $a:expr, 76, $c:block) => { + unroll!(@$v, $a, 38, $c); + unroll!(@$v, $a + 38, 38, $c); + }; + + (@$v:ident, $a:expr, 77, $c:block) => { + unroll!(@$v, $a, 76, $c); + { const $v: usize = $a + 76; $c } + }; + + (@$v:ident, $a:expr, 78, $c:block) => { + unroll!(@$v, $a, 39, $c); + unroll!(@$v, $a + 39, 39, $c); + }; + + (@$v:ident, $a:expr, 79, $c:block) => { + unroll!(@$v, $a, 78, $c); + { const $v: usize = $a + 78; $c } + }; + + (@$v:ident, $a:expr, 80, $c:block) => { + unroll!(@$v, $a, 40, $c); + unroll!(@$v, $a + 40, 40, $c); + }; + + (@$v:ident, $a:expr, 81, $c:block) => { + unroll!(@$v, $a, 80, $c); + { const $v: usize = $a + 80; $c } + }; + + (@$v:ident, $a:expr, 82, $c:block) => { + unroll!(@$v, $a, 41, $c); + unroll!(@$v, $a + 41, 41, $c); + }; + + (@$v:ident, $a:expr, 83, $c:block) => { + unroll!(@$v, $a, 82, $c); + { const $v: usize = $a + 82; $c } + }; + + (@$v:ident, $a:expr, 84, $c:block) => { + unroll!(@$v, $a, 42, $c); + unroll!(@$v, $a + 42, 42, $c); + }; + + (@$v:ident, $a:expr, 85, $c:block) => { + unroll!(@$v, $a, 84, $c); + { const $v: usize = $a + 84; $c } + }; + + (@$v:ident, $a:expr, 86, $c:block) => { + unroll!(@$v, $a, 43, $c); + unroll!(@$v, $a + 43, 43, $c); + }; + + (@$v:ident, $a:expr, 87, $c:block) => { + unroll!(@$v, $a, 86, $c); + { const $v: usize = $a + 86; $c } + }; + + (@$v:ident, $a:expr, 88, $c:block) => { + unroll!(@$v, $a, 44, $c); + unroll!(@$v, $a + 44, 44, $c); + }; + + (@$v:ident, $a:expr, 89, $c:block) => { + unroll!(@$v, $a, 88, $c); + { const $v: usize = $a + 88; $c } + }; + + (@$v:ident, $a:expr, 90, $c:block) => { + unroll!(@$v, $a, 45, $c); + unroll!(@$v, $a + 45, 45, $c); + }; + + (@$v:ident, $a:expr, 91, $c:block) => { + unroll!(@$v, $a, 90, $c); + { const $v: usize = $a + 90; $c } + }; + + (@$v:ident, $a:expr, 92, $c:block) => { + unroll!(@$v, $a, 46, $c); + unroll!(@$v, $a + 46, 46, $c); + }; + + (@$v:ident, $a:expr, 93, $c:block) => { + unroll!(@$v, $a, 92, $c); + { const $v: usize = $a + 92; $c } + }; + + (@$v:ident, $a:expr, 94, $c:block) => { + unroll!(@$v, $a, 47, $c); + unroll!(@$v, $a + 47, 47, $c); + }; + + (@$v:ident, $a:expr, 95, $c:block) => { + unroll!(@$v, $a, 94, $c); + { const $v: usize = $a + 94; $c } + }; + + (@$v:ident, $a:expr, 96, $c:block) => { + unroll!(@$v, $a, 48, $c); + unroll!(@$v, $a + 48, 48, $c); + }; + + (@$v:ident, $a:expr, 97, $c:block) => { + unroll!(@$v, $a, 96, $c); + { const $v: usize = $a + 96; $c } + }; + + (@$v:ident, $a:expr, 98, $c:block) => { + unroll!(@$v, $a, 49, $c); + unroll!(@$v, $a + 49, 49, $c); + }; + + (@$v:ident, $a:expr, 99, $c:block) => { + unroll!(@$v, $a, 98, $c); + { const $v: usize = $a + 98; $c } + }; + + (@$v:ident, $a:expr, 100, $c:block) => { + unroll!(@$v, $a, 50, $c); + unroll!(@$v, $a + 50, 50, $c); + }; + + (@$v:ident, $a:expr, 101, $c:block) => { + unroll!(@$v, $a, 100, $c); + { const $v: usize = $a + 100; $c } + }; + + (@$v:ident, $a:expr, 102, $c:block) => { + unroll!(@$v, $a, 51, $c); + unroll!(@$v, $a + 51, 51, $c); + }; + + (@$v:ident, $a:expr, 103, $c:block) => { + unroll!(@$v, $a, 102, $c); + { const $v: usize = $a + 102; $c } + }; + + (@$v:ident, $a:expr, 104, $c:block) => { + unroll!(@$v, $a, 52, $c); + unroll!(@$v, $a + 52, 52, $c); + }; + + (@$v:ident, $a:expr, 105, $c:block) => { + unroll!(@$v, $a, 104, $c); + { const $v: usize = $a + 104; $c } + }; + + (@$v:ident, $a:expr, 106, $c:block) => { + unroll!(@$v, $a, 53, $c); + unroll!(@$v, $a + 53, 53, $c); + }; + + (@$v:ident, $a:expr, 107, $c:block) => { + unroll!(@$v, $a, 106, $c); + { const $v: usize = $a + 106; $c } + }; + + (@$v:ident, $a:expr, 108, $c:block) => { + unroll!(@$v, $a, 54, $c); + unroll!(@$v, $a + 54, 54, $c); + }; + + (@$v:ident, $a:expr, 109, $c:block) => { + unroll!(@$v, $a, 108, $c); + { const $v: usize = $a + 108; $c } + }; + + (@$v:ident, $a:expr, 110, $c:block) => { + unroll!(@$v, $a, 55, $c); + unroll!(@$v, $a + 55, 55, $c); + }; + + (@$v:ident, $a:expr, 111, $c:block) => { + unroll!(@$v, $a, 110, $c); + { const $v: usize = $a + 110; $c } + }; + + (@$v:ident, $a:expr, 112, $c:block) => { + unroll!(@$v, $a, 56, $c); + unroll!(@$v, $a + 56, 56, $c); + }; + + (@$v:ident, $a:expr, 113, $c:block) => { + unroll!(@$v, $a, 112, $c); + { const $v: usize = $a + 112; $c } + }; + + (@$v:ident, $a:expr, 114, $c:block) => { + unroll!(@$v, $a, 57, $c); + unroll!(@$v, $a + 57, 57, $c); + }; + + (@$v:ident, $a:expr, 115, $c:block) => { + unroll!(@$v, $a, 114, $c); + { const $v: usize = $a + 114; $c } + }; + + (@$v:ident, $a:expr, 116, $c:block) => { + unroll!(@$v, $a, 58, $c); + unroll!(@$v, $a + 58, 58, $c); + }; + + (@$v:ident, $a:expr, 117, $c:block) => { + unroll!(@$v, $a, 116, $c); + { const $v: usize = $a + 116; $c } + }; + + (@$v:ident, $a:expr, 118, $c:block) => { + unroll!(@$v, $a, 59, $c); + unroll!(@$v, $a + 59, 59, $c); + }; + + (@$v:ident, $a:expr, 119, $c:block) => { + unroll!(@$v, $a, 118, $c); + { const $v: usize = $a + 118; $c } + }; + + (@$v:ident, $a:expr, 120, $c:block) => { + unroll!(@$v, $a, 60, $c); + unroll!(@$v, $a + 60, 60, $c); + }; + + (@$v:ident, $a:expr, 121, $c:block) => { + unroll!(@$v, $a, 120, $c); + { const $v: usize = $a + 120; $c } + }; + + (@$v:ident, $a:expr, 122, $c:block) => { + unroll!(@$v, $a, 61, $c); + unroll!(@$v, $a + 61, 61, $c); + }; + + (@$v:ident, $a:expr, 123, $c:block) => { + unroll!(@$v, $a, 122, $c); + { const $v: usize = $a + 122; $c } + }; + + (@$v:ident, $a:expr, 124, $c:block) => { + unroll!(@$v, $a, 62, $c); + unroll!(@$v, $a + 62, 62, $c); + }; + + (@$v:ident, $a:expr, 125, $c:block) => { + unroll!(@$v, $a, 124, $c); + { const $v: usize = $a + 124; $c } + }; + + (@$v:ident, $a:expr, 126, $c:block) => { + unroll!(@$v, $a, 63, $c); + unroll!(@$v, $a + 63, 63, $c); + }; + + (@$v:ident, $a:expr, 127, $c:block) => { + unroll!(@$v, $a, 126, $c); + { const $v: usize = $a + 126; $c } + }; + + (@$v:ident, $a:expr, 128, $c:block) => { + unroll!(@$v, $a, 64, $c); + unroll!(@$v, $a + 64, 64, $c); + }; + +} + + +#[cfg(test)] +mod tests { + #[test] + fn test_all() { + { + let a: Vec = vec![]; + unroll! { + for i in 0..0 { + a.push(i); + } + } + assert_eq!(a, (0..0).collect::>()); + } + { + let mut a: Vec = vec![]; + unroll! { + for i in 0..1 { + a.push(i); + } + } + assert_eq!(a, (0..1).collect::>()); + } + { + let mut a: Vec = vec![]; + unroll! { + for i in 0..128 { + a.push(i); + } + } + assert_eq!(a, (0..128).collect::>()); + } + } +} diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/root-output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/root-output new file mode 100644 index 0000000000..79cd23492d --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/stderr b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/output new file mode 100644 index 0000000000..f6fcf8e26c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/output @@ -0,0 +1 @@ +cargo:rustc-cfg=feature="nightly" diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/root-output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/root-output new file mode 100644 index 0000000000..79cd23492d --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/stderr b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/pwasm-alloc-df9abb2ec9551291/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/output new file mode 100644 index 0000000000..f6fcf8e26c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/output @@ -0,0 +1 @@ +cargo:rustc-cfg=feature="nightly" diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/root-output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/root-output new file mode 100644 index 0000000000..79cd23492d --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/stderr b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-io-18dd4d36aa047e62/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/output new file mode 100644 index 0000000000..f6fcf8e26c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/output @@ -0,0 +1 @@ +cargo:rustc-cfg=feature="nightly" diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/root-output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/root-output new file mode 100644 index 0000000000..79cd23492d --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/stderr b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/substrate-runtime-std-951ced4f04348b20/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/output new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/root-output b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/root-output new file mode 100644 index 0000000000..79cd23492d --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/root-output @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/release \ No newline at end of file diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/stderr b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/uint-abaf257946feda3e/stderr new file mode 100644 index 0000000000..e69de29bb2 diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/byteorder-43cd3f813a8b2478.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/byteorder-43cd3f813a8b2478.d new file mode 100644 index 0000000000..32c398075a --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/byteorder-43cd3f813a8b2478.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libbyteorder-43cd3f813a8b2478.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.2.1/src/lib.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/byteorder-43cd3f813a8b2478.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.2.1/src/lib.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.2.1/src/lib.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/crunchy-44c14494c9b435da.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/crunchy-44c14494c9b435da.d new file mode 100644 index 0000000000..3711c69f50 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/crunchy-44c14494c9b435da.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libcrunchy-44c14494c9b435da.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/src/lib.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/crunchy-44c14494c9b435da.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/src/lib.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/src/lib.rs: +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/build/crunchy-88f6af40709cf30d/out/lib.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/fixed_hash-4d9ee4348cacca9e.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/fixed_hash-4d9ee4348cacca9e.d new file mode 100644 index 0000000000..6b796646ee --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/fixed_hash-4d9ee4348cacca9e.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libfixed_hash-4d9ee4348cacca9e.rlib: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/lib.rs /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/hash.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/fixed_hash-4d9ee4348cacca9e.d: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/lib.rs /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/hash.rs + +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/lib.rs: +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/fixed-hash/src/hash.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libbyteorder-43cd3f813a8b2478.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libbyteorder-43cd3f813a8b2478.rlib new file mode 100644 index 0000000000..819f382e69 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libbyteorder-43cd3f813a8b2478.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libcrunchy-44c14494c9b435da.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libcrunchy-44c14494c9b435da.rlib new file mode 100644 index 0000000000..9158e3774c Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libcrunchy-44c14494c9b435da.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libfixed_hash-4d9ee4348cacca9e.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libfixed_hash-4d9ee4348cacca9e.rlib new file mode 100644 index 0000000000..b3586ddf03 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libfixed_hash-4d9ee4348cacca9e.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpolkadot_primitives-f129ce8108b659e1.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpolkadot_primitives-f129ce8108b659e1.rlib new file mode 100644 index 0000000000..f2e26b239b Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpolkadot_primitives-f129ce8108b659e1.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_alloc-d1163cae47c858ba.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_alloc-d1163cae47c858ba.rlib new file mode 100644 index 0000000000..c76fd466c9 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_alloc-d1163cae47c858ba.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_libc-a3977572614454ff.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_libc-a3977572614454ff.rlib new file mode 100644 index 0000000000..5b1414837b Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_libc-a3977572614454ff.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/librustc_hex-525f475c38c2b8d4.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/librustc_hex-525f475c38c2b8d4.rlib new file mode 100644 index 0000000000..83804a1883 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/librustc_hex-525f475c38c2b8d4.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libserde-56faf2460a26e00a.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libserde-56faf2460a26e00a.rlib new file mode 100644 index 0000000000..1067e2088c Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libserde-56faf2460a26e00a.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_codec-ca118a65a903db9c.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_codec-ca118a65a903db9c.rlib new file mode 100644 index 0000000000..39706f427c Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_codec-ca118a65a903db9c.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_primitives-e00108d9e0b99aec.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_primitives-e00108d9e0b99aec.rlib new file mode 100644 index 0000000000..ee6350b831 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_primitives-e00108d9e0b99aec.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_io-d1bc1618243202c7.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_io-d1bc1618243202c7.rlib new file mode 100644 index 0000000000..f656a7085e Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_io-d1bc1618243202c7.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_std-4b73587f85fc5f7b.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_std-4b73587f85fc5f7b.rlib new file mode 100644 index 0000000000..7d091fd2e8 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_std-4b73587f85fc5f7b.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libuint-9bae4fca0449e2f1.rlib b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libuint-9bae4fca0449e2f1.rlib new file mode 100644 index 0000000000..69aabda2f4 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libuint-9bae4fca0449e2f1.rlib differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/polkadot_primitives-f129ce8108b659e1.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/polkadot_primitives-f129ce8108b659e1.d new file mode 100644 index 0000000000..27c584149a --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/polkadot_primitives-f129ce8108b659e1.d @@ -0,0 +1,9 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpolkadot_primitives-f129ce8108b659e1.rlib: /Users/gav/Core/polkadot/polkadot-primitives/src/lib.rs /Users/gav/Core/polkadot/polkadot-primitives/src/parachain.rs /Users/gav/Core/polkadot/polkadot-primitives/src/validator.rs /Users/gav/Core/polkadot/polkadot-primitives/src/block.rs /Users/gav/Core/polkadot/polkadot-primitives/src/transaction.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/polkadot_primitives-f129ce8108b659e1.d: /Users/gav/Core/polkadot/polkadot-primitives/src/lib.rs /Users/gav/Core/polkadot/polkadot-primitives/src/parachain.rs /Users/gav/Core/polkadot/polkadot-primitives/src/validator.rs /Users/gav/Core/polkadot/polkadot-primitives/src/block.rs /Users/gav/Core/polkadot/polkadot-primitives/src/transaction.rs + +/Users/gav/Core/polkadot/polkadot-primitives/src/lib.rs: +/Users/gav/Core/polkadot/polkadot-primitives/src/parachain.rs: +/Users/gav/Core/polkadot/polkadot-primitives/src/validator.rs: +/Users/gav/Core/polkadot/polkadot-primitives/src/block.rs: +/Users/gav/Core/polkadot/polkadot-primitives/src/transaction.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_alloc-d1163cae47c858ba.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_alloc-d1163cae47c858ba.d new file mode 100644 index 0000000000..490f0a2f64 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_alloc-d1163cae47c858ba.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_alloc-d1163cae47c858ba.rlib: /Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_alloc-d1163cae47c858ba.d: /Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs + +/Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_libc-a3977572614454ff.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_libc-a3977572614454ff.d new file mode 100644 index 0000000000..8ce0fa80df --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_libc-a3977572614454ff.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libpwasm_libc-a3977572614454ff.rlib: /Users/gav/Core/polkadot/pwasm-libc/src/lib.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/pwasm_libc-a3977572614454ff.d: /Users/gav/Core/polkadot/pwasm-libc/src/lib.rs + +/Users/gav/Core/polkadot/pwasm-libc/src/lib.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/runtime_polkadot.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/runtime_polkadot.d new file mode 100644 index 0000000000..86bb512b25 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/runtime_polkadot.d @@ -0,0 +1,17 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/runtime_polkadot.wasm: src/lib.rs src/support/mod.rs src/support/environment.rs src/support/storage.rs src/support/hashable.rs src/runtime/mod.rs src/runtime/system.rs src/runtime/consensus.rs src/runtime/staking.rs src/runtime/timestamp.rs src/runtime/session.rs src/runtime/governance.rs src/runtime/parachains.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/runtime_polkadot.d: src/lib.rs src/support/mod.rs src/support/environment.rs src/support/storage.rs src/support/hashable.rs src/runtime/mod.rs src/runtime/system.rs src/runtime/consensus.rs src/runtime/staking.rs src/runtime/timestamp.rs src/runtime/session.rs src/runtime/governance.rs src/runtime/parachains.rs + +src/lib.rs: +src/support/mod.rs: +src/support/environment.rs: +src/support/storage.rs: +src/support/hashable.rs: +src/runtime/mod.rs: +src/runtime/system.rs: +src/runtime/consensus.rs: +src/runtime/staking.rs: +src/runtime/timestamp.rs: +src/runtime/session.rs: +src/runtime/governance.rs: +src/runtime/parachains.rs: diff --git a/substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/runtime_polkadot.wasm similarity index 74% rename from substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm rename to substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/runtime_polkadot.wasm index f89b2a1d9b..05d6e44096 100644 Binary files a/substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/runtime_polkadot.wasm differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/rustc_hex-525f475c38c2b8d4.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/rustc_hex-525f475c38c2b8d4.d new file mode 100644 index 0000000000..20927eaf02 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/rustc_hex-525f475c38c2b8d4.d @@ -0,0 +1,5 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/librustc_hex-525f475c38c2b8d4.rlib: /Users/gav/.cargo/git/checkouts/rustc-hex-5c07b62dcd38bbca/ee2ec40/src/lib.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/rustc_hex-525f475c38c2b8d4.d: /Users/gav/.cargo/git/checkouts/rustc-hex-5c07b62dcd38bbca/ee2ec40/src/lib.rs + +/Users/gav/.cargo/git/checkouts/rustc-hex-5c07b62dcd38bbca/ee2ec40/src/lib.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/serde-56faf2460a26e00a.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/serde-56faf2460a26e00a.d new file mode 100644 index 0000000000..3d1e1b7b58 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/serde-56faf2460a26e00a.d @@ -0,0 +1,20 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libserde-56faf2460a26e00a.rlib: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/macros.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impls.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impossible.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/value.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/from_primitive.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/ignored_any.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/impls.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/utf8.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/export.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/macros.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/ser.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/de.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/serde-56faf2460a26e00a.d: /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/lib.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/macros.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impls.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impossible.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/value.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/from_primitive.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/ignored_any.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/impls.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/utf8.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/export.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/mod.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/macros.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/ser.rs /Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/de.rs + +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/lib.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/macros.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/mod.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impls.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/ser/impossible.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/mod.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/value.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/from_primitive.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/ignored_any.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/impls.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/de/utf8.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/export.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/mod.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/macros.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/ser.rs: +/Users/gav/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.27/src/private/de.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_codec-ca118a65a903db9c.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_codec-ca118a65a903db9c.d new file mode 100644 index 0000000000..c298701441 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_codec-ca118a65a903db9c.d @@ -0,0 +1,9 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_codec-ca118a65a903db9c.rlib: /Users/gav/Core/polkadot/codec/src/lib.rs /Users/gav/Core/polkadot/codec/src/endiansensitive.rs /Users/gav/Core/polkadot/codec/src/slicable.rs /Users/gav/Core/polkadot/codec/src/joiner.rs /Users/gav/Core/polkadot/codec/src/keyedvec.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_codec-ca118a65a903db9c.d: /Users/gav/Core/polkadot/codec/src/lib.rs /Users/gav/Core/polkadot/codec/src/endiansensitive.rs /Users/gav/Core/polkadot/codec/src/slicable.rs /Users/gav/Core/polkadot/codec/src/joiner.rs /Users/gav/Core/polkadot/codec/src/keyedvec.rs + +/Users/gav/Core/polkadot/codec/src/lib.rs: +/Users/gav/Core/polkadot/codec/src/endiansensitive.rs: +/Users/gav/Core/polkadot/codec/src/slicable.rs: +/Users/gav/Core/polkadot/codec/src/joiner.rs: +/Users/gav/Core/polkadot/codec/src/keyedvec.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_primitives-e00108d9e0b99aec.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_primitives-e00108d9e0b99aec.d new file mode 100644 index 0000000000..4fad904e36 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_primitives-e00108d9e0b99aec.d @@ -0,0 +1,9 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_primitives-e00108d9e0b99aec.rlib: /Users/gav/Core/polkadot/primitives/src/lib.rs /Users/gav/Core/polkadot/primitives/src/storage.rs /Users/gav/Core/polkadot/primitives/src/hash.rs /Users/gav/Core/polkadot/primitives/src/uint.rs /Users/gav/Core/polkadot/primitives/src/block.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_primitives-e00108d9e0b99aec.d: /Users/gav/Core/polkadot/primitives/src/lib.rs /Users/gav/Core/polkadot/primitives/src/storage.rs /Users/gav/Core/polkadot/primitives/src/hash.rs /Users/gav/Core/polkadot/primitives/src/uint.rs /Users/gav/Core/polkadot/primitives/src/block.rs + +/Users/gav/Core/polkadot/primitives/src/lib.rs: +/Users/gav/Core/polkadot/primitives/src/storage.rs: +/Users/gav/Core/polkadot/primitives/src/hash.rs: +/Users/gav/Core/polkadot/primitives/src/uint.rs: +/Users/gav/Core/polkadot/primitives/src/block.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_io-d1bc1618243202c7.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_io-d1bc1618243202c7.d new file mode 100644 index 0000000000..1c9de6b916 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_io-d1bc1618243202c7.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_io-d1bc1618243202c7.rlib: /Users/gav/Core/polkadot/runtime-io/src/lib.rs /Users/gav/Core/polkadot/runtime-io/src/../without_std.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_io-d1bc1618243202c7.d: /Users/gav/Core/polkadot/runtime-io/src/lib.rs /Users/gav/Core/polkadot/runtime-io/src/../without_std.rs + +/Users/gav/Core/polkadot/runtime-io/src/lib.rs: +/Users/gav/Core/polkadot/runtime-io/src/../without_std.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_std-4b73587f85fc5f7b.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_std-4b73587f85fc5f7b.d new file mode 100644 index 0000000000..65b2162637 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_std-4b73587f85fc5f7b.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libsubstrate_runtime_std-4b73587f85fc5f7b.rlib: /Users/gav/Core/polkadot/runtime-std/src/lib.rs /Users/gav/Core/polkadot/runtime-std/src/../without_std.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/substrate_runtime_std-4b73587f85fc5f7b.d: /Users/gav/Core/polkadot/runtime-std/src/lib.rs /Users/gav/Core/polkadot/runtime-std/src/../without_std.rs + +/Users/gav/Core/polkadot/runtime-std/src/lib.rs: +/Users/gav/Core/polkadot/runtime-std/src/../without_std.rs: diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/uint-9bae4fca0449e2f1.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/uint-9bae4fca0449e2f1.d new file mode 100644 index 0000000000..9175aa808c --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/uint-9bae4fca0449e2f1.d @@ -0,0 +1,6 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/libuint-9bae4fca0449e2f1.rlib: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/lib.rs /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/uint.rs + +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/deps/uint-9bae4fca0449e2f1.d: /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/lib.rs /Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/uint.rs + +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/lib.rs: +/Users/gav/.cargo/git/checkouts/primitives-8cf2c0239ad5dacf/8dc4578/uint/src/uint.rs: diff --git a/substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm similarity index 74% rename from substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm rename to substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm index 2af0747ed1..15f6b17a1d 100644 Binary files a/substrate/wasm-runtime/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.compact.wasm differ diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.d b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.d new file mode 100644 index 0000000000..39ccbe9607 --- /dev/null +++ b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.d @@ -0,0 +1 @@ +/Users/gav/Core/polkadot/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm: /Users/gav/Core/polkadot/runtime-io/build.rs /Users/gav/Core/polkadot/runtime-std/src/../without_std.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/support/hashable.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/runtime/staking.rs /Users/gav/Core/polkadot/pwasm-alloc/build.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/runtime/governance.rs /Users/gav/Core/polkadot/pwasm-alloc/src/lib.rs /Users/gav/Core/polkadot/polkadot-primitives/src/lib.rs /Users/gav/Core/polkadot/primitives/src/storage.rs /Users/gav/Core/polkadot/polkadot-primitives/src/parachain.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/runtime/system.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/support/mod.rs /Users/gav/Core/polkadot/polkadot-primitives/src/transaction.rs /Users/gav/Core/polkadot/runtime-io/src/lib.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/runtime/consensus.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/support/environment.rs /Users/gav/Core/polkadot/codec/src/joiner.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/runtime/timestamp.rs /Users/gav/Core/polkadot/polkadot-primitives/src/block.rs /Users/gav/Core/polkadot/codec/src/lib.rs /Users/gav/Core/polkadot/polkadot-primitives/src/validator.rs /Users/gav/Core/polkadot/pwasm-libc/src/lib.rs /Users/gav/Core/polkadot/runtime-io/src/../without_std.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/lib.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/support/storage.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/runtime/parachains.rs /Users/gav/Core/polkadot/codec/src/keyedvec.rs /Users/gav/Core/polkadot/codec/src/endiansensitive.rs /Users/gav/Core/polkadot/primitives/src/lib.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/runtime/mod.rs /Users/gav/Core/polkadot/runtime-std/src/lib.rs /Users/gav/Core/polkadot/primitives/src/hash.rs /Users/gav/Core/polkadot/polkadot-runtime/wasm/src/runtime/session.rs /Users/gav/Core/polkadot/runtime-std/build.rs /Users/gav/Core/polkadot/primitives/src/block.rs /Users/gav/Core/polkadot/primitives/src/uint.rs /Users/gav/Core/polkadot/codec/src/slicable.rs diff --git a/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm new file mode 100644 index 0000000000..05d6e44096 Binary files /dev/null and b/substrate/polkadot-runtime/wasm/target/wasm32-unknown-unknown/release/runtime_polkadot.wasm differ diff --git a/substrate/validator/Cargo.toml b/substrate/polkadot-validator/Cargo.toml similarity index 100% rename from substrate/validator/Cargo.toml rename to substrate/polkadot-validator/Cargo.toml diff --git a/substrate/validator/src/error.rs b/substrate/polkadot-validator/src/error.rs similarity index 100% rename from substrate/validator/src/error.rs rename to substrate/polkadot-validator/src/error.rs diff --git a/substrate/validator/src/lib.rs b/substrate/polkadot-validator/src/lib.rs similarity index 100% rename from substrate/validator/src/lib.rs rename to substrate/polkadot-validator/src/lib.rs diff --git a/substrate/validator/src/parachains.rs b/substrate/polkadot-validator/src/parachains.rs similarity index 100% rename from substrate/validator/src/parachains.rs rename to substrate/polkadot-validator/src/parachains.rs diff --git a/substrate/validator/src/validator.rs b/substrate/polkadot-validator/src/validator.rs similarity index 100% rename from substrate/validator/src/validator.rs rename to substrate/polkadot-validator/src/validator.rs diff --git a/substrate/primitives/src/lib.rs b/substrate/primitives/src/lib.rs index 452889d74b..3822a77d8c 100644 --- a/substrate/primitives/src/lib.rs +++ b/substrate/primitives/src/lib.rs @@ -43,7 +43,6 @@ extern crate serde_derive; #[cfg(feature = "std")] extern crate core; -#[macro_use] extern crate substrate_runtime_std as rstd; #[cfg(test)] diff --git a/substrate/wasm-runtime/pwasm-alloc/Cargo.toml b/substrate/pwasm-alloc/Cargo.toml similarity index 100% rename from substrate/wasm-runtime/pwasm-alloc/Cargo.toml rename to substrate/pwasm-alloc/Cargo.toml diff --git a/substrate/wasm-runtime/pwasm-alloc/README.md b/substrate/pwasm-alloc/README.md similarity index 100% rename from substrate/wasm-runtime/pwasm-alloc/README.md rename to substrate/pwasm-alloc/README.md diff --git a/substrate/wasm-runtime/pwasm-alloc/build.rs b/substrate/pwasm-alloc/build.rs similarity index 100% rename from substrate/wasm-runtime/pwasm-alloc/build.rs rename to substrate/pwasm-alloc/build.rs diff --git a/substrate/wasm-runtime/pwasm-alloc/src/lib.rs b/substrate/pwasm-alloc/src/lib.rs similarity index 100% rename from substrate/wasm-runtime/pwasm-alloc/src/lib.rs rename to substrate/pwasm-alloc/src/lib.rs diff --git a/substrate/wasm-runtime/pwasm-libc/Cargo.toml b/substrate/pwasm-libc/Cargo.toml similarity index 100% rename from substrate/wasm-runtime/pwasm-libc/Cargo.toml rename to substrate/pwasm-libc/Cargo.toml diff --git a/substrate/wasm-runtime/pwasm-libc/README.md b/substrate/pwasm-libc/README.md similarity index 100% rename from substrate/wasm-runtime/pwasm-libc/README.md rename to substrate/pwasm-libc/README.md diff --git a/substrate/wasm-runtime/pwasm-libc/src/lib.rs b/substrate/pwasm-libc/src/lib.rs similarity index 100% rename from substrate/wasm-runtime/pwasm-libc/src/lib.rs rename to substrate/pwasm-libc/src/lib.rs diff --git a/substrate/runtime-io/Cargo.toml b/substrate/runtime-io/Cargo.toml index 823ecd00b6..522e42af82 100644 --- a/substrate/runtime-io/Cargo.toml +++ b/substrate/runtime-io/Cargo.toml @@ -8,8 +8,8 @@ build = "build.rs" rustc_version = "0.2" [dependencies] -pwasm-alloc = { path = "../wasm-runtime/pwasm-alloc" } -pwasm-libc = { path = "../wasm-runtime/pwasm-libc" } +pwasm-alloc = { path = "../pwasm-alloc" } +pwasm-libc = { path = "../pwasm-libc" } substrate-runtime-std = { path = "../runtime-std", default_features = false } environmental = { path = "../environmental", optional = true } substrate-state-machine = { path = "../state-machine", optional = true } diff --git a/substrate/wasm-runtime/Cargo.toml b/substrate/wasm-runtime/Cargo.toml deleted file mode 100644 index 0dc0216fe5..0000000000 --- a/substrate/wasm-runtime/Cargo.toml +++ /dev/null @@ -1,8 +0,0 @@ -[workspace] -members = [ - "test", - "polkadot", -] - -[profile.release] -panic = "abort" diff --git a/substrate/wasm-runtime/build.sh b/substrate/wasm-runtime/build.sh deleted file mode 100755 index 83f46d5a04..0000000000 --- a/substrate/wasm-runtime/build.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -set -e - -cargo +nightly build --target=wasm32-unknown-unknown --release -dirs=`find * -maxdepth 0 -type d | grep -v pwasm- | grep -v std` -for i in $dirs -do - if [[ -e $i/Cargo.toml ]] - then - wasm-gc target/wasm32-unknown-unknown/release/runtime_$i.wasm target/wasm32-unknown-unknown/release/runtime_$i.compact.wasm - fi -done