mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-29 13:47:25 +00:00
bd652793db
* Move transaction pool to primitives * move backend, errors into primitives * remove unused client depencies * Move rpc-api into primitives * Move peerset back to client * Move rpc/api back to client, move palette/support/rpc into utils * move support-rpc into subfolder * move system-rpc into utils * move transaction-pool and -graph back into client * fix broken imports * Clean up test primitives * Make support test utils independent of frame * remove unnecessary node dependencies from service * Reactivate dependency script: - only enforce the now achieved status quo will remain - allow for primitives to depend on /client for now without failing - more discriptive error message so people understand, what it wants - minor fix to differentiative between ../client and /client (which may be a subfolder) - don't allow this to fail anylonger. * fix doc comment * 'Should not' rather than 'must not'. * Revert unwanted dependency changes * fix faulty import * fixup derive_more version * fix wrong import path
64 lines
2.9 KiB
TOML
64 lines
2.9 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" }
|
|
tx-pool-api = { package = "substrate-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" }
|
|
transaction_pool = { package = "sc-transaction-pool", path = "../../client/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"
|