1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-refungible"5version = "0.2.11"67[dependencies]8codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }9scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }1011evm-coder = { default-features = false, path = "../../crates/evm-coder" }12frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15pallet-common = { default-features = false, path = "../common" }16pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }17pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }18pallet-structure = { default-features = false, path = "../structure" }19sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2223up-data-structs = { default-features = false, path = "../../primitives/data-structs" }2425[features]26default = ["std"]27runtime-benchmarks = [28 'frame-benchmarking',29 'frame-support/runtime-benchmarks',30 'frame-system/runtime-benchmarks',31 'up-data-structs/runtime-benchmarks',32]33std = [34 "evm-coder/std",35 "frame-support/std",36 "frame-system/std",37 "pallet-common/std",38 "pallet-evm-coder-substrate/std",39 "pallet-evm/std",40 "pallet-structure/std",41 "sp-runtime/std",42 "sp-std/std",43 "up-data-structs/std",44 'frame-benchmarking/std',45]46stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]47try-runtime = ["frame-support/try-runtime"]