mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 12:27:56 +00:00
clean up workspaces a little
This commit is contained in:
@@ -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 = [
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "runtime-std"
|
||||
version = "0.1.0"
|
||||
authors = ["Robert Habermeier <rphmeier@gmail.com>"]
|
||||
|
||||
[dependencies]
|
||||
@@ -0,0 +1,7 @@
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user