Open
Description
Rocky Linux 9's rustc and cargo versions:
$ rustc --version
rustc 1.58.1 (Red Hat 1.58.1-1.el9)
$ cargo --version
cargo 1.58.0
I've recently been hitting this error building CLN master:
genidx doc/index.rst
(cd plugins; cargo build --quiet --examples)
error: failed to parse manifest at `/home/user/builds/lightning/Cargo.toml`
Caused by:
feature `strip` is required
The package requires the Cargo feature called `strip`, but that feature is not stabilized in this version of Cargo (1.58.0).
Consider trying a newer version of Cargo (this may require the nightly release).
See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#profile-strip-option for more information about the status of this feature.
make: *** [plugins/Makefile:210: target/debug/examples/cln-plugin-startup] Error 101