git.delta.rocks / unique-network / refs/commits / 3c77c1e2ea04

difftreelog

source

pallets/identity/Cargo.toml2.1 KiBsourcehistory
1[package]2name = "pallet-identity"3version = "4.0.0-dev"4authors = ["Parity Technologies <admin@parity.io>", "Unique Network <support@uniquenetwork.io>"]5edition = "2021"6license = "Apache-2.0"7homepage = "https://substrate.io"8repository = "https://github.com/paritytech/substrate/"9description = "FRAME identity management pallet"10readme = "README.md"1112[package.metadata.docs.rs]13targets = ["x86_64-unknown-linux-gnu"]1415[dependencies]16codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }17enumflags2 = { version = "0.7.4" }18scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }19frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20frame-support = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21frame-system = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22sp-io = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }23sp-runtime = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24sp-std = { version = "5.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2526[dev-dependencies]27pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }28sp-core = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2930[features]31default = ["std"]32std = [33	"codec/std",34	"frame-benchmarking?/std",35	"frame-support/std",36	"frame-system/std",37	"scale-info/std",38	"sp-io/std",39	"sp-runtime/std",40	"sp-std/std",41]42runtime-benchmarks = [43	"frame-benchmarking/runtime-benchmarks",44	"frame-support/runtime-benchmarks",45	"frame-system/runtime-benchmarks",46]47try-runtime = ["frame-support/try-runtime"]