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
24 lines
852 B
TOML
24 lines
852 B
TOML
[package]
|
|
name = "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 = { version = "0.5", default-features = false, features = ["pairings", "alloc", "experimental"] }
|
|
cosmrs = { git = "https://github.com/neacsu/cosmos-rust", branch = "neacsu/feegrant_support", optional = true }
|
|
thiserror = "1.0"
|
|
|
|
# I guess temporarily until we get serde support in coconut up and running
|
|
coconut-interface = { path = "../coconut-interface" }
|
|
crypto = { path = "../crypto", features = ["rand", "asymmetric", "symmetric", "hashing"] }
|
|
validator-api-requests = { path = "../../validator-api/validator-api-requests" }
|
|
validator-client = { path = "../client-libs/validator-client" }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.3"
|
|
|
|
[features]
|
|
coconut = ["cosmrs"]
|