diff --git a/src/curve.rs b/src/curve.rs index 46358ad..552e736 100644 --- a/src/curve.rs +++ b/src/curve.rs @@ -77,6 +77,9 @@ // affine and projective cakes and eat both of them too. #![allow(non_snake_case)] +#[cfg(not(feature = "std"))] +use collections::Vec; + use core::fmt::Debug; use core::iter::Iterator; use core::ops::{Add, Sub, Neg};