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 @@ uint = { git = "https://github.com/rphmeier/primitives.git", branch = "compile-f
twox-hash = { version = "1.1.0", optional = true }
byteorder = { version = "1.1", default_features = false }
blake2-rfc = { version = "0.2.18", optional = true }
polkadot-codec = { path = "../codec", version = "0.1", default_features = false }
substrate-codec = { path = "../codec", version = "0.1", default_features = false }
[dev-dependencies]
polkadot-serializer = { path = "../serializer", version = "0.1" }
@@ -24,7 +24,7 @@ default = ["std"]
std = [
"uint/std",
"fixed-hash/std",
"polkadot-codec/std",
"substrate-codec/std",
"serde/std",
"rustc-hex/std",
"twox-hash",
+1 -1
View File
@@ -43,7 +43,7 @@ extern crate uint as uint_crate;
#[cfg(feature = "std")]
extern crate core;
extern crate polkadot_codec as codec;
extern crate substrate_codec as codec;
#[cfg(test)]
extern crate polkadot_serializer;
#[cfg(test)]