mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
bdbe982970
* restructure dispatch macro related exports * moved Dispatchable to lib.rs * fix .gitignore final newline * ".git/.scripts/commands/fmt/fmt.sh" * fix rustdocs * wip --------- Co-authored-by: Liam Aharon <liam.aharon@hotmail.com> Co-authored-by: command-bot <> Co-authored-by: ordian <write@reusable.software>
23 lines
683 B
TOML
23 lines
683 B
TOML
[package]
|
|
name = "pallet-nfts-runtime-api"
|
|
version = "4.0.0-dev"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Runtime API for the FRAME NFTs pallet."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
|
pallet-nfts = { path = "..", default-features = false}
|
|
sp-api = { path = "../../../primitives/api", default-features = false}
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "codec/std", "pallet-nfts/std", "sp-api/std" ]
|