1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
#![no_std]
#![allow(clippy::redundant_closure_call)]

#[macro_use]
mod backend;

mod scalar;
pub use scalar::Scalar;

mod field;
pub use field::FieldElement;

mod point;
pub use point::Point;