mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 12:51:02 +00:00
90e5c5ddfb
* Fix typo * Support multiple telemetry endpoints and verbosity levels * Bump substrate-telemetry version * Telemetrify Aura consensus * Telemetrify Grandpa * Fix CI version conflicts * Implement style remarks * Fix fixture * Implement style remarks * Clone only when necessary * Get rid of Arc for URL * Handle connection issues better
35 lines
1.3 KiB
TOML
35 lines
1.3 KiB
TOML
[package]
|
|
name = "substrate-finality-grandpa"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
fork-tree = { path = "../../core/util/fork-tree" }
|
|
futures = "0.1"
|
|
log = "0.4"
|
|
parking_lot = "0.7.1"
|
|
tokio = "0.1.7"
|
|
rand = "0.6"
|
|
parity-codec = "3.0"
|
|
parity-codec-derive = "3.0"
|
|
runtime_primitives = { package = "sr-primitives", path = "../sr-primitives" }
|
|
consensus_common = { package = "substrate-consensus-common", path = "../consensus/common" }
|
|
substrate-primitives = { path = "../primitives" }
|
|
substrate-telemetry = { path = "../telemetry" }
|
|
client = { package = "substrate-client", path = "../client" }
|
|
network = { package = "substrate-network", path = "../network" }
|
|
service = { package = "substrate-service", path = "../service", optional = true }
|
|
fg_primitives = { package = "substrate-finality-grandpa-primitives", path = "primitives" }
|
|
grandpa = { package = "finality-grandpa", version = "0.6.0", features = ["derive-codec"] }
|
|
|
|
[dev-dependencies]
|
|
network = { package = "substrate-network", path = "../network", features = ["test-helpers"] }
|
|
keyring = { package = "substrate-keyring", path = "../keyring" }
|
|
test_client = { package = "substrate-test-client", path = "../test-client"}
|
|
env_logger = "0.6"
|
|
|
|
[features]
|
|
default = ["service-integration"]
|
|
service-integration = ["service"]
|