-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move fr32 tooling into subcrate
- Loading branch information
1 parent
a29f892
commit 5e45dad
Showing
38 changed files
with
162 additions
and
275 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[package] | ||
name = "fr32" | ||
version = "0.1.0" | ||
authors = ["dignifiedquire <me@dignifiedquire.com>"] | ||
description = "Filecoin proofs Fr/32-byte conversion tooling" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
repository = "https://github.com/filecoin-project/rust-fil-proofs" | ||
|
||
[dependencies] | ||
anyhow = "1.0.23" | ||
bellperson = { version = "0.12.3", default-features = false } | ||
byte-slice-cast = "1.0.0" | ||
byteorder = "1" | ||
ff = { version = "0.2.3", package = "fff" } | ||
thiserror = "1.0.6" | ||
|
||
[dev-dependencies] | ||
bitvec = "0.17" | ||
criterion = "0.3" | ||
itertools = "0.9" | ||
pretty_assertions = "0.6.1" | ||
rand = "0.7" | ||
rand_xorshift = "0.2.0" | ||
|
||
[features] | ||
default = ["pairing"] | ||
pairing = ["bellperson/pairing"] | ||
blst = ["bellperson/blst"] | ||
|
||
[[bench]] | ||
name = "fr" | ||
harness = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
mod convert; | ||
mod padding; | ||
mod reader; | ||
|
||
pub use convert::*; | ||
pub use padding::*; | ||
pub use reader::*; |
Oops, something went wrong.