mirror of
https://github.com/serai-dex/serai.git
synced 2025-03-12 09:26:51 +00:00
16 lines
275 B
Rust
16 lines
275 B
Rust
#![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;
|