0fa1961a04
* Initial version * Add open_proxy request * Start adding cli commands * use commands * Common response type * json output * Tidy * Remove the All case * Remove empty file * Remove todo * Add ping command * Ping 4 times by default * Logic for controlling number of loops * Some print tweaks
19 lines
727 B
TOML
19 lines
727 B
TOML
[package]
|
|
name = "nym-nr-query"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68"
|
|
clap = {version = "4.0", features = ["cargo", "derive"]}
|
|
log = { workspace = true }
|
|
nym-bin-common = { path = "../../common/bin-common", features = ["output_format"] }
|
|
nym-network-defaults = { path = "../../common/network-defaults" }
|
|
nym-sdk = { path = "../../sdk/rust/nym-sdk" }
|
|
nym-service-providers-common = { path = "../../service-providers/common" }
|
|
nym-socks5-requests = { path = "../../common/socks5/requests" }
|
|
serde = { workspace = true }
|
|
tokio = { workspace = true, features = [ "net", "rt-multi-thread", "macros" ] }
|