mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
7afff714e4
* allow spinning up dev node in background without binary * improve comments * restore rust-toolchain * remove rust-toolchain * tweak start_node_without_binary api * Update test-utils/cli/src/lib.rs Co-authored-by: Alexandru Vasile <60601340+lexnv@users.noreply.github.com> * address commends * use &str * update example * update comment * update docs * Revert "update docs" This reverts commit e18677f081247dd9672f64ea34d2c651daf401c2. * use node-cli instead of node-template * fix feature * fix feature * fix features --------- Co-authored-by: Alexandru Vasile <60601340+lexnv@users.noreply.github.com>
30 lines
869 B
TOML
30 lines
869 B
TOML
[package]
|
|
name = "substrate-cli-test-utils"
|
|
description = "CLI testing utilities"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
substrate-rpc-client = { path = "../../utils/frame/rpc/client" }
|
|
sp-rpc = { version = "6.0.0", path = "../../primitives/rpc" }
|
|
assert_cmd = "2.0.10"
|
|
nix = "0.26.2"
|
|
regex = "1.7.3"
|
|
tokio = { version = "1.22.0", features = ["full"] }
|
|
node-primitives = { path = "../../bin/node/primitives" }
|
|
node-cli = { path = "../../bin/node/cli" }
|
|
sc-cli = { path = "../../client/cli" }
|
|
sc-service = { path = "../../client/service" }
|
|
futures = "0.3.28"
|
|
|
|
[features]
|
|
try-runtime = ["node-cli/try-runtime"]
|