coreutils/.cargo
Etienne Cordonnier c6119934d8 remove PROJECT_NAME_FOR_VERSION_STRING
This fixes out-of-tree builds which are using --manifest-path and ignoring .cargo/config.toml because of https://github.com/rust-lang/cargo/issues/2930 :

```
git clone https://github.com/uutils/coreutils.git
mkdir test && cd test
cargo build --manifest-path=../coreutils/Cargo.toml
```

This also fixes installation of coreutils from crates.io, which also ignores .cargo/config.toml:
```
cargo install coreutils --locked
```

Using `option_env` is not possible because `concat!` needs a string literal.
I don't see a need to change the project name using an environment variable, so let's keep things simple and simply remove it to fix this bug.

Fixes https://github.com/uutils/coreutils/issues/7992

Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
2025-07-20 23:10:52 +02:00
..
config.toml remove PROJECT_NAME_FOR_VERSION_STRING 2025-07-20 23:10:52 +02:00