[package] name = "nym-credentials" version = "0.1.0" edition = "2021" license.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bls12_381 = { workspace = true, default-features = false, features = ["pairings", "alloc", "experimental"] } bincode = "1.3.3" cosmrs = { workspace = true } thiserror = { workspace = true } log = { workspace = true } time = { workspace = true, features = ["serde"] } serde = { workspace = true, features = ["derive"] } zeroize = { workspace = true } # I guess temporarily until we get serde support in coconut up and running nym-credentials-interface = { path = "../credentials-interface" } chrono = "0.4.38" nym-crypto = { path = "../crypto", features = ["rand", "asymmetric", "symmetric", "hashing"] } nym-api-requests = { path = "../../nym-api/nym-api-requests" } nym-validator-client = { path = "../client-libs/validator-client", default-features = false } nym-ecash-contract-common = { path = "../cosmwasm-smart-contracts/ecash-contract" } [dev-dependencies] rand = "0.7.3"