[package] authors = ["Parity Technologies "] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" edition = "2021" [dependencies] # polkadot deps polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-node-subsystem-util = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-node-network-protocol = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-network-bridge = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } # substrate deps sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } # 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.66" futures = "0.3.26" tokio = { version = "1.26.0", features = ["macros"] }