From 44b601b0a9244fe062093cdc6d718301d9203d25 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Mon, 2 Jul 2018 08:34:26 -0600 Subject: [PATCH] Adjust versions --- Cargo.toml | 9 +++++---- ff_derive/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ef9a54f..d2af3de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "ff" -version = "0.2.0" +version = "0.3.0" authors = ["Sean Bowe "] description = "Library for building and interfacing with finite fields" -documentation = "https://docs.rs/ff/0.2.0/ff/" +documentation = "https://docs.rs/ff/" homepage = "https://github.com/ebfull/ff" license = "MIT/Apache-2.0" repository = "https://github.com/ebfull/ff" @@ -11,8 +11,9 @@ repository = "https://github.com/ebfull/ff" [dependencies] byteorder = "1" rand = "0.4" -ff_derive = { version = "0.2.0", path = "ff_derive" } +ff_derive = { version = "0.3.0", path = "ff_derive", optional = true } [features] +default = ["derive"] u128-support = [] -default = [] +derive = ["ff_derive"] diff --git a/ff_derive/Cargo.toml b/ff_derive/Cargo.toml index 65a233a..914e392 100644 --- a/ff_derive/Cargo.toml +++ b/ff_derive/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "ff_derive" -version = "0.2.0" +version = "0.3.0" authors = ["Sean Bowe "] description = "Procedural macro library used to build custom prime field implementations" -documentation = "https://github.com/ebfull/ff" +documentation = "https://docs.rs/ff/" homepage = "https://github.com/ebfull/ff" license = "MIT/Apache-2.0" repository = "https://github.com/ebfull/ff"