cat-in-136 / cargo-generate-rpm

Cargo helper command to generate a binary RPM package
MIT License
87 stars 19 forks source link

Future-incompatibilities warning #84

Closed juliusl closed 1 year ago

juliusl commented 1 year ago

When install cargo-generate-rpm I'm starting to see this,

warning: the following packages contain code that will be rejected by a future version of Rust: buf_redux v0.8.4, nom v4.2.3
cat-in-136 commented 1 year ago

Thank you for notify.

This problem is not a cargo-generate-rpm problem, but a pgp (rpm crate dependency) problem. This problem has been resolved by upgrading pgp crate by https://github.com/rpm-rs/rpm/commit/85da76afe46b657c8c6e42d35ff7830ab07a85fb and is expected to be resolved in future update of rpm crate.

However, since the pgp functionality is currently not used by cargo-generate-rpm and is a useless dependency, I have decided to remove this dependency now. This is to be resolved in #85.

juliusl commented 1 year ago

Thanks for the quick turn around!