mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-10 01:47:58 +00:00
3836376965
Step in https://github.com/paritytech/polkadot-sdk/issues/3155 Needed for https://github.com/paritytech/eng-automation/issues/6 This PR renames `frame` crate to `polkadot-sdk-frame` as `frame` is not available on crates.io --------- Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
60 lines
2.0 KiB
TOML
60 lines
2.0 KiB
TOML
[package]
|
|
name = "minimal-template-runtime"
|
|
description = "A solochain runtime template built with Substrate, part of Polkadot Sdk."
|
|
version = "0.0.0"
|
|
license = "MIT-0"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
parity-scale-codec = { version = "3.0.0", default-features = false }
|
|
scale-info = { version = "2.6.0", default-features = false }
|
|
|
|
# this is a frame-based runtime, thus importing `frame` with runtime feature enabled.
|
|
frame = { package = "polkadot-sdk-frame", path = "../../../substrate/frame", default-features = false, features = [
|
|
"experimental",
|
|
"runtime",
|
|
] }
|
|
|
|
# pallets that we want to use
|
|
pallet-balances = { path = "../../../substrate/frame/balances", default-features = false }
|
|
pallet-sudo = { path = "../../../substrate/frame/sudo", default-features = false }
|
|
pallet-timestamp = { path = "../../../substrate/frame/timestamp", default-features = false }
|
|
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment", default-features = false }
|
|
pallet-transaction-payment-rpc-runtime-api = { path = "../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false }
|
|
|
|
# genesis builder that allows us to interact with runtime genesis config
|
|
sp-genesis-builder = { path = "../../../substrate/primitives/genesis-builder", default-features = false }
|
|
|
|
# local pallet templates
|
|
pallet-minimal-template = { path = "../pallets/template", default-features = false }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../substrate/utils/wasm-builder", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"scale-info/std",
|
|
|
|
"frame/std",
|
|
|
|
"pallet-balances/std",
|
|
"pallet-sudo/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
|
|
"pallet-minimal-template/std",
|
|
|
|
"sp-genesis-builder/std",
|
|
"substrate-wasm-builder",
|
|
]
|