vendor_pkgs {rextendr} | R Documentation |
Vendor Rust dependencies
Description
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
Usage
vendor_pkgs(path = ".", quiet = FALSE, overwrite = NULL)
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 |
Value
-
vendor_pkgs()
returns a data.frame with two columnscrate
andversion
Examples
## Not run:
vendor_pkgs()
## End(Not run)