cfrancia / spectral

Fluent test assertions for Rust
Apache License 2.0
160 stars 13 forks source link

Depend on num-traits crate instead of the num #13

Open viktorchvatal opened 7 years ago

viktorchvatal commented 7 years ago

Would it be possible to make spectral depend only on the num-traits crate instead on the num create? Compilation of the num-traits is a magnitude faster than the num, and the only place spectral uses the num library is use num::Float; which could be changed into use num_traits::Float;