1[package]2name = "pallet-refungible"3version = "0.2.11"4license = "GPLv3"5edition = "2021"67[dependencies.codec]8default-features = false9features = ['derive']10package = 'parity-scale-codec'11version = '3.1.2'1213[dependencies]14frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }20evm-coder = { default-features = false, path = '../../crates/evm-coder' }21pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }22pallet-common = { default-features = false, path = '../common' }23pallet-structure = { default-features = false, path = '../structure' }24frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2526struct-versioning = { path = "../../crates/struct-versioning" }27up-data-structs = { default-features = false, path = '../../primitives/data-structs' }28ethereum = { version = "0.14.0", default-features = false }29scale-info = { version = "2.0.1", default-features = false, features = [30 "derive",31] }32derivative = { version = "2.2.0", features = ["use_core"] }3334[features]35default = ["std"]36std = [37 "ethereum/std",38 "evm-coder/std",39 'frame-benchmarking/std',40 "frame-support/std",41 "frame-system/std",42 "pallet-common/std",43 "pallet-evm/std",44 "pallet-evm-coder-substrate/std",45 "pallet-structure/std",46 "sp-runtime/std",47 "sp-std/std",48 "up-data-structs/std",49]50runtime-benchmarks = [51 'frame-benchmarking',52 'frame-support/runtime-benchmarks',53 'frame-system/runtime-benchmarks',54 'up-data-structs/runtime-benchmarks',55]56try-runtime = ["frame-support/try-runtime"]57stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]