9ca3f69aa8
* Clients use env * Explorer api uses env * Mainnet and qa env files * Set CONFIGURED on the mainnet defaulting * Gateway uses env * Mixnode uses env * Wallet error simplification * Network requester takes only mainnet client address * Validator api uses env * Mixnet contract uses denom from instantiate * Vesting contract uses denom from instantiate * More contract test refactoring * Coconut bandwidth contract uses denom from instantiate * Bandwidth claim contract uses denom from instantiate and remove from Cargos * More remove from Cargos and one missed DEFAULT_NETWORK * Refactor some other missed places * Minor fixes * Test and clippy fixes * Update CHANGELOG
25 lines
864 B
TOML
25 lines
864 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"
|
|
url = "2.2"
|
|
|
|
# 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"]
|