-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Currently, CRAN does not support pre-compiled binaries to be shipped with R packages. One issue this will cause for us is users will have to have the rust toolchain installed, so the library can be built on the user's machine. This probably isn't something they will have already installed, so users will have to download the toolchain first.
One solution is to not use CRAN. For example, r-polars uses r-universe, where they can provide pre-compiled binaries.
The easiest solution for our end, is to just require the user to install the Rust SDK, but that may be outside the scope for some users. r-universe may be a good alternative for people who don't want to have to download Rust, and CRAN can be used by people who don't want to download precompiled binaries.