ark_models_ext/lib.rs
1#![cfg_attr(not(feature = "std"), no_std)]
2// Temporary fix to make clippy happy with implementation of clone on copy types
3// provided by "derivative" crate.
4#![allow(clippy::non_canonical_clone_impl)]
5
6pub use ark_ec::{
7 scalar_mul, scalar_mul::*, twisted_edwards, twisted_edwards::*, AffineRepr, CurveGroup,
8 PrimeGroup, VariableBaseMSM,
9};
10pub mod models;
11pub use models::*;