From cf7d7e823b6f5b8e78ee87310b42ead716b7f14a Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Sun, 25 Jun 2017 23:12:40 -0600 Subject: [PATCH] Add more stuff to the Cargo.toml files. --- Cargo.toml | 5 +++++ ff_derive/Cargo.toml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e687109..a90e446 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,11 @@ name = "ff" version = "0.1.0" authors = ["Sean Bowe "] +description = "Procedural macro library used to build custom prime field implementations" +documentation = "https://github.com/ebfull/ff" +homepage = "https://github.com/ebfull/ff" +license = "MIT/Apache-2.0" +repository = "https://github.com/ebfull/ff" [dependencies] rand = "0.3" diff --git a/ff_derive/Cargo.toml b/ff_derive/Cargo.toml index c61953a..57750b1 100644 --- a/ff_derive/Cargo.toml +++ b/ff_derive/Cargo.toml @@ -2,6 +2,11 @@ name = "ff_derive" version = "0.1.0" authors = ["Sean Bowe "] +description = "Procedural macro library used to build custom prime field implementations" +documentation = "https://github.com/ebfull/ff" +homepage = "https://github.com/ebfull/ff" +license = "MIT/Apache-2.0" +repository = "https://github.com/ebfull/ff" [lib] proc-macro = true