1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-fungible"5version = "0.1.9"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 = "../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" }22up-data-structs = { default-features = false, path = "../../primitives/data-structs" }2324[features]25default = ["std"]26runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']27std = [28 "evm-coder/std",29 "frame-support/std",30 "frame-system/std",31 "pallet-common/std",32 "pallet-evm-coder-substrate/std",33 "pallet-evm/std",34 "pallet-structure/std",35 "sp-runtime/std",36 "sp-std/std",37 "up-data-structs/std",38 'frame-benchmarking/std',39]40stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]41try-runtime = ["frame-support/try-runtime"]