Skip to content

Commit

Permalink
Fixed build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cberkhoff committed Apr 1, 2024
1 parent fc8a24c commit 4a72886
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion ipa-core/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ pub mod playbook;
#[cfg(feature = "web-app")]
mod test_setup;
mod verbosity;

#[cfg(feature = "web-app")]
pub use clientconf::{setup as client_config_setup, ConfGenArgs};
pub use csv::Serializer as CsvSerializer;
Expand Down
2 changes: 1 addition & 1 deletion ipa-core/src/cli/noise.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::{
use clap::Args;
use rand::rngs::StdRng;
use rand_core::SeedableRng;
use serde::{Deserialize, Serialize};
use serde::{Deserialize, Serialize, Serializer};

use crate::protocol::dp::InsecureDiscreteDp;

Expand Down
2 changes: 1 addition & 1 deletion ipa-core/src/protocol/step/compact.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::fmt::{Debug, Display, Formatter};

use ipa_macros::Gate;
use serde::{Deserialize, Serialize};
use serde::Deserialize;

use super::StepNarrow;
use crate::helpers::{prss_protocol::PrssExchangeStep, query::QueryType};
Expand Down

0 comments on commit 4a72886

Please sign in to comment.