Files
pezkuwi-sdk/bizinikiwi/pezframe/nft-fractionalization/Cargo.toml
T

53 lines
1.3 KiB
TOML

[package]
name = "pezpallet-nft-fractionalization"
version = "10.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "FRAME pallet to convert non-fungible to fungible tokens."
readme = "README.md"
documentation = "https://docs.rs/pezpallet-nft-fractionalization"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { workspace = true }
frame = { workspace = true, features = ["runtime"] }
log = { workspace = true }
pezpallet-assets = { workspace = true }
pezpallet-nfts = { workspace = true }
scale-info = { features = ["derive"], workspace = true }
[dev-dependencies]
pezpallet-balances = { workspace = true, default-features = true }
[features]
default = ["std"]
std = [
"codec/std",
"frame/std",
"log/std",
"pezpallet-assets/std",
"pezpallet-balances/std",
"pezpallet-nfts/std",
"scale-info/std",
]
runtime-benchmarks = [
"frame/runtime-benchmarks",
"pezpallet-assets/runtime-benchmarks",
"pezpallet-balances/runtime-benchmarks",
"pezpallet-nfts/runtime-benchmarks",
]
try-runtime = [
"frame/try-runtime",
"pezpallet-assets/try-runtime",
"pezpallet-balances/try-runtime",
"pezpallet-nfts/try-runtime",
]