1//! Complex numbers with rectangular and polar representations. 2 3#![cfg_attr(not(feature = "std"), no_std)] 4mod complex; 5// pub mod dual; 6 7pub mod traits; 8 9pub use complex::*; 10pub use traits::Number;