mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 02:08:02 +00:00
Many renames.
- Everything polkadot becomes polkadot-. - Wasm (substrate) executor tests split from Wasm (Polkadot) runtime and built independently.
This commit is contained in:
@@ -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()
|
||||
|
||||
Generated
+124
@@ -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)" = "<none>"
|
||||
"checksum rustc-hex 2.0.0 (git+https://github.com/rphmeier/rustc-hex.git)" = "<none>"
|
||||
"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)" = "<none>"
|
||||
@@ -0,0 +1,16 @@
|
||||
[package]
|
||||
name = "runtime-test"
|
||||
version = "0.1.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
substrate-runtime-io = { path = "../../runtime-io", version = "0.1", default_features = false }
|
||||
|
||||
[profile.release]
|
||||
panic = "abort"
|
||||
|
||||
[workspace]
|
||||
members = []
|
||||
Executable
+8
@@ -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
|
||||
@@ -0,0 +1,69 @@
|
||||
#![no_std]
|
||||
#![feature(lang_items)]
|
||||
#![cfg_attr(feature = "strict", deny(warnings))]
|
||||
|
||||
#![feature(alloc)]
|
||||
extern crate alloc;
|
||||
use alloc::vec::Vec;
|
||||
|
||||
#[macro_use]
|
||||
extern crate substrate_runtime_io as runtime_io;
|
||||
use runtime_io::{
|
||||
set_storage, storage, print, blake2_256,
|
||||
twox_128, twox_256, ed25519_verify, enumerated_trie_root
|
||||
};
|
||||
|
||||
fn test_blake2_256(input: &[u8]) -> Vec<u8> {
|
||||
blake2_256(&input).to_vec()
|
||||
}
|
||||
|
||||
fn test_twox_256(input: &[u8]) -> Vec<u8> {
|
||||
twox_256(&input).to_vec()
|
||||
}
|
||||
|
||||
fn test_twox_128(input: &[u8]) -> Vec<u8> {
|
||||
twox_128(&input).to_vec()
|
||||
}
|
||||
|
||||
fn test_ed25519_verify(input: &[u8]) -> Vec<u8> {
|
||||
let sig = &input[0..64];
|
||||
let pubkey = &input[64..96];
|
||||
let msg = b"all ok!";
|
||||
[ed25519_verify(sig, &msg[..], pubkey) as u8].to_vec()
|
||||
}
|
||||
|
||||
fn test_enumerated_trie_root(_input: &[u8]) -> Vec<u8> {
|
||||
enumerated_trie_root(&[&b"zero"[..], &b"one"[..], &b"two"[..]]).to_vec()
|
||||
}
|
||||
|
||||
fn test_data_in(input: &[u8]) -> Vec<u8> {
|
||||
print("set_storage");
|
||||
set_storage(b"input", &input);
|
||||
|
||||
print("storage");
|
||||
let foo = storage(b"foo");
|
||||
|
||||
print("set_storage");
|
||||
set_storage(b"baz", &foo);
|
||||
|
||||
print("finished!");
|
||||
b"all ok!".to_vec()
|
||||
}
|
||||
|
||||
fn test_empty_return(_input: &[u8]) -> Vec<u8> {
|
||||
Vec::new()
|
||||
}
|
||||
|
||||
fn test_panic(_input: &[u8]) -> Vec<u8> {
|
||||
panic!("test panic");
|
||||
}
|
||||
|
||||
fn test_conditional_panic(input: &[u8]) -> Vec<u8> {
|
||||
if input.len() > 0 {
|
||||
panic!("test panic");
|
||||
}
|
||||
input.to_vec()
|
||||
}
|
||||
|
||||
impl_stubs!(test_data_in, test_empty_return, test_panic, test_conditional_panic,
|
||||
test_blake2_256, test_twox_256, test_twox_128, test_ed25519_verify, test_enumerated_trie_root);
|
||||
+1
@@ -0,0 +1 @@
|
||||
509ab6c31e1913df
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[\"default\", \"limit_128\"]","target":13123923088509177768,"profile":15831810099150395678,"path":17295367238253398808,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
39dbae01535c0ed3
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
fbf5f7fc3344307c
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[]","target":2911174158177029576,"profile":15831810099150395678,"path":6202745217820959734,"deps":[["semver v0.6.0",10648209201870242739]],"local":[{"Precalculated":"0.2.1"}],"rustflags":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
b383853bda09c693
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
6aec698ae8c741b8
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[]","target":18194665905980435929,"profile":15831810099150395678,"path":4437724614573083703,"deps":[],"local":[{"Precalculated":"0.7.0"}],"rustflags":[]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
bd4831502d5f0102
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
3012aa97987781fb
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
f942310a64770c98
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":925908939897551160,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]}
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+5
@@ -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:
|
||||
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
+5
@@ -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:
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+5
@@ -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:
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+5
@@ -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:
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+5
@@ -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:
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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:
|
||||
@@ -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:
|
||||
@@ -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:
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
f4bfc3a1a783401d
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[]","target":4614426844476606629,"profile":15831810099150395678,"path":698767400166420428,"deps":[],"local":[{"Precalculated":"1.2.1"}],"rustflags":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
dda0ec7806b72e92
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[\"default\", \"limit_128\"]","target":5870929089954252329,"profile":15831810099150395678,"path":9201763800142418467,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
c1e43e74d40c28af
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
2376f05cec679af6
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[]","target":4730082606641783495,"profile":15831810099150395678,"path":18187580461683024247,"deps":[],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
6b65b0e4aa9e6793
|
||||
+1
@@ -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":[]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
9dd080006c315391
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
33dfa99d277c15fb
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
dfeddb2f5e1e63db
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
f27084b27869611a
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[]","target":15647727436054677533,"profile":15831810099150395678,"path":11390925097424032482,"deps":[],"local":[{"Precalculated":"ee2ec40b9062ac7769ccb9dc891d6dc2cc9009d7"}],"rustflags":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
41c62971b7af39fb
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[]","target":16707711045546007680,"profile":15831810099150395678,"path":10222960826373582376,"deps":[],"local":[{"Precalculated":"1.0.27"}],"rustflags":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
ecc7eb6dff185294
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
c35cb2092eee47f3
|
||||
+1
@@ -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":[]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
d24ef7a11ca721ff
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
4424ab68f3cfac4a
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
ab56cae48b97f8a4
|
||||
+1
@@ -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":[]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
c7366091397b119f
|
||||
+1
@@ -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":[]}
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
ebf633a415ba0abb
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"rustc":16805685935550167939,"features":"[]","target":14313918334586728655,"profile":15831810099150395678,"path":2820468535736626715,"deps":[["byteorder v1.2.1",2107829381606129652]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
e90501364981a033
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user