I get the following error
error[E0463]: can't find crate for `serde_derive` which `built` depends on
--> build.rs:2:5
|
2 | use built::Options;
| ^^^^^ can't find crate
error: aborting due to previous error
now, the interesting thing is that the application used to build without any problems, but for some reason it just stopped working.
- Successful build on the 10th of November
- Unsuccessful build rerun today (20th of November) - with same code, and same Cargo.lock
- The offending line of code
Since I have no idea what caused this, I also have no idea how to solve it. Shouldn't I be able expect more or less the same result on each built given that the code is unchanged and I have the same Cargo.lock?
As you can see, building on Linux and Windows has worked without any issue at all, the problem is, for some reason, just isolated to Mac OS.
Any ideas or input is most welcome!