-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from str4d/release-0.1.0
Release 0.1.0
- Loading branch information
Showing
18 changed files
with
448 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ff" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["Sean Bowe <[email protected]>"] | ||
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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ff_derive" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Sean Bowe <[email protected]>"] | ||
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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "group" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
|
@@ -15,6 +15,9 @@ repository = "https://github.com/ebfull/group" | |
edition = "2018" | ||
|
||
[dependencies] | ||
ff = { path = "../ff" } | ||
ff = { version = "0.5.0", path = "../ff" } | ||
rand = "0.7" | ||
rand_xorshift = "0.2" | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } |
Oops, something went wrong.