From 09a32b1a4851e0e1ac2cc24ccd5cebab6b1649b3 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 8 Oct 2019 16:00:47 +1300 Subject: [PATCH] ff 0.5.0 --- Cargo.toml | 7 +++++-- ff_derive/Cargo.toml | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b83258167..9ac1f1e9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ff" -version = "0.4.0" +version = "0.5.0" authors = ["Sean Bowe "] description = "Library for building and interfacing with finite fields" readme = "README.md" @@ -12,9 +12,12 @@ edition = "2018" [dependencies] byteorder = "1" -ff_derive = { version = "0.3.0", path = "ff_derive", optional = true } +ff_derive = { version = "0.4.0", path = "ff_derive", optional = true } rand_core = "0.5" [features] default = [] derive = ["ff_derive"] + +[badges] +maintenance = { status = "actively-developed" } diff --git a/ff_derive/Cargo.toml b/ff_derive/Cargo.toml index 18ac1bc66..88ba23e2b 100644 --- a/ff_derive/Cargo.toml +++ b/ff_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ff_derive" -version = "0.3.0" +version = "0.4.0" authors = ["Sean Bowe "] description = "Procedural macro library used to build custom prime field implementations" documentation = "https://docs.rs/ff/" @@ -19,3 +19,6 @@ num-integer = "0.1" proc-macro2 = "1" quote = "1" syn = "1" + +[badges] +maintenance = { status = "passively-maintained" }