I'm new to rust, but want to try it with bluez. From
cargo new test-bluez
I added:
bluez = "0.3.0"
to Cargo.toml, but when I try to compile, it fails with:
...
error: aborting due to 43 previous errors
Some errors have detailed explanations: E0034, E0308.
For more information about an error, try `rustc --explain E0034`.
error: could not compile `bitvec`
To learn more, run the command again with --verbose.
warning: build failed, waiting for other jobs to finish...
error: build failed
I know that this is not a bluez problem, but I am hoping that there is something I can change with the way I import bluez into my project in order to make this compile.
I'm new to rust, but want to try it with bluez. From
cargo new test-bluezI added:
bluez = "0.3.0"to
Cargo.toml, but when I try to compile, it fails with:I know that this is not a bluez problem, but I am hoping that there is something I can change with the way I import bluez into my project in order to make this compile.