git.delta.rocks / unique-network / refs/commits / 2657b807cead

difftreelog

source

pallets/common/Cargo.toml1.2 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-common"5version = "0.1.14"67[dependencies]8# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.9codec = { workspace = true, package = "parity-scale-codec" }1011scale-info = { workspace = true }1213bondrewd = { version = "0.1.14", features = ["derive"], default-features = false }14ethereum = { workspace = true }15evm-coder = { workspace = true }16frame-benchmarking = { workspace = true, optional = true }17frame-support = { workspace = true }18frame-system = { workspace = true }19pallet-evm = { workspace = true }20pallet-evm-coder-substrate = { workspace = true }21sp-core = { workspace = true }22sp-runtime = { workspace = true }23sp-std = { workspace = true }24up-data-structs = { workspace = true }25up-pov-estimate-rpc = { workspace = true }2627[features]28default = ["std"]29runtime-benchmarks = ["frame-benchmarking/runtime-benchmarks", "up-data-structs/runtime-benchmarks"]30std = [31	"frame-support/std",32	"frame-system/std",33	"pallet-evm/std",34	"sp-runtime/std",35	"sp-std/std",36	"up-data-structs/std",37	"up-pov-estimate-rpc/std",38	"evm-coder/std",39]40stubgen = ["evm-coder/stubgen", "up-data-structs/stubgen"]41tests = []42try-runtime = ["frame-support/try-runtime"]