1[package]2edition = "2021"3name = "pallet-structure"4version = "0.1.2"56[dependencies]7parity-scale-codec = { workspace = true }8scale-info = { workspace = true }910frame-benchmarking = { workspace = true, optional = true }11frame-support = { workspace = true }12frame-system = { workspace = true }13log = { workspace = true }14pallet-common = { workspace = true }15pallet-evm = { workspace = true }16sp-runtime = { workspace = true }17sp-std = { workspace = true }18up-data-structs = { workspace = true }1920[features]21default = ["std"]22runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']23std = [24 "frame-benchmarking/std",25 "frame-support/std",26 "frame-system/std",27 "pallet-common/std",28 "pallet-evm/std",29 "parity-scale-codec/std",30 "scale-info/std",31 "sp-runtime/std",32 "sp-std/std",33 "up-data-structs/std",34]35try-runtime = ["frame-support/try-runtime"]