Files
pezkuwi-sdk/bizinikiwi/pezframe/nft-fractionalization/Cargo.toml
T
pezkuwichain 479010094e fix(ci): resolve all quick-checks failures
- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
2026-01-04 17:22:12 +03:00

61 lines
1.5 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 pezpallet to convert non-fungible to fungible tokens."
readme = "README.md"
documentation.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { workspace = true }
pezframe = { workspace = true, features = ["runtime"] }
pezframe-system = { workspace = true }
pezframe-support = { workspace = true }
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",
"log/std",
"pezframe-support/std",
"pezframe-system/std",
"pezframe/std",
"pezpallet-assets/std",
"pezpallet-balances/std",
"pezpallet-nfts/std",
"scale-info/std",
]
runtime-benchmarks = [
"pezframe/runtime-benchmarks",
"pezpallet-assets/runtime-benchmarks",
"pezpallet-balances/runtime-benchmarks",
"pezpallet-nfts/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks"
]
try-runtime = [
"pezframe/try-runtime",
"pezpallet-assets/try-runtime",
"pezpallet-balances/try-runtime",
"pezpallet-nfts/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system/try-runtime"
]