mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-04-22 07:57:56 +00:00
35 lines
984 B
TOML
35 lines
984 B
TOML
[package]
|
|
name = "minimal-template-node"
|
|
description = "A minimal Substrate-based Substrate node, ready for hacking."
|
|
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]
|
|
docify = { workspace = true }
|
|
clap = { features = ["derive"], workspace = true }
|
|
futures = { features = ["thread-pool"], workspace = true }
|
|
futures-timer = { workspace = true }
|
|
jsonrpsee = { features = ["server"], workspace = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
polkadot-sdk = { workspace = true, features = ["experimental", "node"] }
|
|
minimal-template-runtime.workspace = true
|
|
|
|
[build-dependencies]
|
|
polkadot-sdk = { workspace = true, features = ["substrate-build-script-utils"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"minimal-template-runtime/std",
|
|
"polkadot-sdk/std",
|
|
]
|