Files
pezkuwi-subxt/substrate/client/service/Cargo.toml
T
Ashley 9a925faf7d Remove more instances of futures01 (#4633)
* Start removing last few instances of futures01

* Use to_poll on wasm

* Revert "Use to_poll on wasm"

This reverts commit 1c61728f10d520df5f9b28c415a0db68e478b9c7.

* Fix fg test

* Upgrade network test futures

* Update offchain hyper version

* Update service test

* bump tokio to 0.2.10

* Removed some unneeded tokios

* fixes

* fix run_until_all_full

* Make service test debuggable

* Update client/offchain/src/api/http.rs

Co-Authored-By: Demi Obenour <48690212+DemiMarie-parity@users.noreply.github.com>

* Add service_test to test-int output

* nitpicking

* Finally fix test

* Give up and revert client/serviec/test

* Revert gitlab ci too

Co-authored-by: Demi Obenour <demi@parity.io>
2020-02-28 17:02:33 +01:00

69 lines
3.3 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.0.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" }
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" }