2021-03-03 21:46:11 +00:00
|
|
|
//! Implementation of the Pallas / Vesta curve cycle.
|
2020-08-22 20:15:39 +00:00
|
|
|
|
2021-01-22 21:13:11 +00:00
|
|
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
2021-02-15 14:53:27 +00:00
|
|
|
#![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,
|
2021-02-14 16:39:05 +00:00
|
|
|
clippy::same_item_push,
|
2021-02-15 14:53:27 +00:00
|
|
|
clippy::upper_case_acronyms,
|
|
|
|
|
clippy::unknown_clippy_lints
|
2020-08-22 20:15:39 +00:00
|
|
|
)]
|
2020-11-27 14:40:37 +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;
|