mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-04-22 02:08:04 +00:00
78 lines
2.6 KiB
TOML
78 lines
2.6 KiB
TOML
[package]
|
|
name = "solochain-template-node"
|
|
description = "A solochain node template built with Substrate, part of Polkadot Sdk. (polkadot v1.11.0)"
|
|
version = "0.1.0"
|
|
license = "MIT-0"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
build = "build.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[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.41.0" }
|
|
sp-core = { version = "32.0.0" }
|
|
sc-executor = { version = "0.37.0" }
|
|
sc-network = { version = "0.39.0" }
|
|
sc-service = { version = "0.40.0" }
|
|
sc-telemetry = { version = "19.0.0" }
|
|
sc-transaction-pool = { version = "33.0.0" }
|
|
sc-transaction-pool-api = { version = "33.0.0" }
|
|
sc-offchain = { version = "34.0.0" }
|
|
sc-consensus-aura = { version = "0.39.0" }
|
|
sp-consensus-aura = { version = "0.37.0" }
|
|
sc-consensus = { version = "0.38.0" }
|
|
sc-consensus-grandpa = { version = "0.24.0" }
|
|
sp-consensus-grandpa = { version = "18.0.0" }
|
|
sc-client-api = { version = "33.0.0" }
|
|
sc-rpc-api = { version = "0.38.0" }
|
|
sc-basic-authorship = { version = "0.39.0" }
|
|
sp-runtime = { version = "36.0.0" }
|
|
sp-io = { version = "35.0.0" }
|
|
sp-timestamp = { version = "31.0.0" }
|
|
sp-inherents = { version = "31.0.0" }
|
|
sp-keyring = { version = "36.0.0" }
|
|
sp-api = { version = "31.0.0" }
|
|
sp-blockchain = { version = "33.0.0" }
|
|
sp-block-builder = { version = "31.0.0" }
|
|
frame-system = { version = "33.0.0" }
|
|
pallet-transaction-payment = { version = "33.0.0", default-features = false }
|
|
pallet-transaction-payment-rpc = { version = "35.0.0" }
|
|
substrate-frame-rpc-system = { version = "33.0.0" }
|
|
frame-benchmarking-cli = { version = "37.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",
|
|
]
|