Skip to content
Snippets Groups Projects
Commit 2c39e247 authored by asynchronous rob's avatar asynchronous rob
Browse files

clean up workspaces a little

parent 8e6cb1b6
Branches
No related merge requests found
...@@ -14,13 +14,13 @@ members = [ ...@@ -14,13 +14,13 @@ members = [
"collator", "collator",
"environmental", "environmental",
"executor", "executor",
"native-runtime",
"primitives", "primitives",
"rpc-servers",
"rpc", "rpc",
"rpc_servers",
"native-runtime",
"runtime-codec", "runtime-codec",
"serializer", "serializer",
"state_machine", "state-machine",
"validator", "validator",
] ]
exclude = [ exclude = [
......
...@@ -12,4 +12,4 @@ log = "0.3" ...@@ -12,4 +12,4 @@ log = "0.3"
polkadot-client = { path = "../client", version = "0.1" } polkadot-client = { path = "../client", version = "0.1" }
polkadot-executor = { path = "../executor", version = "0.1" } polkadot-executor = { path = "../executor", version = "0.1" }
polkadot-primitives = { path = "../primitives", 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" }
...@@ -6,4 +6,4 @@ authors = ["Parity Technologies <admin@parity.io>"] ...@@ -6,4 +6,4 @@ authors = ["Parity Technologies <admin@parity.io>"]
[dependencies] [dependencies]
error-chain = "0.11" error-chain = "0.11"
polkadot-primitives = { path = "../primitives", 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" }
...@@ -8,7 +8,7 @@ error-chain = "0.11" ...@@ -8,7 +8,7 @@ error-chain = "0.11"
polkadot-runtime-codec = { path = "../runtime-codec", version = "0.1" } polkadot-runtime-codec = { path = "../runtime-codec", version = "0.1" }
polkadot-primitives = { path = "../primitives", version = "0.1" } polkadot-primitives = { path = "../primitives", version = "0.1" }
polkadot-serializer = { path = "../serializer", 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 = "1.0"
serde_derive = "1.0" serde_derive = "1.0"
parity-wasm = "0.15.0" parity-wasm = "0.15.0"
......
...@@ -9,6 +9,6 @@ strict = [] ...@@ -9,6 +9,6 @@ strict = []
[dependencies] [dependencies]
lazy_static = "1.0.0" lazy_static = "1.0.0"
parking_lot = "0.5" 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" } environmental = { path = "../../environmental", version = "0.1.0" }
polkadot-primitives = { path = "../../primitives", version = "0.1.0" } polkadot-primitives = { path = "../../primitives", version = "0.1.0" }
File moved
File moved
...@@ -9,7 +9,7 @@ jsonrpc-core = { git="https://github.com/paritytech/jsonrpc.git" } ...@@ -9,7 +9,7 @@ jsonrpc-core = { git="https://github.com/paritytech/jsonrpc.git" }
jsonrpc-macros = { git="https://github.com/paritytech/jsonrpc.git" } jsonrpc-macros = { git="https://github.com/paritytech/jsonrpc.git" }
polkadot-client = { path = "../client", version = "0.1" } polkadot-client = { path = "../client", version = "0.1" }
polkadot-primitives = { path = "../primitives", 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] [dev-dependencies]
assert_matches = "1.1" assert_matches = "1.1"
......
[package]
name = "runtime-std"
version = "0.1.0"
authors = ["Robert Habermeier <rphmeier@gmail.com>"]
[dependencies]
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment