Skip to content

Commit

Permalink
fix: num-traits needs libm feature (#28)
Browse files Browse the repository at this point in the history
Signed-off-by: Lachezar Lechev <elpiel93@gmail.com>
  • Loading branch information
elpiel authored Jan 24, 2024
1 parent cc365a9 commit 8f03cca
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
Expand Up @@ -22,8 +22,8 @@ byteorder = { version = "1", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
mint = "^0.5.4"
bitflags = "2"
num-traits = "0.2.15"
num-derive = "0.3.3"
num-traits = { version = "0.2.15", default-features = false, features = ["libm"] }
num-derive = "0.4.1"

embedded-hal = { version = "1.0" }

Expand Down

0 comments on commit 8f03cca

Please sign in to comment.