You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.Rmd
+41-3
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,47 @@ It's similar to the `lubridate` package but is much lighter and focuses only on
28
28
29
29
## Installation
30
30
31
-
Note, in order to compile this package from source you need the Rust toolchain, which can be found in [Rust's official website](https://www.rust-lang.org).
31
+
### Binary version (no Rust toolchain required)
32
32
33
-
## Some use case and benchmarks
33
+
The binary package is provided by CRAN. So, if you are on Windows or macOS, the package can be installed via:
34
+
35
+
```r
36
+
install.packages("ymd")
37
+
```
38
+
39
+
If you are on Linux, you can try to use the [RSPM (RStudio Package Manager) repo](https://packagemanager.rstudio.com)
40
+
provided by RStudio PBC, via (remember to choose the correct binary repo URL for your platform):
41
+
42
+
```r
43
+
install.packages("ymd", repos="{RSPM-Repo-URL}")
44
+
```
45
+
46
+
In addition, you may download the binary package file generated by GitHub Action
47
+
from [the release page](https://github.com/shrektan/ymd/releases) and install via:
Copy file name to clipboardexpand all lines: README.md
+50-16
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,43 @@ It's similar to the `lubridate` package but is much lighter and focuses only on
11
11
12
12
## Installation
13
13
14
-
Note, in order to compile this package from source you need the Rust toolchain, which can be found in [Rust's official website](https://www.rust-lang.org).
14
+
### Binary version (no Rust toolchain required)
15
15
16
-
## Some use case and benchmarks
16
+
The binary package is provided by CRAN. So, if you are on Windows or macOS, the package can be installed via:
17
+
18
+
```r
19
+
install.packages("ymd")
20
+
```
21
+
22
+
If you are on Linux, you can try to use the [RSPM (RStudio Package Manager) repo](https://packagemanager.rstudio.com) provided by RStudio PBC, via (remember to choose the correct binary repo URL for your platform):
23
+
24
+
```r
25
+
install.packages("ymd", repos="{RSPM-Repo-URL}")
26
+
```
27
+
28
+
In addition, you may download the binary package file generated by GitHub Action from [the release page](https://github.com/shrektan/ymd/releases) and install via:
If you want to build the dev version from source, you'll need the Rust toolchain, which can be installed following [the instructions from the Rust book](https://doc.rust-lang.org/book/ch01-01-installation.html).
0 commit comments