mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
42 lines
3.1 KiB
TOML
42 lines
3.1 KiB
TOML
[package]
|
|
name = "polkadot-service"
|
|
version = "0.6.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parking_lot = "0.9.0"
|
|
lazy_static = "1.0"
|
|
log = "0.4.6"
|
|
futures = "0.1"
|
|
exit-future = "0.1"
|
|
slog = "^2"
|
|
hex-literal = "0.2"
|
|
av_store = { package = "polkadot-availability-store", path = "../availability-store" }
|
|
consensus = { package = "polkadot-validation", path = "../validation" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
polkadot-executor = { path = "../executor" }
|
|
polkadot-network = { path = "../network" }
|
|
sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
srml-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
srml-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|