git.delta.rocks / unique-network / refs/commits / 5ec8b824c3ad

difftreelog

source

pallets/identity/Cargo.toml1.4 KiBsourcehistory
1[package]2authors = ["Parity Technologies <admin@parity.io>", "Unique Network <support@uniquenetwork.io>"]3description = "FRAME identity management pallet"4edition = "2021"5homepage = "https://substrate.io"6license = "Apache-2.0"7name = "pallet-identity"8readme = "README.md"9repository = "https://github.com/paritytech/substrate/"10version = "4.0.0-dev"1112[package.metadata.docs.rs]13targets = ["x86_64-unknown-linux-gnu"]1415[dependencies]16# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.17codec = { workspace = true, package = "parity-scale-codec", features = ["max-encoded-len"] }1819enumflags2 = "0.7.4"20frame-benchmarking = { workspace = true, optional = true }21frame-support = { workspace = true }22frame-system = { workspace = true }23scale-info = { workspace = true }24sp-io = { workspace = true }25sp-runtime = { workspace = true }26sp-std = { workspace = true }2728[dev-dependencies]29pallet-balances = { features = ["insecure_zero_ed"], workspace = true }30sp-core = { workspace = true }3132[features]33default = ["std"]34runtime-benchmarks = [35	"frame-benchmarking/runtime-benchmarks",36	"frame-support/runtime-benchmarks",37	"frame-system/runtime-benchmarks",38	"sp-runtime/runtime-benchmarks",39]40std = [41	"codec/std",42	"frame-benchmarking?/std",43	"frame-support/std",44	"frame-system/std",45	"scale-info/std",46	"sp-io/std",47	"sp-runtime/std",48	"sp-std/std",49	"pallet-balances/std",50]51try-runtime = ["frame-support/try-runtime"]