mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 14:17:56 +00:00
495d24d730
Co-authored-by: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Co-authored-by: Bastian Köcher <info@kchr.de>
24 lines
705 B
TOML
24 lines
705 B
TOML
[package]
|
|
name = "pallet-example-frame-crate"
|
|
version = "0.0.1"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "MIT-0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "FRAME example pallet with umbrella crate"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
|
|
frame = { path = "../..", default-features = false, features = ["runtime", "experimental"] }
|
|
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "codec/std", "frame/std", "scale-info/std" ]
|