I need to do lots of calculations with big decimals and I found bigdecimal - Rust which is ok but I was wondering if there's a library that does the same thing but using x86's vector instructions (SIMD) or ARM's equivalent to do up to 8 floating point multiplications at a time instead of one.
Is there a de facto library for number crunching in Rust, specially for when you need big decimals?