30 lines
1.0 KiB
TOML
30 lines
1.0 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]
|
|
async-trait = "0.1.52"
|
|
bip39 = "1.0.1"
|
|
cfg-if = "0.1"
|
|
clap = { version = "3.0.10", features = ["cargo", "derive"] }
|
|
pickledb = "0.4.1"
|
|
rand = "0.7.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
url = "2.2"
|
|
tokio = { version = "1.19.1", features = ["rt-multi-thread", "net", "signal", "macros"] } # async runtime
|
|
|
|
coconut-interface = { path = "../../common/coconut-interface" }
|
|
credentials = { path = "../../common/credentials" }
|
|
credential-storage = { path = "../../common/credential-storage" }
|
|
crypto = { path = "../../common/crypto", features = ["rand", "asymmetric", "symmetric", "aes", "hashing"] }
|
|
network-defaults = { path = "../../common/network-defaults" }
|
|
pemstore = { path = "../../common/pemstore" }
|
|
validator-client = { path = "../../common/client-libs/validator-client", features = ["nymd-client"] }
|
|
|
|
[features]
|
|
coconut = ["credentials/coconut"]
|