1[package]2name = "pallet-structure"3version = "0.1.0"4edition = "2021"56[dependencies]7frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }8frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }9sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.17' }10pallet-common = { path = "../common", default-features = false }11parity-scale-codec = { version = "2.0.0", default-features = false, features = [12 "derive",13] }14scale-info = { version = "1.0.0", default-features = false, features = [15 "derive",16] }17up-data-structs = { path = "../../primitives/data-structs", default-features = false }1819[features]20default = ["std"]21std = [22 "frame-support/std",23 "frame-system/std",24 "sp-std/std",25 "pallet-common/std",26 "scale-info/std",27 "parity-scale-codec/std",28 "up-data-structs/std",29]