Remove non-standard rust-toolchain.toml — use Cargo.toml rust-version per hero_ecosystem convention #69
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
hero_books has a
rust-toolchain.tomlpinning to Rust 1.93 with a musl target. This is non-standard per thehero_ecosystemskill which specifies:rust-version = "1.92"in Cargo.toml (single source of truth)rust-toolchain.tomlprescribedThe
Cargo.tomlalready correctly hasedition = "2024"andrust-version = "1.92", so the toolchain file is redundant.This likely causes the Docker build failure in hero_services — the
rust:bookwormbuilder image may not be able to auto-install 1.93 duringbuild-services.sh, causing hero_books to be the only service that fails to compile.Fix
Delete
rust-toolchain.toml. TheCargo.tomlrust-versionfield is sufficient.mik-tf referenced this issue2026-03-01 15:06:06 +00:00
Updated to 1.93