fstpackage / fst

Lightning Fast Serialization of Data Frames for R
http://www.fstpackage.org/fst/
GNU Affero General Public License v3.0
619 stars 42 forks source link

Binaries through r-universe #268

Closed SebKrantz closed 1 year ago

SebKrantz commented 2 years ago

In case this is of interest, I have set up a fastverse r-universe that builds binary versions of the GitHub version of your package for MAC and Windows (new binaries are built within an hour of a new commit to your repo). Users can install these binaries using:

# Enable repository from fastverse
options(repos = c(
    ropensci = 'https://fastverse.r-universe.dev',
    CRAN = 'https://cloud.r-project.org'))

# Download and install fst in R
install.packages('fst')

# Or simply: 
install.packages('fst', repos = c(ropensci = 'https://fastverse.r-universe.dev', 
                                  CRAN = 'https://cloud.r-project.org')) # Needed for dependencies

You can also add a Badge to your README.md:

fst status badge

MarcusKlik commented 1 year ago

Hi @SebKrantz, that's great, I'll add the banner to the README file, thanks a lot!