24b9b17e64
* Add nym- to socks5-prefixes crate * Update imports * rustfmt * Add nym-socks5 prefix to proxy-helpers crate * rustfmt * Add nym prefix to ordered-buffer crate * rustfmt * Add nym prefix to service-providers-common crate * rustfmt * Add nym prefix to dkg crate * Add nym prefix to credentials crate * rustfmt * fix build fail in tests
22 lines
793 B
TOML
22 lines
793 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 = { version = "0.5", default-features = false, features = ["pairings", "alloc", "experimental"] }
|
|
cosmrs = { git = "https://github.com/neacsu/cosmos-rust", branch = "neacsu/feegrant_support" }
|
|
thiserror = "1.0"
|
|
|
|
# I guess temporarily until we get serde support in coconut up and running
|
|
coconut-interface = { path = "../coconut-interface" }
|
|
nym-crypto = { path = "../crypto", features = ["rand", "asymmetric", "symmetric", "hashing"] }
|
|
nym-api-requests = { path = "../../nym-api/nym-api-requests" }
|
|
validator-client = { path = "../client-libs/validator-client" }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.3"
|
|
|