Files
pez-solochain-template/node/Cargo.toml
T
2024-06-24 12:50:56 +00:00

75 lines
2.6 KiB
TOML

[package]
name = "solochain-template-node"
description = "A solochain node template built with Substrate, part of Polkadot Sdk. (polkadot v1.13.0)"
version = "0.1.0"
license = "Unlicense"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
edition.workspace = true
publish = false
build = "build.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
clap = { version = "4.5.3", features = ["derive"] }
futures = { version = "0.3.30", features = ["thread-pool"] }
serde_json = { workspace = true, default-features = true }
jsonrpsee = { version = "0.22", features = ["server"] }
sc-cli = { version = "0.43.0" }
sp-core = { version = "34.0.0" }
sc-executor = { version = "0.39.0" }
sc-network = { version = "0.41.0" }
sc-service = { version = "0.42.0" }
sc-telemetry = { version = "21.0.0" }
sc-transaction-pool = { version = "35.0.0" }
sc-transaction-pool-api = { version = "35.0.0" }
sc-offchain = { version = "36.0.0" }
sc-consensus-aura = { version = "0.41.0" }
sp-consensus-aura = { version = "0.39.0" }
sc-consensus = { version = "0.40.0" }
sc-consensus-grandpa = { version = "0.26.0" }
sp-consensus-grandpa = { version = "20.0.0" }
sc-client-api = { version = "35.0.0" }
sc-rpc-api = { version = "0.40.0" }
sc-basic-authorship = { version = "0.41.0" }
sp-runtime = { version = "38.0.0" }
sp-io = { version = "37.0.0" }
sp-timestamp = { version = "33.0.0" }
sp-inherents = { version = "33.0.0" }
sp-keyring = { version = "38.0.0" }
sp-api = { version = "33.0.0" }
sp-blockchain = { version = "35.0.0" }
sp-block-builder = { version = "33.0.0" }
frame-system = { version = "35.0.0" }
pallet-transaction-payment = { version = "35.0.0", default-features = false }
pallet-transaction-payment-rpc = { version = "37.0.0" }
substrate-frame-rpc-system = { version = "35.0.0" }
frame-benchmarking-cli = { version = "39.0.0" }
solochain-template-runtime = { version = "0.1.0", path = "../runtime" }
[build-dependencies]
substrate-build-script-utils = { version = "11.0.0" }
[features]
default = []
# Dependencies that are only required if runtime benchmarking should be build.
runtime-benchmarks = [
"frame-benchmarking-cli/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"solochain-template-runtime/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
# Enable features that allow the runtime to be tried and debugged. Name might be subject to change
# in the near future.
try-runtime = [
"frame-system/try-runtime",
"pallet-transaction-payment/try-runtime",
"solochain-template-runtime/try-runtime",
"sp-runtime/try-runtime",
]