1
0
Fork 0
mirror of synced 2025-09-22 11:47:57 +00:00

move common import out of feature block

This commit is contained in:
dark64 2024-04-03 19:38:45 +02:00
parent 44bd209308
commit 6bf2b10b03

View file

@ -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,
@ -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;
}
}