v0.3.0
0.3.0 (2021-03-17)
The 0.3.0 release is a breaking change that makes the entire API type generic,
using num_traits::Float instead of fixed with f64.
Feature changes
- The
CheapRulerstruct has been changed toCheapRuler<T>to use the generic
num_traits::Float trait for floating-point numbers instead of using f64.
Associated functions that previously operated with f64s have also had their
argument/return types changed to T.
Misc
- Added a distance benchmark comparing the performance of cheap ruler's distance
to geo's haversine and vincenty implementations.