mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 13:21:01 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
45 lines
1.6 KiB
TOML
45 lines
1.6 KiB
TOML
[package]
|
|
name = "test-parachain-undying-collator"
|
|
description = "Collator for the undying test parachain"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "undying-collator"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
|
clap = { version = "4.5.3", features = ["derive"] }
|
|
futures = "0.3.30"
|
|
futures-timer = "3.0.2"
|
|
log = { workspace = true, default-features = true }
|
|
|
|
test-parachain-undying = { path = ".." }
|
|
polkadot-primitives = { path = "../../../../primitives" }
|
|
polkadot-cli = { path = "../../../../cli" }
|
|
polkadot-service = { path = "../../../../node/service", features = ["elastic-scaling-experimental", "rococo-native"] }
|
|
polkadot-node-primitives = { path = "../../../../node/primitives" }
|
|
polkadot-node-subsystem = { path = "../../../../node/subsystem" }
|
|
|
|
sc-cli = { path = "../../../../../substrate/client/cli" }
|
|
sp-core = { path = "../../../../../substrate/primitives/core" }
|
|
sc-service = { path = "../../../../../substrate/client/service" }
|
|
|
|
[dev-dependencies]
|
|
polkadot-parachain-primitives = { path = "../../.." }
|
|
polkadot-test-service = { path = "../../../../node/test/service" }
|
|
polkadot-node-core-pvf = { path = "../../../../node/core/pvf", features = ["test-utils"] }
|
|
|
|
substrate-test-utils = { path = "../../../../../substrate/test-utils" }
|
|
sc-service = { path = "../../../../../substrate/client/service" }
|
|
sp-keyring = { path = "../../../../../substrate/primitives/keyring" }
|
|
|
|
tokio = { version = "1.24.2", features = ["macros"] }
|