Razican / vsop87-rs

VSOP87 algorithm in Rust
https://crates.io/crates/vsop87
Apache License 2.0
16 stars 8 forks source link

Release 2.0.4 supporting stable rust #26

Closed rillian closed 3 years ago

rillian commented 3 years ago

BTW, if you're planning to release the develop branch as 2.1.0, would you consider also making a 2.0.4 release? It looks like the simd code requires nightly, and it would be nice to have a version which works with stable rust.

Razican commented 3 years ago

In principle, SIMD doesn't require nightly at all. It's available since Rust 1.27 on stable :) so there should be no issue when upgrading. Also, it will be behind a feature flag if it's something you want to avoid (it adds a bit of checked unsafe code).

rillian commented 3 years ago

Ok, I wondered about that. In any case, with the changes you've made to the release/2.1.0 it now builds for me on stable.