From ce298e5417761bc83a3206a58560637cdc7c75ce Mon Sep 17 00:00:00 2001 From: Kenneth Blake Vernon <53311626+kbvernon@users.noreply.github.com> Date: Sat, 7 Sep 2024 11:35:46 -0600 Subject: [PATCH] add link to cargo-msrv --- R/use_msrv.R | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/R/use_msrv.R b/R/use_msrv.R index bc98fd91..3634e654 100644 --- a/R/use_msrv.R +++ b/R/use_msrv.R @@ -13,6 +13,8 @@ #' #' To determine the MSRV of your R package, we recommend installing the `cargo-msrv` cli. You can do so by running `cargo install cargo-msrv`. To determine your MSRV, set your working directory to `src/rust` then run `cargo msrv`. Note that this may take a while. #' +#' For more details, please see [cargo-msrv](https://github.com/foresterre/cargo-msrv). +#' #' @return `version` #' @export #' @@ -64,4 +66,4 @@ use_msrv <- function(version, path = "."){ invisible(version) -} \ No newline at end of file +}