mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 02:17:58 +00:00
21f1811c66
This moves the macro related re-exports to `__private` to make it more obvious for downstream users that they are using an internal api. --------- Co-authored-by: command-bot <>
24 lines
771 B
TOML
24 lines
771 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 }
|
|
sp-std = { path = "../../../primitives/std", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "codec/std", "pallet-nfts/std", "sp-api/std", "sp-std/std" ]
|