Skip to main content

bobcat_precompiles/
lib.rs

1#![no_std]
2
3#[cfg(feature = "ed25519-dalek")]
4mod ed25519;
5
6#[cfg(feature = "alloc")]
7extern crate alloc;
8
9pub mod ethereum;
10pub mod markovgeist;
11pub mod superposition;
12
13pub use bobcat_maths::U;