pallet-treasury 20.1.0-dev.5

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

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

[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
	"derive",
	"max-encoded-len",
] }
impl-trait-for-tuples = "0.2.2"
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", features = ["derive"], optional = true }
frame-benchmarking = { version = "=21.1.0-dev.5", default-features = false, optional = true, path = "../benchmarking" }
frame-support = { version = "=21.1.0-dev.5", default-features = false, path = "../support" }
frame-system = { version = "=21.1.0-dev.5", default-features = false, path = "../system" }
pallet-balances = { version = "=21.1.0-dev.5", default-features = false, path = "../balances" }
sp-runtime = { version = "=24.1.0-dev.5", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "=8.1.0-dev.5", default-features = false, path = "../../primitives/std" }

[dev-dependencies]
sp-core = { path = "../../primitives/core" }
sp-io = { path = "../../primitives/io" }
pallet-utility = { path = "../utility" }

[features]
default = ["std"]
std = [
	"frame-benchmarking?/std",
	"codec/std",
	"frame-support/std",
	"frame-system/std",
	"pallet-balances/std",
	"scale-info/std",
	"serde",
	"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"]