git.delta.rocks / unique-network / refs/commits / fa01f9a87ad6

difftreelog

source

pallets/identity/Cargo.toml2.1 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]16codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [17	"derive",18	"max-encoded-len",19] }20enumflags2 = "0.7.4"21frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22frame-support = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }23frame-system = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }25sp-io = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }26sp-runtime = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }27sp-std = { version = "5.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2829[dev-dependencies]30pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }31sp-core = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3233[features]34default = ["std"]35runtime-benchmarks = [36	"frame-benchmarking/runtime-benchmarks",37	"frame-support/runtime-benchmarks",38	"frame-system/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]50try-runtime = ["frame-support/try-runtime"]