clean up workspaces a little

This commit is contained in:
Robert Habermeier
2018-01-30 19:35:09 +01:00
parent 8e6cb1b6e2
commit 2c39e247d6
14 changed files with 22 additions and 9 deletions
+4 -4
View File
@@ -14,13 +14,13 @@ members = [
"collator",
"environmental",
"executor",
"primitives",
"rpc",
"rpc_servers",
"native-runtime",
"primitives",
"rpc-servers",
"rpc",
"runtime-codec",
"serializer",
"state_machine",
"state-machine",
"validator",
]
exclude = [
+1 -1
View File
@@ -12,4 +12,4 @@ log = "0.3"
polkadot-client = { path = "../client", version = "0.1" }
polkadot-executor = { path = "../executor", version = "0.1" }
polkadot-primitives = { path = "../primitives", version = "0.1" }
polkadot-rpc-servers = { path = "../rpc_servers", version = "0.1" }
polkadot-rpc-servers = { path = "../rpc-servers", version = "0.1" }
+1 -1
View File
@@ -6,4 +6,4 @@ authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
error-chain = "0.11"
polkadot-primitives = { path = "../primitives", version = "0.1" }
polkadot-state-machine = { path = "../state_machine", version = "0.1" }
polkadot-state-machine = { path = "../state-machine", version = "0.1" }
+1 -1
View File
@@ -8,7 +8,7 @@ error-chain = "0.11"
polkadot-runtime-codec = { path = "../runtime-codec", version = "0.1" }
polkadot-primitives = { path = "../primitives", version = "0.1" }
polkadot-serializer = { path = "../serializer", version = "0.1" }
polkadot-state-machine = { path = "../state_machine" , version = "0.1" }
polkadot-state-machine = { path = "../state-machine" , version = "0.1" }
serde = "1.0"
serde_derive = "1.0"
parity-wasm = "0.15.0"
+1 -1
View File
@@ -9,6 +9,6 @@ strict = []
[dependencies]
lazy_static = "1.0.0"
parking_lot = "0.5"
polkadot-state-machine = { path = "../../state_machine" , version = "0.1" }
polkadot-state-machine = { path = "../../state-machine" , version = "0.1" }
environmental = { path = "../../environmental", version = "0.1.0" }
polkadot-primitives = { path = "../../primitives", version = "0.1.0" }
+1 -1
View File
@@ -9,7 +9,7 @@ jsonrpc-core = { git="https://github.com/paritytech/jsonrpc.git" }
jsonrpc-macros = { git="https://github.com/paritytech/jsonrpc.git" }
polkadot-client = { path = "../client", version = "0.1" }
polkadot-primitives = { path = "../primitives", version = "0.1" }
polkadot-state-machine = { path = "../state_machine", version = "0.1" }
polkadot-state-machine = { path = "../state-machine", version = "0.1" }
[dev-dependencies]
assert_matches = "1.1"
+6
View File
@@ -0,0 +1,6 @@
[package]
name = "runtime-std"
version = "0.1.0"
authors = ["Robert Habermeier <rphmeier@gmail.com>"]
[dependencies]
+7
View File
@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}