I’m encountering the error below, which claims that serde_derive
is not found in a crate that I’m depending on (which I also wrote). That crate builds just fine on its own, and does not use any features. Any ideas what might be going wrong, or how to debug this? I’m not even sure how to reproduce the build that is failing.
$ cargo build
Updating registry `https://github.com/rust-lang/crates.io-index`
Compiling vector3d v0.1.1
error[E0463]: can't find crate for `serde_derive`
--> /home/droundy/.cargo/registry/src/github.com-1ecc6299db9ec823/vector3d-0.1.1/src/lib.rs:16:14
|
16 | #[macro_use] extern crate serde_derive;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
error: aborting due to previous error