24b9b17e64
* Add nym- to socks5-prefixes crate * Update imports * rustfmt * Add nym-socks5 prefix to proxy-helpers crate * rustfmt * Add nym prefix to ordered-buffer crate * rustfmt * Add nym prefix to service-providers-common crate * rustfmt * Add nym prefix to dkg crate * Add nym prefix to credentials crate * rustfmt * fix build fail in tests
28 lines
1.1 KiB
TOML
28 lines
1.1 KiB
TOML
[package]
|
|
name = "credential"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bip39 = "1.0.1"
|
|
clap = { version = "4.0", features = ["cargo", "derive"] }
|
|
log = "0.4"
|
|
rand = "0.7.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
url = "2.2"
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "net", "signal", "macros"] } # async runtime
|
|
|
|
coconut-interface = { path = "../../common/coconut-interface" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
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" }
|
|
validator-client = { path = "../../common/client-libs/validator-client", features = ["nyxd-client"] }
|
|
|