git.delta.rocks / unique-network / refs/commits / bce2cc1e9ab8

difftreelog

source

pallets/structure/Cargo.toml930 Bsourcehistory
1[package]2edition = "2021"3name = "pallet-structure"4version = "0.1.2"56[dependencies]7# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.8codec = { workspace = true, package = "parity-scale-codec" }910scale-info = { workspace = true }1112frame-benchmarking = { workspace = true, optional = true }13frame-support = { workspace = true }14frame-system = { workspace = true }15log = { workspace = true }16pallet-common = { workspace = true }17pallet-evm = { workspace = true }18sp-std = { workspace = true }19up-data-structs = { workspace = true }2021[features]22default = ["std"]23runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']24std = [25	"frame-benchmarking/std",26	"frame-support/std",27	"frame-system/std",28	"pallet-common/std",29	"pallet-evm/std",30	"codec/std",31	"scale-info/std",32	"sp-std/std",33	"up-data-structs/std",34]35try-runtime = ["frame-support/try-runtime"]