cargo build --features "serve_files backend_pyloncxx with_camtrig flydratrax"
I'm getting this error:
error: You are attempting to compile without a required feature flag being used. You must use one of either `2017`, `2018`, `2019`
--> /Users/annika/.cargo/registry/src/github.com-1ecc6299db9ec823/ipp-headers-sys-0.4.3/src/lib.rs:37:1
|
37 | / compile_error!("You are attempting to compile without a required feature flag \
38 | | being used. You must use one of either `2017`, `2018`, `2019`");
| |___________________________________________________________________^
error: could not compile `ipp-headers-sys` due to previous error
warning: build failed, waiting for other jobs to finish...
error: build failed
Which I understood to be related to not supplying a version feature. I therefore modified the Cargo.toml file to include this feature in this line:
ipp-sys = {version="0.4.4", optional=true, features=["2019"]}
But still getting the same error.
Do you have any advice?
Sorry for my ignorance, I'm very new to using your software.
Thanks.
Annika