From c7252a43bff52b1477347594b0ee3b1f4429e717 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Tue, 27 Jun 2017 10:35:14 -0600 Subject: [PATCH] Update README/Cargo.toml with correct documentation links. --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c0418b2a7..6e1fde770 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "ff" version = "0.2.0" authors = ["Sean Bowe "] description = "Library for building and interfacing with finite fields" -documentation = "https://github.com/ebfull/ff" +documentation = "https://docs.rs/ff/0.2.0/ff/" homepage = "https://github.com/ebfull/ff" license = "MIT/Apache-2.0" repository = "https://github.com/ebfull/ff" diff --git a/README.md b/README.md index df4bf0329..4bd82ad45 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add the `ff` crate to your `Cargo.toml`: ff = "0.2" ``` -The `ff` crate contains `Field`, `PrimeField`, `PrimeFieldRepr` and `SqrtField` traits. See the **[documentation](http)** for more. +The `ff` crate contains `Field`, `PrimeField`, `PrimeFieldRepr` and `SqrtField` traits. See the **[documentation](https://docs.rs/ff/0.2.0/ff/)** for more. ### #![derive(PrimeField)]