We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd6a42e commit f92c6d5Copy full SHA for f92c6d5
R/use_extendr.R
@@ -305,7 +305,7 @@ as_valid_rust_name <- function(name) {
305
#' @param call \[ env \] Environment of the caller, passed to `cli::cli_abort()`.
306
#' @noRd
307
throw_if_invalid_rust_name <- function(name, call = caller_env()) {
308
- quo <- enquo(name) # nolint: object_usage_linter
+ quo <- rlang::enquo(name) # nolint: object_usage_linter
309
if (!rlang::is_scalar_character(name) || !is_valid_rust_name(name)) {
310
cli::cli_abort(
311
c(
inst/templates/_gitignore
@@ -3,3 +3,6 @@
3
*.dll
4
target
5
.cargo
6
+rust/vendor
7
+Makevars
8
+Makevars.win
0 commit comments