Skip to content

Commit

Permalink
📝 README: Use .Rmd and populate with basic information (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhoffa authored Dec 10, 2024
1 parent 561d352 commit ac3d506
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 2 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@

^src/rust/.cargo$
^src/rust/target$
^README\.Rmd$
45 changes: 45 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
output: github_document
---

<!-- README.md is generated from README.Rmd. Please edit that file -->

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# blazr <a href="https://r-staceans.github.io/blazr/"><img src="man/figures/logo.png" align="right" height="138" /></a>

<!-- badges: start -->
[![R-CMD-check](https://github.com/r-staceans/blazr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-staceans/blazr/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/r-staceans/blazr/graph/badge.svg)](https://app.codecov.io/gh/r-staceans/blazr)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->

⚠️ **This package is a work in progress and is not yet ready for use.**

The goal of blazr is to provide R with a blazingly fast interface to multi-threading in Rust.

## Installation

Install the development version of `blazr` from GitHub with:

``` r
# install.packages("pak")
pak::pak("r-staceans/blazr")
```

## Example

This is just a dummy example:

```{r example}
library(blazr)
blazr::to_upper("hello, world")
```
36 changes: 34 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# blazr <a href="https://r-staceans.github.io/blazr/"><img src="man/figures/logo.png" align="right" height="138" /></a>

<!-- badges: start -->

[![R-CMD-check](https://github.com/r-staceans/blazr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-staceans/blazr/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/r-staceans/blazr/graph/badge.svg)](https://app.codecov.io/gh/r-staceans/blazr)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![Codecov test
coverage](https://codecov.io/gh/r-staceans/blazr/graph/badge.svg)](https://app.codecov.io/gh/r-staceans/blazr)
[![Lifecycle:
experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->

⚠️ **This package is a work in progress and is not yet ready for use.**

The goal of blazr is to provide R with a blazingly fast interface to
multi-threading in Rust.

## Installation

Install the development version of `blazr` from GitHub with:

``` r
# install.packages("pak")
pak::pak("r-staceans/blazr")
```

## Example

This is just a dummy example:

``` r
library(blazr)

blazr::to_upper("hello, world")
#> [1] "HELLO, WORLD"
```

0 comments on commit ac3d506

Please sign in to comment.