georust / geo-svg

A rust library to generate SVGs for geo-types
5 stars 4 forks source link

Remove unused num-traits dep #5

Closed frewsxcv closed 10 months ago

RobWalt commented 10 months ago

Hi, thanks for joining on polishing this new crate 😄

The num-traits dep is currently

I think we could get away with normal casting to f32 via as f32. If we want to go the extra safe route, we could use f64 instead of f32 and then cast via as f64 as that's more likely not to fail in weird ways 🤔

frewsxcv commented 10 months ago

I must have had a typo when I searched! Disregard