vendor_pkgs()
is used to package the dependencies as required by CRAN.
It executes cargo vendor
on your behalf creating a vendor/
directory and a
compressed vendor.tar.xz
which will be shipped with package itself.
If you have modified your dependencies, you will need need to repackage
Arguments
- path
File path to the package for which to generate wrapper code.
- quiet
Logical indicating whether any progress messages should be generated or not.
- overwrite
Logical scalar or
NULL
indicating whether the files in thepath
should be overwritten. IfNULL
(default), the function will ask the user whether each file should be overwritten in an interactive session or do nothing in a non-interactive session. IfFALSE
and each file already exists, the function will do nothing. IfTRUE
, all files will be overwritten.