mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
fe97c3a3a2
* bump version & spec version * update Cargo.lock * bump substrate
151 lines
8.4 KiB
TOML
151 lines
8.4 KiB
TOML
[package]
|
|
name = "polkadot-service"
|
|
version = "0.9.2"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Substrate Client
|
|
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
beefy-primitives = { git = "https://github.com/paritytech/grandpa-bridge-gadget", branch = "master" }
|
|
beefy-gadget = { git = "https://github.com/paritytech/grandpa-bridge-gadget", branch = "master" }
|
|
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-finality-grandpa-warp-sync = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Substrate Primitives
|
|
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Substrate Pallets
|
|
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Substrate Other
|
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# External Crates
|
|
futures = "0.3.12"
|
|
hex-literal = "0.3.1"
|
|
tracing = "0.1.25"
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
thiserror = "1.0.23"
|
|
kvdb = "0.9.0"
|
|
kvdb-rocksdb = { version = "0.11.0", optional = true }
|
|
|
|
# Polkadot
|
|
polkadot-node-core-parachains-inherent = { path = "../core/parachains-inherent" }
|
|
polkadot-overseer = { path = "../overseer" }
|
|
polkadot-parachain = { path = "../../parachain" }
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
polkadot-node-primitives = { path = "../primitives" }
|
|
polkadot-rpc = { path = "../../rpc" }
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../subsystem" }
|
|
polkadot-node-subsystem-util = { path = "../subsystem-util" }
|
|
polkadot-runtime-parachains = { path = "../../runtime/parachains" }
|
|
|
|
# Polkadot Runtimes
|
|
polkadot-runtime = { path = "../../runtime/polkadot" }
|
|
kusama-runtime = { path = "../../runtime/kusama" }
|
|
westend-runtime = { path = "../../runtime/westend" }
|
|
rococo-runtime = { path = "../../runtime/rococo" }
|
|
|
|
# Polkadot Subsystems
|
|
polkadot-availability-bitfield-distribution = { path = "../network/bitfield-distribution", optional = true }
|
|
polkadot-availability-distribution = { path = "../network/availability-distribution", optional = true }
|
|
polkadot-availability-recovery = { path = "../network/availability-recovery", optional = true }
|
|
polkadot-collator-protocol = { path = "../network/collator-protocol", optional = true }
|
|
polkadot-gossip-support = { path = "../network/gossip-support", optional = true }
|
|
polkadot-network-bridge = { path = "../network/bridge", optional = true }
|
|
polkadot-node-collation-generation = { path = "../collation-generation", optional = true }
|
|
polkadot-node-core-av-store = { path = "../core/av-store", optional = true }
|
|
polkadot-node-core-backing = { path = "../core/backing", optional = true }
|
|
polkadot-node-core-bitfield-signing = { path = "../core/bitfield-signing", optional = true }
|
|
polkadot-node-core-candidate-selection = { path = "../core/candidate-selection", optional = true }
|
|
polkadot-node-core-candidate-validation = { path = "../core/candidate-validation", optional = true }
|
|
polkadot-node-core-chain-api = { path = "../core/chain-api", optional = true }
|
|
polkadot-node-core-provisioner = { path = "../core/provisioner", optional = true }
|
|
polkadot-node-core-runtime-api = { path = "../core/runtime-api", optional = true }
|
|
polkadot-statement-distribution = { path = "../network/statement-distribution", optional = true }
|
|
polkadot-approval-distribution = { path = "../network/approval-distribution", optional = true }
|
|
polkadot-node-core-approval-voting = { path = "../core/approval-voting", optional = true }
|
|
|
|
[dev-dependencies]
|
|
polkadot-test-client = { path = "../test/client" }
|
|
env_logger = "0.8.2"
|
|
|
|
[features]
|
|
default = ["db", "full-node"]
|
|
db = ["service/db"]
|
|
full-node = [
|
|
"polkadot-node-core-av-store",
|
|
"polkadot-node-core-approval-voting",
|
|
"polkadot-availability-bitfield-distribution",
|
|
"polkadot-availability-distribution",
|
|
"polkadot-availability-recovery",
|
|
"polkadot-collator-protocol",
|
|
"polkadot-gossip-support",
|
|
"polkadot-network-bridge",
|
|
"polkadot-node-collation-generation",
|
|
"polkadot-node-core-backing",
|
|
"polkadot-node-core-bitfield-signing",
|
|
"polkadot-node-core-candidate-selection",
|
|
"polkadot-node-core-candidate-validation",
|
|
"polkadot-node-core-chain-api",
|
|
"polkadot-node-core-provisioner",
|
|
"polkadot-node-core-runtime-api",
|
|
"polkadot-statement-distribution",
|
|
"polkadot-approval-distribution",
|
|
"sc-finality-grandpa-warp-sync",
|
|
"kvdb-rocksdb"
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
"polkadot-runtime/runtime-benchmarks",
|
|
"kusama-runtime/runtime-benchmarks",
|
|
"westend-runtime/runtime-benchmarks",
|
|
"rococo-runtime/runtime-benchmarks"
|
|
]
|
|
try-runtime = [
|
|
"polkadot-runtime/try-runtime",
|
|
"kusama-runtime/try-runtime",
|
|
"westend-runtime/try-runtime",
|
|
"rococo-runtime/try-runtime",
|
|
]
|