mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
17 lines
275 B
Rust
17 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;
|