remove paillier from core crate

This commit is contained in:
sinuio
2022-03-05 21:23:36 -08:00
parent 0318e69c23
commit 55fc68e9b9
2 changed files with 1 additions and 4 deletions

View File

@@ -6,10 +6,9 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["garble","ot","paillier","proto"]
default = ["garble","ot","proto"]
garble = ["regex"]
ot = []
paillier = []
proto = ["prost","prost-build"]
[dependencies]

View File

@@ -7,8 +7,6 @@ pub mod circuit;
pub mod garble;
#[cfg(feature = "ot")]
pub mod ot;
#[cfg(feature = "paillier")]
pub mod paillier;
#[cfg(feature = "proto")]
pub mod proto;
pub mod utils;