I'm building a crate in the workspace that depends on serde_yaml
. When i build in the workspace root, it builds everything, but when i rebuild just that specific crate with cargo build -p <crate>
it requires a rebuild because it says
dirty: UnitDependencyInfoChanged { old_name: "serde_yaml", old_fingerprint: 336827626433690992, new_name: "serde_yaml", new_fingerprint: 485260544305850671 }
Other searches and help online says that this is due to feature flags, but here we do not specify any different feature flags... is there something else that might be causing this issue?