This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
forked from zkcrypto/ff
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add serde serialization/deserialization as de-facto rust standard
- Loading branch information
Showing
5 changed files
with
91 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
[package] | ||
name = "ff" | ||
version = "0.4.0" | ||
authors = ["Sean Bowe <ewillbefull@gmail.com>"] | ||
version = "0.5.0" | ||
authors = ["Sean Bowe <ewillbefull@gmail.com>", | ||
"Alex Gluchowski <alex@gluchowski.net>", | ||
"Alex Vlasov <alex.m.vlasov@gmail.com>"] | ||
description = "Library for building and interfacing with finite fields" | ||
documentation = "https://docs.rs/ff/" | ||
homepage = "https://github.com/ebfull/ff" | ||
homepage = "https://github.com/matterinc/ff" | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/ebfull/ff" | ||
repository = "https://github.com/matterinc/ff" | ||
|
||
[dependencies] | ||
byteorder = "1" | ||
rand = "0.4" | ||
ff_derive = { version = "0.3.0", path = "ff_derive", optional = true } | ||
ff_derive = { version = "0.4.0", path = "ff_derive", optional = true } | ||
#ff_asm = { version = "0.0.1", path = "ff_asm", optional = true } | ||
|
||
[features] | ||
default = [] | ||
derive = ["ff_derive"] | ||
#asm = ["ff_asm"] |
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
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