Files
pezkuwi-subxt/substrate/client/api/Cargo.toml
T
Seun Lanlege 4fa5941f44 Move sc-client into sc-service (#5502)
* Drop client from sc-network and sc-client-db, move LongestChain to sc-client-api

* move leaves, cht, in_mem to sc-client-api, drop client from sc-finality-grandpa

* drop sc-service from sc-rpc

* drop sc-service from sc-consensus-aura

* drop sc-client from manual-seal and babe

* drop sc-client from utils/frame/rpc/system and utils/frame/benchmarking-cli

* drop sc-client from bin/node and bin/node-template

* drop sc-client

* fix tests

* remove check -p sc-client from gitlab.yml

* fix warnings

* fixes ui test

* fix light client tests

* adds associated Client type to AbstractService

* adds UsageProvider to Client

* fixed ui test, again

* tried and failed to get node-cli to compile for wasm

* thanks to tomaka for helping me get node-cli to compile for wasmm

* ui test pls pas 🙏🏾

* all tests passing 🪄

* no_run documentation code

* rm -f documentation code

* ClientProvider

* fix mega trait

* move LongestChain to sc-consensus, use adds minimal bounds to AbstractService::Client

* adds license to sc-consensus

Co-authored-by: Benjamin Kampmann <ben@parity.io>
2020-04-28 11:59:31 +00:00

50 lines
2.6 KiB
TOML

[package]
name = "sc-client-api"
version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Substrate client interfaces."
documentation = "https://docs.rs/sc-client-api"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-consensus = { version = "0.8.0-dev", path = "../../primitives/consensus/common" }
derive_more = { version = "0.99.2" }
sc-executor = { version = "0.8.0-dev", path = "../executor" }
sp-externalities = { version = "0.8.0-dev", path = "../../primitives/externalities" }
fnv = { version = "1.0.6" }
futures = { version = "0.3.1" }
hash-db = { version = "0.15.2", default-features = false }
sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
hex-literal = { version = "0.2.1" }
sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" }
kvdb = "0.5.0"
log = { version = "0.4.8" }
parking_lot = "0.10.0"
lazy_static = "1.4.0"
sp-database = { version = "2.0.0-dev", path = "../../primitives/database" }
sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-version = { version = "2.0.0-dev", default-features = false, path = "../../primitives/version" }
sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
sp-utils = { version = "2.0.0-dev", path = "../../primitives/utils" }
sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-dev", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
sp-trie = { version = "2.0.0-dev", path = "../../primitives/trie" }
sp-storage = { version = "2.0.0-dev", path = "../../primitives/storage" }
sp-transaction-pool = { version = "2.0.0-dev", path = "../../primitives/transaction-pool" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-dev", path = "../../utils/prometheus" }
[dev-dependencies]
kvdb-memorydb = "0.5.0"
sp-test-primitives = { version = "2.0.0-dev", path = "../../primitives/test-primitives" }
substrate-test-runtime = { version = "2.0.0-dev", path = "../../test-utils/runtime" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]