Update README.md

Closes #4.
This commit is contained in:
Jack Grigg 2018-07-02 20:58:41 +01:00
parent 44b601b0a9
commit 002173e187
No known key found for this signature in database
GPG Key ID: 1B8D649257DB0829

View File

@ -5,7 +5,6 @@
## Disclaimers ## Disclaimers
* This library does not provide constant-time guarantees. * This library does not provide constant-time guarantees.
* This library relies on Rust's `i128_type` feature, which is currently only available in the nightly compiler.
## Usage ## Usage
@ -13,10 +12,10 @@ Add the `ff` crate to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
ff = "0.2" ff = "0.3"
``` ```
The `ff` crate contains `Field`, `PrimeField`, `PrimeFieldRepr` and `SqrtField` traits. See the **[documentation](https://docs.rs/ff/0.2.0/ff/)** for more. The `ff` crate contains `Field`, `PrimeField`, `PrimeFieldRepr` and `SqrtField` traits. See the **[documentation](https://docs.rs/ff/0.3.0/ff/)** for more.
### #![derive(PrimeField)] ### #![derive(PrimeField)]