mirror of
https://github.com/arnaucube/ark-r1cs-std.git
synced 2026-01-12 08:51:35 +01:00
Fix Vec imports for no_std
This commit is contained in:
committed by
Pratyush Mishra
parent
5659b0d9ea
commit
d4a2d31d07
@@ -1,4 +1,7 @@
|
||||
use crate::nizk::{gm17::Gm17, NIZKVerifierGadget};
|
||||
use crate::{
|
||||
nizk::{gm17::Gm17, NIZKVerifierGadget},
|
||||
Vec,
|
||||
};
|
||||
use algebra_core::{AffineCurve, Field, PairingEngine, ToConstraintField};
|
||||
use r1cs_core::{ConstraintSynthesizer, ConstraintSystem, SynthesisError};
|
||||
use r1cs_std::prelude::*;
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
use crate::nizk::{groth16::Groth16, NIZKVerifierGadget};
|
||||
use crate::{
|
||||
nizk::{groth16::Groth16, NIZKVerifierGadget},
|
||||
Vec,
|
||||
};
|
||||
use algebra_core::{AffineCurve, Field, PairingEngine, ToConstraintField};
|
||||
use r1cs_core::{ConstraintSynthesizer, ConstraintSystem, SynthesisError};
|
||||
use r1cs_std::prelude::*;
|
||||
|
||||
Reference in New Issue
Block a user