cess-proving-system-api

Crates.iocess-proving-system-api
lib.rscess-proving-system-api
version0.1.2
sourcesrc
created_at2021-11-23 09:03:25.619096
updated_at2022-02-23 11:59:21.983398
descriptionAPI to interact with the proofs system in CESS
homepage
repositoryhttps://github.com/CESSProject/cess-proving-system-api
max_upload_size
id486150
size94,693
Alex (Teh Sunn Liu) (tehsunnliu)

documentation

README

CESS Proofs API

Forked from Filecoin rust-filecoin-proofs-api

This library is meant to be the official public API into the proofs library.

CircleCI

The main API to interact with the proofs system in CESS.

Default build options

The build options enabled by default are pairing and gpu. An alternative backend that can be used is blst. The pairing and blst options specify which bls12-381 pairing library to use..

Running the tests

Running the tests with the default features can be done like this:

cargo test --release --all

Running with the blst and gpu features can be done like this:

cargo test --no-default-features --features blst,gpu --release --all

Running with pairing and without the gpu feature can be done like this:

cargo test --no-default-features --features pairing --release --all

License

MIT or Apache 2.0

Commit count: 0

cargo fmt