[package] name = "nym-coconut" version = "0.5.0" authors = ["Jedrzej Stuczynski ", "Ania Piotrowska "] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bls12_381 = { git = "https://github.com/jstuczyn/bls12_381", branch ="gt-serialisation", default-features = false, features = ["pairings", "alloc", "experimental"] } itertools = "0.10" digest = "0.9" rand = "0.8" thiserror = { workspace = true } serde = { workspace = true } serde_derive = "1.0" bs58 = "0.4.0" sha2 = "0.9" nym-dkg = { path = "../dkg" } nym-pemstore = { path = "../pemstore" } [dependencies.ff] version = "0.11" default-features = false [dependencies.group] version = "0.11" default-features = false [dev-dependencies] criterion = { version="0.4", features=["html_reports"] } doc-comment = "0.3" rand_chacha = "0.3" [[bench]] name = "benchmarks" harness = false [features] default = [] [target.'cfg(target_env = "wasm32-unknown-unknown")'.dependencies] getrandom = { version="0.2", features=["js"] }