mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 22:17:58 +00:00
b7b0b10f42
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.24.2 to 1.25.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits/tokio-1.25.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
2.6 KiB
TOML
47 lines
2.6 KiB
TOML
[package]
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
name = "cumulus-relay-chain-minimal-node"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# polkadot deps
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-subsystem-util = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-network-protocol = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-network-bridge = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# substrate deps
|
|
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# cumulus deps
|
|
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|
|
cumulus-relay-chain-rpc-interface = { path = "../relay-chain-rpc-interface" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
|
|
array-bytes = "6.0"
|
|
lru = "0.9"
|
|
tracing = "0.1.37"
|
|
async-trait = "0.1.63"
|
|
futures = "0.3.26"
|
|
url = "2.2.2"
|
|
tokio = { version = "1.25.0", features = ["macros"] }
|