Skip to content

Commit

Permalink
fix: no_std compatibility because of serde default features
Browse files Browse the repository at this point in the history
  • Loading branch information
avsaase committed Jul 8, 2024
1 parent 4914456 commit 9202ced
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ repository = "https://github.com/avsaase/fusion-imu"

[dependencies]
fusion-imu-sys = { version = "0.1.0", path = "./fusion-imu-sys" }
serde = { version = "1.0" , features = ["derive"], optional = true }
defmt = { version = "0.3", optional = true }
serde = { version = "1.0.204", default-features = false, features = ["derive"], optional = true }
defmt = { version = "0.3.8", optional = true }

[dev-dependencies]
plotpy = "1.0.0"
Expand Down

0 comments on commit 9202ced

Please sign in to comment.