Files
pezkuwi-subxt/substrate/frame/bags-list/remote-tests/Cargo.toml
T
Bastian Köcher f6f58f95e1 inspect-key: Adds support for expect-public (#10430)
* Introduce `SecretUri`

* `inspect-key`: Adds support for `expect-public`

`expect-public` can be used to check that a given secret uri corresponds to the given public key.
This is mainly useful when the secret uri is protected by a password and a new derived account
should be generated. With `--expect-public` the user can pass the public key/account-id of the
"base" secret uri aka the one without any derivation to ensure the correct password was inserted.

* Fixes

* 🤦

* Apply suggestions from code review

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>

* Review feedback

* FMT

* Bump the versions

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
2021-12-11 08:13:18 +01:00

38 lines
1.3 KiB
TOML

[package]
name = "pallet-bags-list-remote-tests"
version = "4.0.0-dev"
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 bags list remote test"
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
# frame
pallet-staking = { path = "../../staking", version = "4.0.0-dev" }
pallet-bags-list = { path = "../../bags-list", version = "4.0.0-dev" }
frame-election-provider-support = { path = "../../election-provider-support", version = "4.0.0-dev" }
frame-system = { path = "../../system", version = "4.0.0-dev" }
frame-support = { path = "../../support", version = "4.0.0-dev" }
# core
sp-storage = { path = "../../../primitives/storage", version = "4.0.0" }
sp-core = { path = "../../../primitives/core", version = "4.1.0-dev" }
sp-tracing = { path = "../../../primitives/tracing", version = "4.0.0" }
sp-runtime = { path = "../../../primitives/runtime", version = "4.0.0-dev" }
sp-std = { path = "../../../primitives/std", version = "4.0.0" }
# utils
remote-externalities = { path = "../../../utils/frame/remote-externalities", version = "0.10.0-dev" }
# others
tokio = { version = "1", features = ["macros"] }
log = "0.4.14"
structopt = "0.3.25"
clap = "2.33.3"