1[package]2name = "pallet-nonfungible"3version = "0.1.0"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.git', branch = 'polkadot-v0.9.18' }15frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }16sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }17sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }18sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }19pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.18-2" }20pallet-common = { default-features = false, path = '../common' }21up-data-structs = { default-features = false, path = '../../primitives/data-structs' }22evm-coder = { default-features = false, path = '../../crates/evm-coder' }23pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }24ethereum = { version = "0.12.0", default-features = false }25frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }26scale-info = { version = "2.0.1", default-features = false, features = [27 "derive",28] }29frame-common = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "feature/300" }3031[features]32default = ["std"]33std = [34 "frame-support/std",35 "frame-system/std",36 "sp-runtime/std",37 "sp-std/std",38 "up-data-structs/std",39 "pallet-common/std",40 "evm-coder/std",41 "ethereum/std",42 "pallet-evm-coder-substrate/std",43 'frame-benchmarking/std',44 "pallet-evm/std"45]46runtime-benchmarks = [47 'frame-benchmarking',48 'frame-support/runtime-benchmarks',49 'frame-system/runtime-benchmarks',50]