dc5c765ecb
* Add nym- prefix to mixnode-common * Add nym- prefix to mixnet-client * Add nym-client- prefix to websocket-requests * Makefile: add check target * Rename to nym-credential-client * rustfmt * update to nym-credential-client in github workflow
28 lines
1.1 KiB
TOML
28 lines
1.1 KiB
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]
|
|
bip39 = { workspace = true }
|
|
clap = { version = "4.0", features = ["cargo", "derive"] }
|
|
log = "0.4"
|
|
rand = "0.7.3"
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = "1.0"
|
|
url = "2.2"
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "net", "signal", "macros"] } # async runtime
|
|
|
|
nym-coconut-interface = { path = "../../common/coconut-interface" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
nym-credential-storage = { path = "../../common/credential-storage" }
|
|
nym-crypto = { path = "../../common/crypto", features = ["rand", "asymmetric", "symmetric", "aes", "hashing"] }
|
|
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", features = ["nyxd-client"] }
|
|
|