2db1bc8efa
* Save to disk coconut keypair * Check verification keys of the other signers * Post verification key to chain * Add multisig propose/vote for vks * Execute the proposal * Parse announce address argument * Gateway uses chain data * Network requester uses chain data * Native&socks5 clients use chain data * Credential client signature uses chain data * Remove redundant api endpoints * Undo debugging logging * Fix some tests * Fix clippy * Fix wasm client and contract test * More contract clippy * Update CHANGELOG * Use a bigger expiry period then the testing one
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[package]
|
|
name = "nymcoconut"
|
|
version = "0.5.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>", "Ania Piotrowska <ania@nymtech.net>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bls12_381 = { git = "https://github.com/jstuczyn/bls12_381", branch ="gt-serialisation", default-features = false, features = ["pairings", "alloc", "experimental"] }
|
|
itertools = "0.10"
|
|
digest = "0.9"
|
|
rand = "0.8"
|
|
thiserror = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
bs58 = "0.4.0"
|
|
sha2 = "0.9"
|
|
|
|
dkg = { path = "../crypto/dkg" }
|
|
pemstore = { path = "../pemstore" }
|
|
|
|
[dependencies.ff]
|
|
version = "0.11"
|
|
default-features = false
|
|
|
|
[dependencies.group]
|
|
version = "0.11"
|
|
default-features = false
|
|
|
|
[dev-dependencies]
|
|
criterion = { version="0.3", features=["html_reports"] }
|
|
doc-comment = "0.3"
|
|
rand_chacha = "0.3"
|
|
|
|
[dev-dependencies.bincode]
|
|
version = "1"
|
|
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[target.'cfg(target_env = "wasm32-unknown-unknown")'.dependencies]
|
|
getrandom = { version="0.2", features=["js"] }
|