From 002173e187ff5ce94a2a5e722300509fcf0ba363 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 2 Jul 2018 20:58:41 +0100 Subject: [PATCH] Update README.md Closes #4. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4bd82ad..d08329e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ ## Disclaimers * 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 @@ -13,10 +12,10 @@ Add the `ff` crate to your `Cargo.toml`: ```toml [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)]