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