1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-refungible"5version = "0.2.13"67[dependencies]89codec = { workspace = true, package = "parity-scale-codec" }1011scale-info = { workspace = true }1213evm-coder = { workspace = true }14frame-benchmarking = { workspace = true, optional = true }15frame-support = { workspace = true }16frame-system = { workspace = true }17pallet-common = { workspace = true }18pallet-evm = { workspace = true }19pallet-evm-coder-substrate = { workspace = true }20pallet-structure = { workspace = true }21sp-core = { workspace = true }22sp-runtime = { workspace = true }23sp-std = { workspace = true }2425up-data-structs = { workspace = true }2627[features]28default = ["std"]29runtime-benchmarks = [30 'frame-benchmarking',31 'frame-support/runtime-benchmarks',32 'frame-system/runtime-benchmarks',33 'up-data-structs/runtime-benchmarks',34]35std = [36 "evm-coder/std",37 "frame-support/std",38 "frame-system/std",39 "pallet-common/std",40 "pallet-evm-coder-substrate/std",41 "pallet-evm/std",42 "pallet-structure/std",43 "sp-runtime/std",44 "sp-std/std",45 "up-data-structs/std",46 'frame-benchmarking/std',47]48stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]49try-runtime = ["frame-support/try-runtime"]