[package] name = "pht-crypto" version = "0.1.0-alpha" edition = "2018" resolver = "2" authors = ["Robin Hundt "] description = "Threshold homomorphic encryption, currently threshold paillier" repository = "https://github.com/robinhundt/threshold-crypto" license = "LGPL-3.0+" categories = ["cryptography"] keywords = ["paillier", "threshold-paillier", "homomorphic"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.43" rug = { version = "1.13.0" , default-features = false, features = ["integer", "rand", "serde"]} glass_pumpkin = "1.1.0" rand = "0.8.4" serde = { version = "1.0.129" , features = ["derive"]} [profile.dev.package.glass_pumpkin] opt-level = 3