We need to remove bindgen from the dependencies of libR-sys to ensure that the MSRV is met for CRAN (so silly that an organization that doesn't use Rust can specify an MSRV because they don't want to run rustup update).
Additionally, since R 4.5 is formalizing the C API there are a lot of things that are causing warnings. These two things together make for a bit of a headache.
For those who want to use non-API (in case anyone is using an environment iterator or something), we need to make those available to them.
This has to be done via xtask and stored in existing bindings a la #189
We need to remove bindgen from the dependencies of libR-sys to ensure that the MSRV is met for CRAN (so silly that an organization that doesn't use Rust can specify an MSRV because they don't want to run
rustup update).Additionally, since R 4.5 is formalizing the C API there are a lot of things that are causing warnings. These two things together make for a bit of a headache.
For those who want to use non-API (in case anyone is using an environment iterator or something), we need to make those available to them.
This has to be done via xtask and stored in existing bindings a la #189