Skip to content

Commit

Permalink
Merge pull request #95 from AeroRust/fix-floating-point-num-traits
Browse files Browse the repository at this point in the history
fix: no_std floating point operation and bump version
  • Loading branch information
elpiel authored Jun 3, 2023
2 parents 32457f0 + 11aa97d commit 5ec8788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nmea"
version = "0.4.0"
version = "0.4.1"

authors = [
"Felix Obenhuber <[email protected]>",
Expand Down Expand Up @@ -33,7 +33,7 @@ nom = { version = "7.1.1", default-features = false }

# we include num-traits only when `std` is not enabled
# because of `fract()` and `trunc()` methods
num-traits = { version = "0.2", default-features = false }
num-traits = { version = "0.2", default-features = false, features = ["libm"]}

[dev-dependencies]
approx = "0.5.1"
Expand Down

0 comments on commit 5ec8788

Please sign in to comment.