This commit is contained in:
Jack Grigg 2019-10-08 16:00:47 +13:00
parent 32543abf57
commit 09a32b1a48
2 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ff" name = "ff"
version = "0.4.0" version = "0.5.0"
authors = ["Sean Bowe <ewillbefull@gmail.com>"] authors = ["Sean Bowe <ewillbefull@gmail.com>"]
description = "Library for building and interfacing with finite fields" description = "Library for building and interfacing with finite fields"
readme = "README.md" readme = "README.md"
@ -12,9 +12,12 @@ edition = "2018"
[dependencies] [dependencies]
byteorder = "1" 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" rand_core = "0.5"
[features] [features]
default = [] default = []
derive = ["ff_derive"] derive = ["ff_derive"]
[badges]
maintenance = { status = "actively-developed" }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ff_derive" name = "ff_derive"
version = "0.3.0" version = "0.4.0"
authors = ["Sean Bowe <ewillbefull@gmail.com>"] authors = ["Sean Bowe <ewillbefull@gmail.com>"]
description = "Procedural macro library used to build custom prime field implementations" description = "Procedural macro library used to build custom prime field implementations"
documentation = "https://docs.rs/ff/" documentation = "https://docs.rs/ff/"
@ -19,3 +19,6 @@ num-integer = "0.1"
proc-macro2 = "1" proc-macro2 = "1"
quote = "1" quote = "1"
syn = "1" syn = "1"
[badges]
maintenance = { status = "passively-maintained" }