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]16parity-scale-codec = { workspace = true, features = ["max-encoded-len"] }1718enumflags2 = "0.7.8"19frame-benchmarking = { workspace = true, optional = true }20frame-support = { workspace = true }21frame-system = { workspace = true }22scale-info = { workspace = true }23sp-io = { workspace = true }24sp-runtime = { workspace = true }25sp-std = { workspace = true }2627[dev-dependencies]28pallet-balances = { features = ["insecure_zero_ed"], workspace = true }29sp-core = { workspace = true }3031[features]32default = ["std"]33runtime-benchmarks = [34 "frame-benchmarking/runtime-benchmarks",35 "frame-support/runtime-benchmarks",36 "frame-system/runtime-benchmarks",37 "sp-runtime/runtime-benchmarks",38]39std = [40 "frame-benchmarking?/std",41 "frame-support/std",42 "frame-system/std",43 "pallet-balances/std",44 "parity-scale-codec/std",45 "scale-info/std",46 "sp-io/std",47 "sp-runtime/std",48 "sp-std/std",49]50try-runtime = ["frame-support/try-runtime"]