aldanor / fast-float-rust

Super-fast float parser in Rust (now part of Rust core)
https://docs.rs/fast-float
Apache License 2.0
275 stars 20 forks source link

Fix no_std support #36

Closed avafloww closed 1 year ago

avafloww commented 1 year ago

The crate does not set no_std even if you disable the std feature, so it can't be used in a no_std environment. A quick one-line fix and we're back in shape 😄

avafloww commented 1 year ago

oops, saw I was beaten to it: #33