mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-11 13:39:25 +00:00
transcript, dalek-ff-group, ed449, and ciphersuite are all usable with no_std alone. The rest additionally require alloc. Part of #279.
16 lines
233 B
Rust
16 lines
233 B
Rust
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
#![doc = include_str!("../README.md")]
|
|
#![no_std]
|
|
|
|
#[macro_use]
|
|
mod backend;
|
|
|
|
mod scalar;
|
|
pub use scalar::Scalar;
|
|
|
|
mod field;
|
|
pub use field::FieldElement;
|
|
|
|
mod point;
|
|
pub use point::Point;
|