From 46c98224f58333441fc945e6fbf115ce8e7c5d73 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Tue, 17 Jul 2018 00:28:04 +0000 Subject: [PATCH] Remove erroneous and extraneous alloc import from edwards module. The "alloc" feature doesn't compile otherwise. * FIXES #160. --- src/edwards.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/edwards.rs b/src/edwards.rs index 1fb4d07..7e15fce 100644 --- a/src/edwards.rs +++ b/src/edwards.rs @@ -90,9 +90,6 @@ // affine and projective cakes and eat both of them too. #![allow(non_snake_case)] -#[cfg(feature = "alloc")] -use alloc::Vec; - use core::fmt::Debug; use core::iter::Iterator; use core::ops::{Add, Sub, Neg};