pallet-proxy 14.0.0

FRAME proxying pallet
Documentation
[package]
name = "pallet-proxy"
version = "14.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME proxying pallet"
readme = "README.md"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["max-encoded-len"] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
frame-benchmarking = { version = "14.0.0", default-features = false, optional = true}
frame-support = { version = "14.0.0", default-features = false}
frame-system = { version = "14.0.0", default-features = false}
sp-io = { version = "15.0.0", default-features = false}
sp-runtime = { version = "16.0.0", default-features = false}
sp-std = { version = "6.0.0", default-features = false}

[dev-dependencies]
pallet-balances = { version = "14.0.0" }
pallet-utility = { path = "../utility" }
sp-core = { version = "14.0.0" }

[features]
default = ["std"]
std = [
	"frame-benchmarking?/std",
	"codec/std",
	"frame-support/std",
	"frame-system/std",
	"scale-info/std",
	"sp-io/std",
	"sp-runtime/std",
	"sp-std/std",
]
runtime-benchmarks = [
	"frame-benchmarking/runtime-benchmarks",
	"frame-support/runtime-benchmarks",
	"frame-system/runtime-benchmarks",
]
try-runtime = ["frame-support/try-runtime"]