mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57: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>
34 lines
819 B
TOML
34 lines
819 B
TOML
[package]
|
|
name = "pallet-minimal-template"
|
|
description = "A minimal pallet built with FRAME, 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
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", features = [
|
|
"derive",
|
|
], default-features = false }
|
|
scale-info = { version = "2.11.1", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
frame = { package = "polkadot-sdk-frame", path = "../../../../substrate/frame", default-features = false, features = [
|
|
"experimental",
|
|
"runtime",
|
|
] }
|
|
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["codec/std", "frame/std", "scale-info/std"]
|