Remove pasta_curves::arithmetic::Field

This commit is contained in:
Jack Grigg 2021-09-20 19:35:44 +01:00
parent aeda766c34
commit 0c58a40a98
2 changed files with 1 additions and 2 deletions

View file

@ -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

View file

@ -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;