pasta_curves-source/src/lib.rs

22 lines
539 B
Rust
Raw Normal View History

//! Implementation of the Pallas / Vesta curve cycle.
2020-08-22 20:15:39 +00:00
#![cfg_attr(docsrs, feature(doc_cfg))]
#![allow(unknown_lints)]
2020-08-22 20:15:39 +00:00
#![allow(
clippy::op_ref,
clippy::assign_op_pattern,
clippy::too_many_arguments,
clippy::suspicious_arithmetic_impl,
clippy::many_single_char_names,
clippy::same_item_push,
clippy::upper_case_acronyms,
clippy::unknown_clippy_lints
2020-08-22 20:15:39 +00:00
)]
#![deny(broken_intra_doc_links)]
2020-08-22 20:15:39 +00:00
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
#![deny(unsafe_code)]
pub mod arithmetic;
2020-12-03 20:45:13 +00:00
pub mod pasta;