git.delta.rocks / unique-network / refs/commits / 9505eb68d4e4

difftreelog

source

pallets/structure/Cargo.toml1.4 KiBsourcehistory
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.36" }8frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }9frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }10sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }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.36" }20log = { version = "0.4.17", default-features = false }2122[features]23default = ["std"]24std = ["frame-support/std", "frame-system/std", "frame-benchmarking/std", "sp-std/std", "pallet-common/std", "scale-info/std", "parity-scale-codec/std", "up-data-structs/std", "pallet-evm/std"]25runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']26try-runtime = ["frame-support/try-runtime"]