From 0c58a40a98a3696eca20fbb7b18f9b6771517d1b Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 20 Sep 2021 19:35:44 +0100 Subject: [PATCH] Remove `pasta_curves::arithmetic::Field` --- CHANGELOG.md | 1 + src/arithmetic.rs | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36a0d3a..093430f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to Rust's notion of ## [Unreleased] ### Removed - `pasta_curves::arithmetic`: + - `Field` re-export (`pasta_curves::group::ff::Field` is equivalent). - `FieldExt::ROOT_OF_UNITY` (use `ff::PrimeField::root_of_unity` instead). ## [0.2.1] - 2021-09-17 diff --git a/src/arithmetic.rs b/src/arithmetic.rs index bb5fb1d..0fef7f5 100644 --- a/src/arithmetic.rs +++ b/src/arithmetic.rs @@ -4,8 +4,6 @@ //! This module is temporary, and the extension traits defined here are expected to be //! upstreamed into the `ff` and `group` crates after some refactoring. -pub use ff::Field; - mod curves; mod fields;