Dead pub mod services in lib.rs prevents compilation #71
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
src/lib.rsline 25 declarespub mod servicesbut nosrc/services.rsorsrc/services/mod.rsexists. Nothing in the codebase usescrate::services. This causes a compile error:This means
cargo build -p hero_booksfails on a clean checkout ofdevelopment.Fix
Remove the dead
pub mod services;line fromsrc/lib.rs.mik-tf referenced this issue2026-03-01 15:06:06 +00:00