halo2/halo2_gadgets/src/lib.rs

20 lines
448 B
Rust
Raw Normal View History

//! # halo2_gadgets
2020-10-20 14:12:37 -07:00
2020-10-20 14:44:33 -07:00
#![cfg_attr(docsrs, feature(doc_cfg))]
// Temporary until we have more of the crate implemented.
#![allow(dead_code)]
2020-10-20 14:44:33 -07:00
// Catch documentation errors caused by code changes.
#![deny(broken_intra_doc_links)]
2020-10-20 14:12:37 -07:00
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
#![deny(unsafe_code)]
2021-01-20 10:54:00 -08:00
pub mod ecc;
pub mod poseidon;
#[cfg(feature = "unstable")]
pub mod sha256;
pub mod sinsemilla;
pub mod utilities;
2021-01-20 12:35:54 -08:00
pub mod primitives;