1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-common"5version = "0.1.12"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"] }1011ethereum = { version = "0.14.0", default-features = false }12evm-coder = { default-features = false, path = "../../crates/evm-coder" }13frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }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" }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" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21up-data-structs = { default-features = false, path = "../../primitives/data-structs" }22up-pov-estimate-rpc = { default-features = false, path = "../../primitives/pov-estimate-rpc" }2324[features]25default = ["std"]26runtime-benchmarks = ["frame-benchmarking/runtime-benchmarks", "up-data-structs/runtime-benchmarks"]27std = [28 "frame-support/std",29 "frame-system/std",30 "pallet-evm/std",31 "sp-runtime/std",32 "sp-std/std",33 "up-data-structs/std",34 "up-pov-estimate-rpc/std",35]36stubgen = ["evm-coder/stubgen"]37try-runtime = ["frame-support/try-runtime"]