We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5699f9 commit 2b7f3bbCopy full SHA for 2b7f3bb
src/myrustlib/vendor-authors.R
@@ -6,4 +6,5 @@ packages <- subset(packages, sapply(packages$authors, length) > 0 & name != 'myr
6
authors <- vapply(packages$authors, function(x) paste(sub(" <.*>", "", x), collapse = ', '), character(1))
7
lines <- sprintf(" - %s %s: %s", packages$name, packages$version, authors)
8
dir.create('../../inst', showWarnings = FALSE)
9
-writeLines(c('Authors of vendored cargo crates', lines), '../../inst/AUTHORS')
+footer <- sprintf("\n(This file was auto-generated from 'cargo metadata' on %s)", Sys.Date())
10
+writeLines(c('Authors of vendored cargo crates', lines, footer), '../../inst/AUTHORS')
0 commit comments