How to prevent Cargo from resolving dependencies not supporting current rust version?
I own a library in Rust with daily tests running in github pipeline. These tests include MSRV build (currently 1.69.0). These MSRV tests fail from time to time when Cargo decides to resolve some package to version not compatible with the specified rust version.
How to prevent Cargo from resolving transitive dependencies not supporting current rust version?
I own a library in Rust with daily tests running in github pipeline. These tests include MSRV build (currently 1.69.0). These MSRV tests fail from time to time when Cargo decides to resolve some package to version not compatible with the specified rust version.
Patching version of transient dependencies Rust
I am trying to fix a dependency issue in Rust/Cargo. I have a dependency ctclib-pp
which in turn depends on bindgen 0.59.2
. However, for compatibility reasons I need to use version 0.60.1 or higher of bindgen (because of this).