1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(feature = "std"), no_std)]

#[macro_use]
extern crate alloc;

mod error;
#[cfg(feature = "std")]
pub mod svd;
pub mod tree;

pub use error::*;