Tests rely on deprecated `assert_cmd::cargo_bin` which will break on future Cargo versions
Author: epageCreated Dec 18, 2025Updated Dec 18, 2025
https://github.com/Y2Z/monolith/blob/8702e66fed5bb1b377d6c733f8aff3cdfa9b8dc3/tests/cli/basic.rs#L19
cargo_bin relies on implementation details of cargo that will soon break (rust-lang/cargo#16147, rust-lang/cargo#15010).
You can test this by running:
CARGO_BUILD_BUILD_DIR="{cargo-cache-home}/build/{workspace-path-hash}" cargo testThe replacement is assert_cmd::cargo_bin!
Source: Y2Z/monolith