mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-26 10:01:13 +00:00
a782021ee8
* recover tx pool on light client * revert local tests fix * removed import renamings * futures03::Future -> std::future::Future * Update core/transaction-pool/graph/src/error.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * replace remove_from_ready with remove_invalid * avoid excess hashing * debug -> warn * TransactionPool + BasicTransactionPool * pause future tx reject when resubmitting * bump impl_version to make CI happy * and revert back local test fixes * alter doc to restart CI * Transaction::clone() -> Transaction::duplicate() * transactions -> updated_tranasctions * remove explicit consensus-common ref * ::std:: -> std:: * manual set/unset flag -> calling clusore with given flag value * removed comments * removed force argument * BestIterator -> Box<Iterator> * separate crate for TxPool + Maintainer trait * long line fix * pos-merge fix * fix benches compilation * Rename txpoolapi to txpool_api * Clean up. * Finalize merge. * post-merge fix * Move transaction pool api to primitives directly. * Consistent naming for txpool-runtime-api * Warn about missing docs. * Move abstraction for offchain calls to tx-pool-api. * Merge RPC instantiation. * Update cargo.lock * Post merge fixes. * Avoid depending on client. * Fix build
65 lines
3.0 KiB
TOML
65 lines
3.0 KiB
TOML
[package]
|
|
name = "substrate-service"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[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 = ["client_db/kvdb-rocksdb"]
|
|
wasmtime = [
|
|
"substrate-executor/wasmtime",
|
|
]
|
|
|
|
[dependencies]
|
|
derive_more = "0.99.2"
|
|
futures = "0.1.29"
|
|
futures03 = { package = "futures", version = "0.3.1", features = ["compat"] }
|
|
parking_lot = "0.9.0"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.8"
|
|
slog = { version = "2.5.2", features = ["nested-values"] }
|
|
tokio-executor = "0.1.8"
|
|
tokio-timer = "0.2.11"
|
|
exit-future = "0.1.4"
|
|
serde = "1.0.101"
|
|
serde_json = "1.0.41"
|
|
sysinfo = "0.9.5"
|
|
target_info = "0.1.0"
|
|
keystore = { package = "substrate-keystore", path = "../keystore" }
|
|
sr-io = { path = "../../primitives/sr-io" }
|
|
sr-primitives = { path = "../../primitives/sr-primitives" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
primitives = { package = "substrate-primitives", path = "../../primitives/core" }
|
|
session = { package = "substrate-session", path = "../../primitives/session" }
|
|
app-crypto = { package = "substrate-application-crypto", path = "../../primitives/application-crypto" }
|
|
consensus_common = { package = "substrate-consensus-common", path = "../../primitives/consensus/common" }
|
|
network = { package = "substrate-network", path = "../network" }
|
|
chain-spec = { package = "substrate-chain-spec", path = "../chain-spec" }
|
|
client-api = { package = "substrate-client-api", path = "../api" }
|
|
client = { package = "substrate-client", path = "../" }
|
|
sr-api = { path = "../../primitives/sr-api" }
|
|
txpool-runtime-api = { package = "sp-transaction-pool-runtime-api", path = "../../primitives/transaction-pool/runtime-api" }
|
|
client_db = { package = "substrate-client-db", path = "../db" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
substrate-executor = { path = "../executor" }
|
|
txpool = { package = "sc-transaction-pool", path = "../transaction-pool" }
|
|
txpool-api = { package = "sp-transaction-pool-api", path = "../../primitives/transaction-pool" }
|
|
rpc-servers = { package = "substrate-rpc-servers", path = "../rpc-servers" }
|
|
rpc = { package = "substrate-rpc", path = "../rpc" }
|
|
tel = { package = "substrate-telemetry", path = "../telemetry" }
|
|
offchain = { package = "substrate-offchain", path = "../offchain" }
|
|
parity-multiaddr = { package = "parity-multiaddr", version = "0.5.0" }
|
|
grafana-data-source = { path = "../grafana-data-source" }
|
|
substrate-tracing = { package = "substrate-tracing", path = "../tracing" }
|
|
tracing = "0.1.10"
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { path = "../../test/utils/runtime/client" }
|
|
babe-primitives = { package = "substrate-consensus-babe-primitives", path = "../../primitives/consensus/babe" }
|
|
grandpa = { package = "substrate-finality-grandpa", path = "../finality-grandpa" }
|
|
grandpa-primitives = { package = "substrate-finality-grandpa-primitives", path = "../../primitives/finality-grandpa" }
|
|
tokio = "0.1"
|