[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 = { workspace = true } cosmrs = { workspace = true } thiserror = { workspace = true } log = { workspace = true } time = { workspace = true, features = ["serde"] } serde = { workspace = true, features = ["derive"] } zeroize = { workspace = true } nym-ecash-time = { path = "../ecash-time", features = ["expiration"] } # I guess temporarily until we get serde support in coconut up and running nym-credentials-interface = { path = "../credentials-interface" } nym-crypto = { path = "../crypto" } 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" } nym-network-defaults = { path = "../network-defaults" } nym-serde-helpers = { path = "../serde-helpers", features = ["date"] } [dev-dependencies] rand = { workspace = true }