Refactor sr-api to not depend on client anymore (#4086)

* Refactor sr-api to not depend on client anymore

* Fix benches

* Apply suggestions from code review

Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com>

* Apply suggestions from code review
This commit is contained in:
Bastian Köcher
2019-11-11 16:26:49 +01:00
committed by Benjamin Kampmann
parent e26d1a0b3e
commit 2ecffa1cd0
140 changed files with 1514 additions and 984 deletions
+8 -2
View File
@@ -22,7 +22,10 @@ sr-primitives = { path = "../../core/sr-primitives", default-features = false }
sr-staking-primitives = { path = "../../core/sr-staking-primitives", default-features = false }
# core dependencies
client = { package = "substrate-client", path = "../../core/client", default-features = false }
sr-api = { path = "../../core/sr-api", default-features = false }
inherents = { package = "substrate-inherents", path = "../../core/inherents", default-features = false }
block-builder-api = { package = "substrate-block-builder-runtime-api", path = "../../core/block-builder/runtime-api", default-features = false }
tx-pool-api = { package = "substrate-transaction-pool-runtime-api", path = "../../core/transaction-pool/runtime-api", default-features = false }
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
version = { package = "sr-version", path = "../../core/sr-version", default-features = false }
substrate-session = { path = "../../core/session", default-features = false }
@@ -72,7 +75,7 @@ std = [
"babe-primitives/std",
"babe/std",
"balances/std",
"client/std",
"sr-api/std",
"codec/std",
"collective/std",
"contracts/std",
@@ -111,4 +114,7 @@ std = [
"transaction-payment/std",
"transaction-payment-rpc-runtime-api/std",
"version/std",
"block-builder-api/std",
"tx-pool-api/std",
"inherents/std",
]