[package] name = "polkadot-service-new" version = "0.8.3" authors = ["Parity Technologies "] edition = "2018" [dependencies] parking_lot = "0.9.0" serde = { version = "1.0.102", features = ["derive"] } lazy_static = "1.4.0" log = "0.4.8" futures = "0.3.4" slog = "2.5.2" hex-literal = "0.2.1" polkadot-primitives = { path = "../../primitives" } polkadot-runtime = { path = "../../runtime/polkadot" } polkadot-overseer = { path = "../overseer" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../subsystem" } kusama-runtime = { path = "../../runtime/kusama" } westend-runtime = { path = "../../runtime/westend" } polkadot-network = { path = "../../network", optional = true } polkadot-rpc = { path = "../../rpc" } polkadot-node-core-proposer = { path = "../core/proposer" } sp-io = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-executor = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-network = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sp-trie = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false } telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } authority-discovery = { package = "sc-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } codec = { package = "parity-scale-codec", version = "1.3.0" } sp-session = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } [dev-dependencies] polkadot-test-runtime-client = { path = "../../runtime/test-runtime/client" } sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" } env_logger = "0.7.0" [features] default = ["db", "full-node"] db = ["service/db"] runtime-benchmarks = ["polkadot-runtime/runtime-benchmarks", "kusama-runtime/runtime-benchmarks", "westend-runtime/runtime-benchmarks"] full-node = []