mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 01:07:57 +00:00
3aa4bfacfc
* Asyncify sign_with * Asyncify generate/get keys * Complete BareCryptoStore asyncification * Cleanup * Rebase * Add Proxy * Inject keystore proxy into extensions * Implement some methods * Await on send * Cleanup * Send result over the oneshot channel sender * Process one future at a time * Fix cargo stuff * Asyncify sr25519_vrf_sign * Cherry-pick and fix changes * Introduce SyncCryptoStore * SQUASH ME WITH THE first commit * Implement into SyncCryptoStore * Implement BareCryptoStore for KeystoreProxyAdapter * authority-discovery * AURA * BABE * finality-grandpa * offchain-workers * benchmarking-cli * sp_io * test-utils * application-crypto * Extensions and RPC * Client Service * bin * Update cargo.lock * Implement BareCryptoStore on proxy directly * Simplify proxy setup * Fix authority-discover * Pass async keystore to authority-discovery * Fix tests * Use async keystore in authority-discovery * Rename BareCryptoStore to CryptoStore * WIP * Remote mutable borrow in CryptoStore trait * Implement Keystore with backends * Remove Proxy implementation * Fix service builder and keystore user-crates * Fix tests * Rework authority-discovery after refactoring * futures::select! * Fix multiple mut borrows in authority-discovery * Merge fixes * Require sync * Restore Cargo.lock * PR feedback - round 1 * Remove Keystore and use LocalKeystore directly Also renamed KeystoreParams to KeystoreContainer * Join * Remove sync requirement * Fix keystore tests * Fix tests * client/authority-discovery: Remove event stream dynamic dispatching With authority-discovery moving from a poll based future to an `async` future Rust has difficulties propagating the `Sync` trade through the generated state machine. Instead of using dynamic dispatching, use a trait parameter to specify the DHT event stream. * Make it compile * Fix submit_transaction * Fix block_on issue * Use await in async context * Fix manual seal keystore * Fix authoring_blocks test * fix aura authoring_blocks * Try to fix tests for auth-discovery * client/authority-discovery: Fix lookup_throttling test * client/authority-discovery: Fix triggers_dht_get_query test * Fix epoch_authorship_works * client/authority-discovery: Remove timing assumption in unit test * client/authority-discovery: Revert changes to termination test * PR feedback * Remove deadcode and mark test code * Fix test_sync * Use the correct keyring type * Return when from_service stream is closed * Convert SyncCryptoStore to a trait * Fix line width * Fix line width - take 2 * Remove unused import * Fix keystore instantiation * PR feedback * Remove KeystoreContainer * Revert "Remove KeystoreContainer" This reverts commit ea4a37c7d74f9772b93d974e05e4498af6192730. * Take a ref of keystore * Move keystore to dev-dependencies * Address some PR feedback * Missed one * Pass keystore reference - take 2 * client/finality-grandpa: Use `Arc<dyn CryptoStore>` instead of SyncXXX Instead of using `SyncCryptoStorePtr` within `client/finality-grandpa`, which is a type alias for `Arc<dyn SyncCryptoStore>`, use `Arc<dyn CryptoStore>`. Benefits are: 1. No additional mental overhead of a `SyncCryptoStorePtr`. 2. Ability for new code to use the asynchronous methods of `CryptoStore` instead of the synchronous `SyncCryptoStore` methods within `client/finality-granpa` without the need for larger refactorings. Note: This commit uses `Arc<dyn CryptoStore>` instead of `CryptoStorePtr`, as I find the type signature more descriptive. This is subjective and in no way required. * Remove SyncCryptoStorePtr * Remove KeystoreContainer & SyncCryptoStorePtr * PR feedback * *: Use CryptoStorePtr whereever possible * *: Define SyncCryptoStore as a pure extension trait of CryptoStore * Follow up to SyncCryptoStore extension trait * Adjust docs for SyncCryptoStore as Ben suggested * Cleanup unnecessary requirements * sp-keystore * Use async_std::task::block_on in keystore * Fix block_on std requirement * Update primitives/keystore/src/lib.rs Co-authored-by: Max Inden <mail@max-inden.de> * Fix wasm build * Remove unused var * Fix wasm compilation - take 2 * Revert async-std in keystore * Fix indent * Fix version and copyright * Cleanup feature = "std" * Auth Discovery: Ignore if from_service is cloed * Max's suggestion * Revert async-std usage for block_on * Address PR feedback * Fix example offchain worker build * Address PR feedback * Update Cargo.lock * Move unused methods to test helper functions * Restore accidentally deleted cargo.lock files * Fix unused imports Co-authored-by: Max Inden <mail@max-inden.de> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
73 lines
2.6 KiB
TOML
73 lines
2.6 KiB
TOML
[package]
|
|
name = "sc-cli"
|
|
version = "0.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate CLI interface."
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
derive_more = "0.99.2"
|
|
log = "0.4.8"
|
|
atty = "0.2.13"
|
|
regex = "1.3.4"
|
|
time = "0.1.42"
|
|
ansi_term = "0.12.1"
|
|
lazy_static = "1.4.0"
|
|
tokio = { version = "0.2.21", features = [ "signal", "rt-core", "rt-threaded", "blocking" ] }
|
|
futures = "0.3.4"
|
|
fdlimit = "0.2.1"
|
|
libp2p = "0.28.1"
|
|
parity-scale-codec = "1.3.0"
|
|
hex = "0.4.2"
|
|
rand = "0.7.3"
|
|
bip39 = "0.6.0-beta.1"
|
|
serde_json = "1.0.41"
|
|
sc-keystore = { version = "2.0.0", path = "../keystore" }
|
|
sc-informant = { version = "0.8.0", path = "../informant" }
|
|
sp-panic-handler = { version = "2.0.0", path = "../../primitives/panic-handler" }
|
|
sc-client-api = { version = "2.0.0", path = "../api" }
|
|
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
|
sc-network = { version = "0.8.0", path = "../network" }
|
|
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
|
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
|
sp-version = { version = "2.0.0", path = "../../primitives/version" }
|
|
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
|
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
|
|
sc-service = { version = "0.8.0", default-features = false, path = "../service" }
|
|
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
|
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
|
|
substrate-prometheus-endpoint = { path = "../../utils/prometheus" , version = "0.8.0"}
|
|
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
|
names = "0.11.0"
|
|
structopt = "0.3.8"
|
|
sc-tracing = { version = "2.0.0", path = "../tracing" }
|
|
chrono = "0.4.10"
|
|
parity-util-mem = { version = "0.7.0", default-features = false, features = ["primitive-types"] }
|
|
serde = "1.0.111"
|
|
tracing = "0.1.10"
|
|
tracing-log = "0.1.1"
|
|
tracing-subscriber = "0.2.10"
|
|
|
|
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
|
rpassword = "4.0.1"
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
|
nix = "0.17.0"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|
|
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
|
|
sp-application-crypto = { version = "2.0.0-alpha.2", default-features = false, path = "../../primitives/application-crypto" }
|
|
|
|
[features]
|
|
wasmtime = [
|
|
"sc-service/wasmtime",
|
|
]
|