Crate docs

This commit is contained in:
Jack Grigg 2019-09-24 10:54:15 +01:00
parent 97c45f281a
commit dd2fbb3401
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
//! An implementation of the BLS12-381 pairing-friendly elliptic curve
//! construction.
mod ec;
mod fq;
mod fq12;

View File

@ -1,3 +1,5 @@
//! A library for working with pairing-friendly curves.
// `clippy` is a code linting tool for improving code quality by catching
// common mistakes or strange code patterns. If the `cargo-clippy` feature
// is provided, all compiler warnings are prohibited.