Skip to content

Commit

Permalink
move common import out of feature block
Browse files Browse the repository at this point in the history
  • Loading branch information
dark64 committed Apr 3, 2024
1 parent f6ed6f5 commit 52eafda
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions zokrates_ast/src/common/embed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::common::{
flat::{Parameter, Variable},
RuntimeError, Solver,
};
use crate::flat::flat_expression_from_bits;
use crate::flat::{flat_expression_from_bits, flat_expression_from_variable_summands};
use crate::flat::{FlatDirective, FlatExpression, FlatFunctionIterator, FlatStatement};
use crate::typed::types::{
ConcreteGenericsAssignment, DeclarationConstant, DeclarationSignature, DeclarationType,
Expand All @@ -23,7 +23,6 @@ cfg_if::cfg_if! {
if #[cfg(feature = "bellman")] {
use pairing_ce::bn256::Bn256;
use zokrates_embed::{bellman::{from_bellman, generate_sha256_round_constraints}};
use crate::flat::flat_expression_from_variable_summands;
}
}

Expand Down

0 comments on commit 52eafda

Please sign in to comment.