Rename codec -> substrate-codec, executor -> substrate-executor.

This commit is contained in:
Gav
2018-02-07 11:29:10 +01:00
parent 1b7f34bef2
commit c0d072a5f3
35 changed files with 116 additions and 115 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ pwasm-libc = { path = "../wasm-runtime/pwasm-libc", version = "0.1" }
environmental = { path = "../environmental", version = "0.1", optional = true }
polkadot-state-machine = { path = "../state-machine", version = "0.1", optional = true }
polkadot-primitives = { path = "../primitives", version = "0.1", default_features = false }
polkadot-codec = { path = "../codec", version = "0.1", default_features = false }
substrate-codec = { path = "../codec", version = "0.1", default_features = false }
triehash = { version = "0.1", optional = true }
ed25519 = { path = "../ed25519", version = "0.1", optional = true }
@@ -24,7 +24,7 @@ std = [
"polkadot-state-machine",
"triehash",
"polkadot-primitives/std",
"polkadot-codec/std",
"substrate-codec/std",
"ed25519",
]
nightly = []
+1 -1
View File
@@ -24,7 +24,7 @@
#![cfg_attr(feature = "std", doc = "Polkadot runtime standard library as compiled when linked with Rust's standard library.")]
#![cfg_attr(not(feature = "std"), doc = "Polkadot's runtime standard library as compiled without Rust's standard library.")]
extern crate polkadot_codec as codec;
extern crate substrate_codec as codec;
#[cfg(feature = "std")]
include!("../with_std.rs");