516561dcf9
* separated signing and nyxd-client features * updated cosmrs to the most recent version * using tendermint_rpc directly for the Client trait * fixed rest of the codebase * removed nyxd-client feature * export more types * clippy that seems to have been skipped in makefile
26 lines
989 B
TOML
26 lines
989 B
TOML
[package]
|
|
name = "nym-credential-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0", features = ["cargo", "derive"] }
|
|
log = "0.4"
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "net", "signal", "macros"] } # async runtime
|
|
|
|
|
|
nym-bandwidth-controller = { path = "../../common/bandwidth-controller" }
|
|
nym-client-core = { path = "../../common/client-core" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
nym-credential-storage = { path = "../../common/credential-storage" }
|
|
nym-bin-common = { path = "../../common/bin-common"}
|
|
nym-network-defaults = { path = "../../common/network-defaults" }
|
|
nym-pemstore = { path = "../../common/pemstore" }
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client" }
|
|
|