[package] name = "Cupcake" version = "0.2.1" authors = ["Hao Chen "] license = "MIT" edition = "2018" repository = "https://github.com/facebookresearch/Cupcake/" readme = "README.md" keywords = ["cryptography", "crypto", "homomorphic", "encryption"] description = "An implementation of a lattice-based additive homomorphic encryption scheme" [dependencies] rand = "0.5.5" modinverse = "0.1.1" [dev-dependencies] bencher = "0.1.5" [lib] name = "cupcake" path = "src/lib.rs" [features] bench = [] [[example]] name = "basic" [[example]] name = "serialization" [[bench]] name = "scheme" harness = false [[bench]] name = "polyops" harness = false required-features = ["bench"] [[bench]] name = "butterfly" harness = false [[bench]] name = "integerops" harness = false