4587d5da26
* network-defaults: update cargo metadata * Add nym- prefix to network-defaults crate * Some manual updating * rustfmt
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" }
|
|
config = { path = "../../common/config" }
|
|
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"] }
|
|
|