The workspace was bumped to 0.12.0 in #86 but several crates still pin their path dependencies at 0.11.0, causing build failures:
error: failed to select a version for the requirement `crw-core = "^0.11.0"`
candidate versions found which didn't match: 0.12.0
Affected files (10 pins total):
crates/crw-diff/Cargo.toml — crw-core 0.11.0
crates/crw-monitor/Cargo.toml — crw-core, crw-diff, crw-crawl, crw-extract, crw-renderer all at 0.11.0
crates/crw-renderer/Cargo.toml — crw-extract 0.11.0
crates/crw-crawl/Cargo.toml — crw-diff 0.11.0
crates/crw-server/Cargo.toml — crw-diff, crw-monitor both at 0.11.0
Root cause: crw-diff and crw-monitor were added during the 0.11 cycle and their pins (plus dependents) were missed during the 0.12.0 version bump.
Fix: bump all 0.11.0 path dependency pins to 0.12.0.
The workspace was bumped to 0.12.0 in #86 but several crates still pin their path dependencies at
0.11.0, causing build failures:Affected files (10 pins total):
crates/crw-diff/Cargo.toml— crw-core 0.11.0crates/crw-monitor/Cargo.toml— crw-core, crw-diff, crw-crawl, crw-extract, crw-renderer all at 0.11.0crates/crw-renderer/Cargo.toml— crw-extract 0.11.0crates/crw-crawl/Cargo.toml— crw-diff 0.11.0crates/crw-server/Cargo.toml— crw-diff, crw-monitor both at 0.11.0Root cause:
crw-diffandcrw-monitorwere added during the 0.11 cycle and their pins (plus dependents) were missed during the 0.12.0 version bump.Fix: bump all
0.11.0path dependency pins to0.12.0.