roxido 0.8.2

A command line tool which aids in the development of R packages using the Roxido Framework

R Under development (unstable) (2026-02-28 r89499) -- "Unsuffered Consequences"
Copyright (C) 2026 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> # Fetch the complete metadata for all CRAN packages
> pdb_all <- tools::CRAN_package_db()
> # colnames(pdb_all)
> pbd <- pdb_all[, c("Package", "Maintainer", "SystemRequirements")]
> with_reqs <- pbd[!is.na(pbd$SystemRequirements), ]
> 
> # Example: Search for Rust-related system requirements
> rust_pkgs <- with_reqs[
+   grepl("rust|cargo", with_reqs$SystemRequirements, ignore.case = TRUE),
+ ]
> rust_pkgs <- rust_pkgs[order(rust_pkgs$Maintainer), ]
> 
> cat(paste(rust_pkgs[, "Package"], collapse = " "), "\n", sep = "")
fio rshift fastgeojson orbweaver clarabel zoomerjoin RPesto roxigraph automerge tok enderecobr caviarpd fangs salso rbm25 rtiktoken heck astgrepr caugi gglinedensity string2path rextendr gifski hellorust fozziejoin arcgis arcgisgeocode arcgisplaces arcgisutils arcpbf b32 b64 tomledit awdb h3o tergo unsum ciflyr xactonomial fru SQLFormatteR datefixR socratadata gadjid fdars prqlr waysign yaml12 rsamplr fcl ymd tinyimg
> 
> proc.time()
   user  system elapsed 
  0.538   0.061   1.598