93 lines
2.8 KiB
TOML
93 lines
2.8 KiB
TOML
[package]
|
|
name = "g6-solo-node"
|
|
description = "A FRAME-based Substrate G6 Solo Chain node."
|
|
publish = false
|
|
build = "build.rs"
|
|
version.workspace = true
|
|
homepage.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[[bin]]
|
|
name = "g6-solo-node"
|
|
|
|
[dependencies]
|
|
# Local Dependencies
|
|
g6-solo-runtime = { workspace = true }
|
|
network_constants = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
|
futures = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
sc-cli = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sc-executor = { workspace = true }
|
|
sc-network = { workspace = true }
|
|
sc-service = { workspace = true }
|
|
sc-telemetry = { workspace = true }
|
|
sc-transaction-pool = { workspace = true }
|
|
sc-transaction-pool-api = { workspace = true }
|
|
sc-offchain = { workspace = true }
|
|
sc-consensus-aura = { workspace = true }
|
|
sp-consensus-aura = { workspace = true }
|
|
sc-consensus = { workspace = true }
|
|
sc-consensus-grandpa = { workspace = true }
|
|
sp-consensus-grandpa = { workspace = true }
|
|
sc-client-api = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-timestamp = { workspace = true }
|
|
sp-inherents = { workspace = true }
|
|
sp-keyring = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
pallet-transaction-payment = { workspace = true, default-features = false }
|
|
|
|
# These dependencies are used for the node template's RPCs
|
|
jsonrpsee = { features = ["server"], workspace = true }
|
|
sp-api = { workspace = true }
|
|
sc-rpc-api = { workspace = true }
|
|
sp-blockchain = { workspace = true }
|
|
sp-block-builder = { workspace = true }
|
|
sc-basic-authorship = { workspace = true }
|
|
substrate-frame-rpc-system = { workspace = true }
|
|
pallet-skip-feeless-payment = { workspace = true }
|
|
pallet-transaction-payment-rpc = { workspace = true }
|
|
|
|
# These dependencies are used for runtime benchmarking
|
|
frame-benchmarking = { workspace = true }
|
|
frame-benchmarking-cli = { workspace = true }
|
|
frame-metadata-hash-extension = { workspace = true, default_features = false }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
# Dependencies that are only required if runtime benchmarking should be build.
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking-cli/runtime-benchmarks",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"g6-solo-runtime/runtime-benchmarks",
|
|
"sc-service/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",
|
|
"g6-solo-runtime/try-runtime",
|
|
"pallet-transaction-payment/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|