1[package]2edition = "2021"3name = "pallet-structure"4version = "0.1.2"56[dependencies]7parity-scale-codec = { version = "3.2.2", default-features = false, features = ["derive"] }8scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }910frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }11frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13log = { version = "0.4.17", default-features = false }14pallet-common = { path = "../common", default-features = false }15pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }16sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17up-data-structs = { path = "../../primitives/data-structs", default-features = false }1819[features]20default = ["std"]21runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']22std = [23 "frame-benchmarking/std",24 "frame-support/std",25 "frame-system/std",26 "pallet-common/std",27 "pallet-evm/std",28 "parity-scale-codec/std",29 "scale-info/std",30 "sp-std/std",31 "up-data-structs/std",32]33try-runtime = ["frame-support/try-runtime"]