metrics-rs / metrics

A metrics ecosystem for Rust.
MIT License
1.13k stars 158 forks source link

Removes the std-atomic feature #324

Closed huntc closed 1 year ago

huntc commented 2 years ago

The std-atomic feature is not required as the portable atomics library will fall back to native atomics when there are available.

Additionally, having a std-atomics feature as a default prevents the other metrics libraries such as metrics-util, from being used on 32 bit archs.

Fixes https://github.com/metrics-rs/metrics/issues/323

tobz commented 1 year ago

This should be solved via a3a706b.

huntc commented 1 year ago

Thanks for solving this issue!