From 05f7997eec385c52e3b02b8e12f246835e01c22a Mon Sep 17 00:00:00 2001 From: Joey Kraut Date: Fri, 11 Aug 2023 11:32:05 -0700 Subject: [PATCH] inner_product_proof: Publish `InnerProductProof` for mocking across stack --- Cargo.toml | 5 ----- src/lib.rs | 2 -- 2 files changed, 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0bac31cf..ef7f5661 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,5 @@ [package] name = "mpc-bulletproof" -# Before doing a release: -# - update version field -# - update html_root_url -# - ensure yoloproofs was disabled in an atomic (revertable) commit -# - update CHANGELOG version = "0.1.0" authors = [ "Joey Kraut ", diff --git a/src/lib.rs b/src/lib.rs index 16d07408..f6ec0f42 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,9 +27,7 @@ mod notes { mod errors; mod generators; mod inner_product_proof; -#[cfg(feature = "integration_test")] pub use inner_product_proof::*; -// mod range_proof; pub mod transcript; pub use crate::errors::ProofError;