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
47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
[package]
|
|
name = "nym-mixnode-common"
|
|
version = "0.1.0"
|
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytes = "1.0"
|
|
futures = { workspace = true }
|
|
humantime-serde = "1.0"
|
|
log = { workspace = true }
|
|
rand = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.24.1", features = [
|
|
"time",
|
|
"macros",
|
|
"rt",
|
|
"net",
|
|
"io-util",
|
|
] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
url = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
## tracing
|
|
tracing = { version = "0.1.37", optional = true }
|
|
|
|
nym-crypto = { path = "../crypto" }
|
|
nym-network-defaults = { path = "../network-defaults" }
|
|
nym-sphinx-acknowledgements = { path = "../nymsphinx/acknowledgements" }
|
|
nym-sphinx-addressing = { path = "../nymsphinx/addressing" }
|
|
nym-sphinx-forwarding = { path = "../nymsphinx/forwarding" }
|
|
nym-sphinx-framing = { path = "../nymsphinx/framing" }
|
|
nym-sphinx-params = { path = "../nymsphinx/params" }
|
|
nym-sphinx-types = { path = "../nymsphinx/types" }
|
|
nym-task = { path = "../task" }
|
|
nym-validator-client = { path = "../client-libs/validator-client" }
|
|
nym-bin-common = { path = "../bin-common" }
|
|
|
|
cfg-if = "1.0.0"
|
|
cpu-cycles = { path = "../../cpu-cycles", optional = true }
|
|
|
|
[features]
|
|
cpucycles = ["cpu-cycles", "tracing"]
|