Many renames.

- Everything polkadot becomes polkadot-.
- Wasm (substrate) executor tests split from Wasm (Polkadot) runtime and
built independently.
This commit is contained in:
Gav
2018-02-07 23:36:34 +01:00
parent 3d0a44c8a9
commit 5c842f77bc
453 changed files with 3230 additions and 90 deletions
+16 -16
View File
@@ -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"
+15 -11
View File
@@ -5,30 +5,34 @@ authors = ["Parity Technologies <admin@parity.io>"]
[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",
]
+1 -1
View File
@@ -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" }
+8 -8
View File
@@ -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()
+124
View File
@@ -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>"
@@ -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 = []
+8
View File
@@ -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 @@
{"rustc":16805685935550167939,"features":"[\"default\", \"limit_128\"]","target":13123923088509177768,"profile":15831810099150395678,"path":17295367238253398808,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]}
@@ -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":[]}
@@ -0,0 +1 @@
{"rustc":16805685935550167939,"features":"[]","target":2911174158177029576,"profile":15831810099150395678,"path":6202745217820959734,"deps":[["semver v0.6.0",10648209201870242739]],"local":[{"Precalculated":"0.2.1"}],"rustflags":[]}
@@ -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":[]}
@@ -0,0 +1 @@
{"rustc":16805685935550167939,"features":"[]","target":18194665905980435929,"profile":15831810099150395678,"path":4437724614573083703,"deps":[],"local":[{"Precalculated":"0.7.0"}],"rustflags":[]}
@@ -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":[]}
@@ -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":[]}
@@ -0,0 +1 @@
{"rustc":16805685935550167939,"features":"[]","target":13123923088509177768,"profile":15831810099150395678,"path":925908939897551160,"deps":[["rustc_version v0.2.1",8948727449663305211]],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]}
@@ -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:
@@ -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:
@@ -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:
@@ -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:
@@ -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:
@@ -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:
@@ -0,0 +1 @@
{"rustc":16805685935550167939,"features":"[]","target":4614426844476606629,"profile":15831810099150395678,"path":698767400166420428,"deps":[],"local":[{"Precalculated":"1.2.1"}],"rustflags":[]}
@@ -0,0 +1 @@
{"rustc":16805685935550167939,"features":"[\"default\", \"limit_128\"]","target":5870929089954252329,"profile":15831810099150395678,"path":9201763800142418467,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]}
@@ -0,0 +1 @@
{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"Precalculated":"0.1.6"}],"rustflags":[]}
@@ -0,0 +1 @@
{"rustc":16805685935550167939,"features":"[]","target":4730082606641783495,"profile":15831810099150395678,"path":18187580461683024247,"deps":[],"local":[{"Precalculated":"8dc457899afdaf968ff7f16140b03d1e37b01d71"}],"rustflags":[]}
@@ -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":[]}
@@ -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":[]}
@@ -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":[]}
@@ -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":[]}
@@ -0,0 +1 @@
{"rustc":16805685935550167939,"features":"[]","target":15647727436054677533,"profile":15831810099150395678,"path":11390925097424032482,"deps":[],"local":[{"Precalculated":"ee2ec40b9062ac7769ccb9dc891d6dc2cc9009d7"}],"rustflags":[]}
@@ -0,0 +1 @@
{"rustc":16805685935550167939,"features":"[]","target":16707711045546007680,"profile":15831810099150395678,"path":10222960826373582376,"deps":[],"local":[{"Precalculated":"1.0.27"}],"rustflags":[]}
@@ -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":[]}
@@ -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":[]}
@@ -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":[]}
@@ -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":[]}
@@ -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":[]}
@@ -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":[]}

Some files were not shown because too many files have changed in this diff Show More