fst icon indicating copy to clipboard operation
fst copied to clipboard

Binaries through r-universe

Open SebKrantz opened this issue 3 years ago • 0 comments

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

SebKrantz avatar May 14 '22 20:05 SebKrantz