bac0f24cf7
* split up coconut module a bit * internal tool for watching dkg state and updating group contract * debug dkg state * display past dealer data * improved EpochState Display impl * display contract errors + advance epoch state * check admin * panic handler * simplify app.rs * split action enum * added new tab with logger information * new dealing display * sort by index * [fixedup] wip: updating epoch issued credentials - OG 92ade10384a6d7b6c6c222d2e29d69d3b3446a4c * storing and signing partial blinded credentials * starting cleanup * fixed coconut tests + clippy * fixed nym-api tests * removed dkg-manager tool it was moved to a different branch * implemented remaining endpoints * unit tests + bug fixes * clippy * added persistent identity keys to nym-api theyre not yet announced - this will be in another PR * cargo fmt * clippy * fixed loading of old configs without storage paths set * added additional logs for blind-sign endpoint * fixed up licenses * lowercasing error variants * changed 'issued_credentials' to a post * added minimal client support * fixed the unit test
24 lines
812 B
TOML
24 lines
812 B
TOML
[package]
|
|
name = "nym-credentials"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bls12_381 = { workspace = true, default-features = false, features = ["pairings", "alloc", "experimental"] }
|
|
cosmrs = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
log = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
|
|
# I guess temporarily until we get serde support in coconut up and running
|
|
nym-coconut-interface = { path = "../coconut-interface" }
|
|
nym-crypto = { path = "../crypto", features = ["rand", "asymmetric"] }
|
|
nym-api-requests = { path = "../../nym-api/nym-api-requests" }
|
|
nym-validator-client = { path = "../client-libs/validator-client", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.3"
|
|
|