25 lines
771 B
TOML
25 lines
771 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 = { version = "0.7.0", 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"] }
|
|
network-defaults = { path = "../network-defaults" }
|
|
validator-client = { path = "../client-libs/validator-client" }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.3"
|
|
|
|
[features]
|
|
coconut = ["cosmrs"]
|