Add a placeholder module for gadgets

This commit is contained in:
Jack Grigg 2021-01-08 01:55:10 +00:00
parent 7e2406cc77
commit f24b60b5b0
2 changed files with 2 additions and 0 deletions

1
src/gadget.rs Normal file
View File

@ -0,0 +1 @@
//! Self-contained circuit implementations of various primitives.

View File

@ -15,6 +15,7 @@
pub mod arithmetic;
pub mod circuit;
pub mod gadget;
pub mod pasta;
pub mod plonk;
pub mod poly;