1#![doc = include_str!("../README.md")]
2#![cfg_attr(not(feature = "std"), no_std)]
3
4#[cfg(feature = "tokenize")]
5pub mod frac;
6
7#[cfg(not(feature = "tokenize"))]
8mod frac;
9
10mod real;
11pub mod error;
12
13pub use frac::Frac;
14pub use real::Real;