Skip to content

Commit

Permalink
Disable serialport features for easier cross compiling
Browse files Browse the repository at this point in the history
Disabling default-features for serialport should remove dependency on libudev which is a pain to cross compile in CI-able manner (and is not used in this project)
  • Loading branch information
hatomist authored Nov 13, 2024
1 parent 42f51f5 commit 1cdbb7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actuator/robstride/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ clap = { version = "4.3", features = ["derive"] }
serde = { version = "^1.0", features = ["derive"] }

[target.'cfg(any(target_os = "macos", target_os = "linux"))'.dependencies]
serialport = "^4.2.0"
serialport = { version = "^4.2.0", default-features = false }

[[bin]]

Expand Down

0 comments on commit 1cdbb7f

Please sign in to comment.