removed unnecessary imports + updated tokio import

This commit is contained in:
mfahampshire
2023-07-20 18:36:09 +02:00
parent 00d0e9cb2c
commit 5f8dc3815f
2 changed files with 1 additions and 15 deletions
Generated
-7
View File
@@ -5956,16 +5956,10 @@ name = "rust-cosmos-broadcaster"
version = "0.1.0"
dependencies = [
"anyhow",
"async-trait",
"bip39",
"bs58 0.5.0",
"clap 4.2.7",
"cosmrs",
"cosmwasm-std",
"nym-bin-common",
"nym-cli-commands",
"nym-crypto",
"nym-network-defaults",
"nym-sdk",
"nym-sphinx-addressing",
"nym-sphinx-anonymous-replies",
@@ -5973,7 +5967,6 @@ dependencies = [
"serde",
"serde_json",
"tokio",
"ts-rs",
]
[[package]]
+1 -8
View File
@@ -8,24 +8,17 @@ edition = "2021"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
nym-bin-common = { path = "../../common/bin-common"}
nym-sphinx-addressing = { path = "../../common/nymsphinx/addressing" }
nym-sdk = { path = "../../sdk/rust/nym-sdk" }
nym-crypto = { path = "../../common/crypto" }
nym-cli-commands = { path = "../../common/commands" }
nym-validator-client = { path = "../../common/client-libs/validator-client", features = ["nyxd-client"] }
nym-network-defaults = { path = "../../common/network-defaults" }
async-trait = { workspace = true, optional = true }
bip39 = { workspace = true, features = ["rand"] }
cosmrs = { git = "https://github.com/neacsu/cosmos-rust", branch = "neacsu/feegrant_support", features = ["rpc", "bip32", "cosmwasm"] }
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
ts-rs = "6.1.2"
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
bs58 = "0.5.0"
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
anyhow.workspace = true
nym-sphinx-anonymous-replies = { path = "../../common/nymsphinx/anonymous-replies" }
cosmwasm-std = { workspace = true, optional = true }
[[bin]]
name = "client"