mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-04-21 23:47:57 +00:00
cf2536b751
This synchronizes the template to the stable2503 branch. Co-authored-by: iulianbarbu <14218860+iulianbarbu@users.noreply.github.com>
29 lines
1017 B
TOML
29 lines
1017 B
TOML
[workspace.package]
|
|
license = "MIT-0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
homepage = "https://paritytech.github.io/polkadot-sdk/"
|
|
repository = "https://github.com/paritytech/polkadot-sdk-minimal-template.git"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
default-members = ["pallets/template", "runtime"]
|
|
members = [
|
|
"node",
|
|
"pallets/template",
|
|
"runtime",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
minimal-template-runtime = { path = "./runtime", default-features = false }
|
|
pallet-minimal-template = { path = "./pallets/template", default-features = false }
|
|
clap = { version = "4.5.13" }
|
|
docify = { version = "0.2.9" }
|
|
futures = { version = "0.3.31" }
|
|
futures-timer = { version = "3.0.2" }
|
|
jsonrpsee = { version = "0.24.3" }
|
|
polkadot-sdk = { version = "2503.0.1", default-features = false }
|
|
codec = { version = "3.7.4", default-features = false, package = "parity-scale-codec" }
|
|
scale-info = { version = "2.11.6", default-features = false }
|
|
serde_json = { version = "1.0.132", default-features = false }
|