usethis::use_package()

  • Most of the time, should indicate the minimum specific package version (arrow (>= 14.0.0))
    • User will be asked to update (if necessary) when they install your package
  • What min version to indicate requires careful consideration!
# Default is 'Imports'
usethis::use_package('dplyr', min_version = '1.0.0')
# Use whatever you have installed as minimum 
usethis::use_package('ggplot2', type='Suggests', min_version = TRUE)