[package] name = "parachain-template-node" version = "0.1.0" authors = ["Anonymous"] description = "A new Cumulus FRAME-based Substrate Node, ready for hacking together a parachain." license = "Unlicense" homepage = "https://substrate.io" repository = "https://github.com/paritytech/cumulus/" edition = "2021" build = "build.rs" [dependencies] clap = { version = "4.1.8", features = ["derive"] } log = "0.4.17" codec = { package = "parity-scale-codec", version = "3.0.0" } serde = { version = "1.0.152", features = ["derive"] } jsonrpsee = { version = "0.16.2", features = ["server"] } # Local parachain-template-runtime = { path = "../runtime" } # Substrate frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-cli = { 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-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-executor = { 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-sync = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-rpc = { 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-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-transaction-pool-api = { 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-block-builder = { 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-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "polkadot-v0.9.40" } # Polkadot polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.40" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } cumulus-client-consensus-aura = { path = "../../client/consensus/aura" } cumulus-client-consensus-common = { path = "../../client/consensus/common" } cumulus-client-service = { path = "../../client/service" } cumulus-primitives-core = { path = "../../primitives/core" } cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent" } cumulus-relay-chain-interface = { path = "../../client/relay-chain-interface" } [build-dependencies] substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } [features] default = [] runtime-benchmarks = [ "try-runtime-cli/try-runtime", "parachain-template-runtime/runtime-benchmarks", "polkadot-cli/runtime-benchmarks", ] try-runtime = [ "try-runtime-cli/try-runtime", "parachain-template-runtime/try-runtime" ]