Skip to content

Commit 3c77d79

Browse files
committed
Compile algebra-core on no-std
1 parent c7e45b2 commit 3c77d79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

algebra-core/src/fields/models/cubic_extension.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use crate::{
1919
bytes::{FromBytes, ToBytes},
2020
fields::{Field, PrimeField},
2121
io::{Read, Result as IoResult, Write},
22-
ToConstraintField,
22+
Box, ToConstraintField, Vec,
2323
};
2424

2525
pub trait CubicExtParameters: 'static + Send + Sync {

algebra-core/src/fields/models/quadratic_extension.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use rand::{
1919
use crate::{
2020
bytes::{FromBytes, ToBytes},
2121
fields::{Field, LegendreSymbol, PrimeField, SquareRootField},
22-
ToConstraintField,
22+
Box, ToConstraintField, Vec,
2323
};
2424

2525
pub trait QuadExtParameters: 'static + Send + Sync + Sized {

0 commit comments

Comments
 (0)