Files
pezkuwi-subxt/substrate/client/service/Cargo.toml
T
Bastian Köcher a1b53280b4 Update to SCALE 1.2.0 (#5113)
This updates `parity-scale-codec` to `1.2.0`, which includes multiple
performance improvements and a fix that bounds the capacity of a vector
at decoding.
2020-03-03 14:40:02 +01:00

69 lines
3.4 KiB
TOML

[package]
name = "sc-service"
version = "0.8.0-alpha.3"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Substrate service. Starts a thread that spins up the network, client, and extrinsic pool. Manages communication between them."
[features]
default = ["rocksdb"]
# The RocksDB feature activates the RocksDB database backend. If it is not activated, and you pass
# a path to a database, an error will be produced at runtime.
rocksdb = ["sc-client-db/kvdb-rocksdb"]
wasmtime = [
"sc-executor/wasmtime",
]
[dependencies]
derive_more = "0.99.2"
futures01 = { package = "futures", version = "0.1.29" }
futures = "0.3.1"
futures-diagnose = "1.0"
parking_lot = "0.10.0"
lazy_static = "1.4.0"
log = "0.4.8"
slog = { version = "2.5.2", features = ["nested-values"] }
futures-timer = "3.0.1"
wasm-timer = "0.2"
exit-future = "0.2.0"
serde = "1.0.101"
serde_json = "1.0.41"
sysinfo = "0.9.5"
target_info = "0.1.0"
sc-keystore = { version = "2.0.0-alpha.2", path = "../keystore" }
sp-io = { version = "2.0.0-alpha.2", path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-alpha.2", path = "../../primitives/runtime" }
sp-blockchain = { version = "2.0.0-alpha.2", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0-alpha.2", path = "../../primitives/core" }
sp-session = { version = "2.0.0-alpha.2", path = "../../primitives/session" }
sp-application-crypto = { version = "2.0.0-alpha.2", path = "../../primitives/application-crypto" }
sp-consensus = { version = "0.8.0-alpha.2", path = "../../primitives/consensus/common" }
sc-network = { version = "0.8.0-alpha.2", path = "../network" }
sc-chain-spec = { version = "2.0.0-alpha.2", path = "../chain-spec" }
sc-client-api = { version = "2.0.0-alpha.2", path = "../api" }
sc-client = { version = "0.8.0-alpha.2", path = "../" }
sp-api = { version = "2.0.0-alpha.2", path = "../../primitives/api" }
sc-client-db = { version = "0.8.0-alpha.2", path = "../db" }
codec = { package = "parity-scale-codec", version = "1.2.0" }
sc-executor = { version = "0.8.0-alpha.2", path = "../executor" }
sc-transaction-pool = { version = "2.0.0-alpha.2", path = "../transaction-pool" }
sp-transaction-pool = { version = "2.0.0-alpha.2", path = "../../primitives/transaction-pool" }
sc-rpc-server = { version = "2.0.0-alpha.2", path = "../rpc-servers" }
sc-rpc = { version = "2.0.0-alpha.2", path = "../rpc" }
sc-telemetry = { version = "2.0.0-alpha.2", path = "../telemetry" }
sc-offchain = { version = "2.0.0-alpha.2", path = "../offchain" }
parity-multiaddr = { package = "parity-multiaddr", version = "0.5.0" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" , version = "0.8.0-alpha.2"}
sc-tracing = { version = "2.0.0-alpha.2", path = "../tracing" }
tracing = "0.1.10"
parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] }
[dev-dependencies]
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8.0-alpha.2", path = "../../primitives/consensus/babe" }
grandpa = { version = "0.8.0-alpha.2", package = "sc-finality-grandpa", path = "../finality-grandpa" }
grandpa-primitives = { version = "2.0.0-alpha.2", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }