git.delta.rocks / unique-network / refs/commits / 5ef5e6b4aa6d

difftreelog

source

pallets/nonfungible/Cargo.toml1.3 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-nonfungible"5version = "0.1.14"67[dependencies]8# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.9codec = { workspace = true, package = "parity-scale-codec" }1011evm-coder = { workspace = true }12frame-benchmarking = { workspace = true, optional = true }13frame-support = { workspace = true }14frame-system = { workspace = true }15pallet-common = { workspace = true }16pallet-evm = { workspace = true }17pallet-evm-coder-substrate = { workspace = true }18pallet-structure = { workspace = true }19scale-info = { workspace = true }20sp-core = { workspace = true }21sp-runtime = { workspace = true }22sp-std = { workspace = true }23struct-versioning = { workspace = true }24up-data-structs = { workspace = true }2526[features]27default = ["std"]28runtime-benchmarks = [29	'frame-benchmarking',30	'frame-support/runtime-benchmarks',31	'frame-system/runtime-benchmarks',32	'up-data-structs/runtime-benchmarks',33]34std = [35	"evm-coder/std",36	"frame-support/std",37	"frame-system/std",38	"pallet-common/std",39	"pallet-evm-coder-substrate/std",40	"pallet-evm/std",41	"pallet-structure/std",42	"sp-runtime/std",43	"sp-std/std",44	"up-data-structs/std",45	'frame-benchmarking/std',46]47stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]48try-runtime = ["frame-support/try-runtime"]