git.delta.rocks / unique-network / refs/commits / 0ceea0af66a9

difftreelog

source

pallets/nonfungible/Cargo.toml1.2 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-nonfungible"5version = "0.1.14"67[dependencies]8evm-coder = { workspace = true }9frame-benchmarking = { workspace = true, optional = true }10frame-support = { workspace = true }11frame-system = { workspace = true }12pallet-common = { workspace = true }13pallet-evm = { workspace = true }14pallet-evm-coder-substrate = { workspace = true }15pallet-structure = { workspace = true }16parity-scale-codec = { workspace = true }17scale-info = { workspace = true }18sp-core = { workspace = true }19sp-runtime = { workspace = true }20sp-std = { workspace = true }21struct-versioning = { workspace = true }22up-data-structs = { workspace = true }2324[features]25default = ["std"]26runtime-benchmarks = [27	'frame-benchmarking',28	'frame-support/runtime-benchmarks',29	'frame-system/runtime-benchmarks',30	'up-data-structs/runtime-benchmarks',31]32std = [33	"evm-coder/std",34	"frame-support/std",35	"frame-system/std",36	"pallet-common/std",37	"pallet-evm-coder-substrate/std",38	"pallet-evm/std",39	"pallet-structure/std",40	"sp-runtime/std",41	"sp-std/std",42	"up-data-structs/std",43	'frame-benchmarking/std',44]45stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]46try-runtime = ["frame-support/try-runtime"]