1[package]2name = "pallet-fungible"3version = "0.1.0"4edition = "2021"56[dependencies.codec]7default-features = false8features = ['derive']9package = 'parity-scale-codec'10version = '2.0.0'1112[dependencies]13frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }14frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }15sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }16sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }17sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }18pallet-common = { default-features = false, path = '../common' }19up-data-structs = { default-features = false, path = '../../primitives/data-structs' }20evm-coder = { default-features = false, path = '../../crates/evm-coder' }21pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }22ethereum = { version = "0.11.1", default-features = false }23frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }24scale-info = { version = "1.0.0", default-features = false, features = [25 "derive",26] }2728[features]29default = ["std"]30std = [31 "frame-support/std",32 "frame-system/std",33 "sp-runtime/std",34 "sp-std/std",35 "up-data-structs/std",36 "pallet-common/std",37 "evm-coder/std",38 "ethereum/std",39 "pallet-evm-coder-substrate/std",40 'frame-benchmarking/std',41]42runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']