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;
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 intouse num_traits::Float;