Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
move rpc crate
Browse files Browse the repository at this point in the history
  • Loading branch information
cheme committed Mar 7, 2022
1 parent c9df2f7 commit 40d7f8e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ members = [
"client/service",
"client/service/test",
"client/state-db",
"client/state-trie-migration-rpc",
"client/sync-state-rpc",
"client/telemetry",
"client/tracing",
Expand Down Expand Up @@ -118,7 +119,6 @@ members = [
"frame/staking/reward-curve",
"frame/staking/reward-fn",
"frame/state-trie-migration",
"frame/state-trie-migration/rpc",
"frame/sudo",
"frame/support",
"frame/support/procedural",
Expand Down
2 changes: 1 addition & 1 deletion bin/node/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ node-primitives = { version = "2.0.0", path = "../primitives" }
pallet-contracts-rpc = { version = "4.0.0-dev", path = "../../../frame/contracts/rpc/" }
pallet-mmr-rpc = { version = "3.0.0", path = "../../../frame/merkle-mountain-range/rpc/" }
pallet-transaction-payment-rpc = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/rpc/" }
pallet-state-trie-migration-rpc = { version = "4.0.0-dev", path = "../../../frame/state-trie-migration/rpc/" }
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" }
sc-consensus-babe-rpc = { version = "0.10.0-dev", path = "../../../client/consensus/babe/rpc" }
Expand All @@ -26,6 +25,7 @@ sc-finality-grandpa = { version = "0.10.0-dev", path = "../../../client/finality
sc-finality-grandpa-rpc = { version = "0.10.0-dev", path = "../../../client/finality-grandpa/rpc" }
sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" }
sc-rpc = { version = "4.0.0-dev", path = "../../../client/rpc" }
sc-state-trie-migration-rpc = { version = "4.0.0-dev", path = "../../../client/state-trie-migration-rpc/" }
sc-sync-state-rpc = { version = "0.10.0-dev", path = "../../../client/sync-state-rpc" }
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pallet-state-trie-migration-rpc"
name = "sc-state-trie-migration-rpc"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
Expand All @@ -20,9 +20,9 @@ jsonrpc-derive = "18.0.0"
serde = { version = "1", features = ["derive"] }

# Substrate Dependencies
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
sc-client-api = { version = "4.0.0-dev", path = "../api" }
sc-rpc-api = { version = "0.10.0-dev", path = "../rpc-api" }
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }

[dev-dependencies]
serde_json = "1"

0 comments on commit 40d7f8e

Please sign in to comment.