diff --git a/R/dashboard_modules/01-provider_breakdowns.R b/R/dashboard_modules/01-provider_breakdowns.R index 0da8c44..07b1138 100644 --- a/R/dashboard_modules/01-provider_breakdowns.R +++ b/R/dashboard_modules/01-provider_breakdowns.R @@ -17,50 +17,61 @@ regions <- c( "London", "South East", "South West", "Outside of England and unknown" ) +# Create a list of the region options to use in the dropdown list +regions_dropdown_choices <- c( + paste0(regions, ": Delivery"), + paste0(regions, ": Learner home") +) + # Main module code ============================================================ prov_breakdowns_ui <- function(id) { div( # Page header ============================================================= h1("Provider breakdowns"), - layout_columns( - col_widths = c(4, 8), - ## Provider table ------------------------------------------------------- - card(reactable::reactableOutput(NS(id, "prov_selection"))), - # User selection area =================================================== - column( - width = 12, - div( - class = "well", - bslib::layout_column_wrap( - width = "15rem", # Minimum width for each input box before wrapping - selectInput( - inputId = NS(id, "measure"), - label = "Select measure", - choices = apps_measure_choices - ), - selectInput( - inputId = NS(id, "prov_type"), - label = "Select provider type", - choices = c("All provider types", apps_prov_type_choices) - ), - selectInput( - inputId = NS(id, "year"), - label = "Select academic year", - choices = apps_year_choices - ), - selectInput( - inputId = NS(id, "level"), - label = "Select level", - choices = c("All levels", apps_level_choices) - ), - selectInput( - inputId = NS(id, "age"), - label = "Select age group", - choices = c("All age groups", apps_age_choices) - ) + # User selection area =================================================== + column( + width = 12, + div( + class = "well", + bslib::layout_column_wrap( + width = "25rem", # Minimum width for each input box before wrapping + selectInput( + inputId = NS(id, "measure"), + label = "Select measure", + choices = apps_measure_choices + ), + selectInput( + inputId = NS(id, "prov_type"), + label = "Select provider type", + choices = c("All provider types", apps_prov_type_choices) + ), + selectInput( + inputId = NS(id, "year"), + label = "Select academic year", + choices = apps_year_choices + ), + selectInput( + inputId = NS(id, "level"), + label = "Select level", + choices = c("All levels", apps_level_choices) + ), + selectInput( + inputId = NS(id, "age"), + label = "Select age group", + choices = c("All age groups", apps_age_choices) + ), + selectInput( + inputId = NS(id, "region"), + label = "Select region", + choices = c("All regions", regions_dropdown_choices) ) - ), + ) + ), + layout_columns( + col_widths = c(4, 8), + ## Provider table ------------------------------------------------------- + card(reactable::reactableOutput(NS(id, "prov_selection"))), ## Tabs on right -------------------------------------------------------- navset_card_tab( id = "provider_breakdown_tabs", @@ -133,29 +144,52 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter }) # Region table selections ------------------------------------------------- - selected_learner_home_region <- reactive({ + # Make the region dropdown update when a table is selected + observe({ # Filter to only the selected region using the vector at the top of the script - return(regions[getReactableState("home_region", "selected")]) + # Work out if home or delivery region is selected from a table and update the dropdown + if (length(regions[getReactableState("home_region", "selected")]) != 0) { + selected_region <- paste0(regions[getReactableState("home_region", "selected")], ": Learner home") + + updateSelectizeInput( + session = session, + inputId = "region", + selected = selected_region + ) + } }) - selected_delivery_region <- reactive({ - # Filter to only the selected region using the vector at the top of the script - return(regions[getReactableState("delivery_region", "selected")]) + observe({ + if (length(regions[getReactableState("delivery_region", "selected")]) != 0) { + selected_region <- paste0(regions[getReactableState("delivery_region", "selected")], ": Delivery") + + updateSelectizeInput( + session = session, + inputId = "region", + selected = selected_region + ) + } }) + # TODO: Make sure the reactable state in the region tables matches the dropdown selection + + + # Table reactive data ===================================================== ## Provider data ---------------------------------------------------------- prov_selection_table <- reactive({ prov_selection_table <- filtered_raw_data() - # Filter to learner home region selection if it exists - if (length(selected_learner_home_region()) == 1) { - prov_selection_table <- prov_selection_table %>% filter(learner_home_region == selected_learner_home_region()) - } - - # Filter to delivery region selection if it exists - if (length(selected_delivery_region()) == 1) { - prov_selection_table <- prov_selection_table %>% filter(delivery_region == selected_delivery_region()) + # Filter from the regions dropdown + if (input$region != "All regions") { + # Check if the region is a delivery or learner home and then filter by it + if (grepl(": Delivery$", input$region)) { + prov_selection_table <- prov_selection_table %>% + filter(delivery_region == sub(": .*", "", input$region)) + } else { + prov_selection_table <- prov_selection_table %>% + filter(learner_home_region == sub(": .*", "", input$region)) + } } prov_selection_table <- prov_selection_table %>% @@ -171,10 +205,7 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter return(prov_selection_table) }) %>% # Set the dependent variables that will trigger this table to update - bindEvent( - firstlow(input$measure), filtered_raw_data(), selected_learner_home_region(), - selected_delivery_region() - ) + bindEvent(firstlow(input$measure), filtered_raw_data(), input$region) ## Delivery region data --------------------------------------------------- delivery_region_table <- reactive({ @@ -182,14 +213,34 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter delivery_region_table <- filtered_raw_data() # Filter down provider list there is something selected from the providers - if (length(selected_providers() != 0)) { - delivery_region_table <- delivery_region_table %>% filter(provider_name %in% selected_providers()) + # if (length(selected_providers() != 0)) { + # delivery_region_table <- delivery_region_table %>% + # filter(provider_name %in% selected_providers()) + # } + + # # Filter to learner home region selection if it exists + # if (length(selected_learner_home_region()) == 1) { + # delivery_region_table <- delivery_region_table %>% + # filter(learner_home_region == selected_learner_home_region()) + # } + + # Filter from the regions dropdown + if (input$region != "") { + if (grepl(": Learner home$", input$region)) { + delivery_region_table <- delivery_region_table %>% + filter(learner_home_region == sub(": .*", "", input$region)) + } } - # Filter to learner home region selection if it exists - if (length(selected_learner_home_region()) == 1) { - delivery_region_table <- delivery_region_table %>% filter(learner_home_region == selected_learner_home_region()) - } + + # select from dropdown + # if (input$region != "") { + # if (grepl(": Delivery$", input$region)) { + # delivery_region_table <- delivery_region_table %>% + # (delivery_region == sub(": .*", "", input$region)) + # } + # } + delivery_region_table <- delivery_region_table %>% with_groups( @@ -211,7 +262,7 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter return(delivery_region_table) }) %>% - bindEvent(firstlow(input$measure), filtered_raw_data(), selected_providers()) + bindEvent(firstlow(input$measure), filtered_raw_data(), selected_providers(), input$region) ## Home region data ------------------------------------------------------- home_region_table <- reactive({ @@ -223,9 +274,18 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter home_region_table <- home_region_table %>% filter(provider_name %in% selected_providers()) } - # Filter to delivery region selection if it exists - if (length(selected_delivery_region()) == 1) { - home_region_table <- home_region_table %>% filter(delivery_region == selected_delivery_region()) + # # Filter to delivery region selection if it exists + # if (length(selected : Delivery_region()) == 1) { + # home_region_table <- home_region_table %>% filter(delivery_region == selected : Delivery_region()) + # } + + # Filter from the regions dropdown + if (input$region != "All regions") { + # Check if the region is a delivery and then filter by it + if (grepl(": Delivery$", input$region)) { + home_region_table <- home_region_table %>% + filter(delivery_region == sub(": .*", "", input$region)) + } } home_region_table <- home_region_table %>% @@ -248,7 +308,7 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter return(home_region_table) }) %>% - bindEvent(firstlow(input$measure), filtered_raw_data(), selected_providers()) + bindEvent(firstlow(input$measure), filtered_raw_data(), selected_providers(), input$region) # Bar chart data ---------------------------------------------------------- regions_bar_data <- reactive({ @@ -276,26 +336,51 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter regions_bar_data$Region <- forcats::fct_rev(factor(regions_bar_data$Region, levels = regions)) # Create a unique column used for the hover on each bar - regions_bar_data$data_id <- paste(regions_bar_data$Region, regions_bar_data$type, sep = "_") + regions_bar_data$data_id <- paste(regions_bar_data$Region, regions_bar_data$type, sep = ": ") + + + # make all other delivery regions 0 except the one selected + regions_bar_data$count <- case_when( + input$region != "All regions" & + input$region != "" & + regions_bar_data$type == "Delivery" & + substring(input$region, nchar(input$region) - 7) == "Delivery" & + regions_bar_data$Region != sub(": .*", "", input$region) & + regions_bar_data$data_id != input$region ~ 0, + .default = regions_bar_data$count + ) + + # and the same when it's a learner home region selected + regions_bar_data$count <- case_when( + input$region != "All regions" & + input$region != "" & + regions_bar_data$type == "Learner home" & + substring(input$region, nchar(input$region) - 11) == "Learner home" & + regions_bar_data$Region != sub(": .*", "", input$region) & + regions_bar_data$data_id != input$region ~ 0, + .default = regions_bar_data$count + ) return(regions_bar_data) }) - # Bar chart output object ================================================= - # Get the selected region and return in a form that matches the id's used in the chart - # This is then used to show which region is currently selected from the tables - selected_region <- reactive({ - # We know only one of the two can be selected in the tables at once so we can cheat a bit with our logic here - # Filter to delivery region selection if it exists - if (length(selected_delivery_region()) == 1) { - return(paste0(selected_delivery_region(), "_Delivery")) + # This observes the selected bar in the bar chart and updates the dropdown + # for region + observe({ + print(input$regions_bar_selected) + + selection <- input$regions_bar_selected + + if (is.null(selection) || length(selection) == 0) { + selected_value <- "" } else { - # Filter to learner home region selection if it exists, if it doesn't then it returns _Leaner home - # which won't match an id in the chart and will act as if nothing is selected - return(paste0(selected_learner_home_region(), "_Learner home")) + selected_value <- selection } + + updateSelectizeInput(session, "region", selected = selected_value) }) + # Bar chart output object ================================================= output$regions_bar <- renderGirafe( girafe( ggobj = @@ -354,7 +439,7 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter ), ggiraph::opts_selection( type = "single", - selected = selected_region(), + selected = input$region, css = "cursor:pointer;stroke:black;stroke-width:2px;fill:#ffdd00;" ) ), @@ -383,6 +468,19 @@ prov_breakdowns_server <- function(id) { # nolint: cyclocomp_linter ) }) + + # TODO get this working, to update the delivery region table with the region dropdown + observe({ + if (grepl("Delivery$", input$region)) { + delivery_region_selected <- case_when(sub(": .*", "", input$region) == "North East" ~ 1) + updateReactable("delivery_region", select = delivery_region_selected) + print(delivery_region_selected) + } + }) + + + + output$home_region <- renderReactable({ dfe_reactable( home_region_table() |> diff --git a/data/subjects_and_standards_0.parquet b/data/subjects_and_standards_0.parquet index de76d57..3bed81f 100644 Binary files a/data/subjects_and_standards_0.parquet and b/data/subjects_and_standards_0.parquet differ diff --git a/manifest.json b/manifest.json index 080aa75..c0191f6 100644 --- a/manifest.json +++ b/manifest.json @@ -61,16 +61,9 @@ "Packaged": "2024-06-02 20:26:05 UTC; kirill", "Author": "R Special Interest Group on Databases (R-SIG-DB) [aut],\n Hadley Wickham [aut],\n Kirill Müller [aut, cre] (),\n R Consortium [fnd]", "Maintainer": "Kirill Müller ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-06-02 21:50:02 UTC", - "Built": "R 4.4.1; ; 2024-06-25 00:32:54 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "DBI", - "RemoteRef": "DBI", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.2.3" + "Built": "R 4.4.0; ; 2024-06-03 04:43:08 UTC; windows" } }, "KernSmooth": { @@ -158,9 +151,9 @@ "Packaged": "2024-03-19 17:15:14 UTC; maechler", "Author": "Douglas Bates [aut] (),\n Martin Maechler [aut, cre] (),\n Mikael Jagan [aut] (),\n Timothy A. Davis [ctb] (,\n SuiteSparse libraries, collaborators listed in\n dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"),\n pattern=\"License\", full.names=TRUE, recursive=TRUE)),\n George Karypis [ctb] (, METIS\n library, Copyright: Regents of the University of Minnesota),\n Jason Riedy [ctb] (, GNU\n Octave's condest() and onenormest(), Copyright: Regents of the\n University of California),\n Jens Oehlschlägel [ctb] (initial nearPD()),\n R Core Team [ctb] (base R's matrix implementation)", "Maintainer": "Martin Maechler ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-04-26 12:03:02 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-06-14 08:26:22 UTC; windows", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-29 22:30:29 UTC; windows", "Archs": "x64" } }, @@ -185,14 +178,7 @@ "Date/Publication": "2024-06-15 19:40:02 UTC", "Encoding": "UTF-8", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-06-16 04:59:25 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "PKI", - "RemoteRef": "PKI", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.1-14" + "Archs": "x64" } }, "R.cache": { @@ -343,7 +329,14 @@ "Repository": "RSPM", "Date/Publication": "2022-04-03 19:20:13 UTC", "Encoding": "UTF-8", - "Built": "R 4.4.0; ; 2024-04-25 19:44:24 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:44:24 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "RColorBrewer", + "RemoteRef": "RColorBrewer", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.1-3" } }, "RCurl": { @@ -369,7 +362,14 @@ "Date/Publication": "2024-07-11 13:00:02 UTC", "Encoding": "UTF-8", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-12 04:21:02 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "RCurl", + "RemoteRef": "RCurl", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.98-1.16" } }, "Rcpp": { @@ -396,7 +396,14 @@ "Repository": "RSPM", "Date/Publication": "2024-07-17 15:50:06 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 04:28:04 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "Rcpp", + "RemoteRef": "Rcpp", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.0.13" } }, "afcolours": { @@ -421,7 +428,14 @@ "Maintainer": "Luke Davies ", "Repository": "RSPM", "Date/Publication": "2023-09-06 18:12:32 UTC", - "Built": "R 4.4.0; ; 2024-04-25 21:08:18 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 21:08:18 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "afcolours", + "RemoteRef": "afcolours", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.0.0" } }, "arrow": { @@ -455,14 +469,7 @@ "Repository": "RSPM", "Date/Publication": "2024-08-21 12:20:06 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-08-28 05:16:01 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "arrow", - "RemoteRef": "arrow", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "17.0.0.1" + "Archs": "x64" } }, "askpass": { @@ -490,7 +497,14 @@ "Repository": "RSPM", "Date/Publication": "2023-09-03 20:00:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:09:11 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "askpass", + "RemoteRef": "askpass", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.2.0" } }, "assertthat": { @@ -548,7 +562,14 @@ "Repository": "RSPM", "Date/Publication": "2024-05-23 12:30:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-24 04:43:58 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "backports", + "RemoteRef": "backports", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.5.0" } }, "base64enc": { @@ -601,14 +622,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-20 15:20:09 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-21 04:54:27 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "bit", - "RemoteRef": "bit", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "4.5.0" + "Archs": "x64" } }, "bit64": { @@ -638,14 +652,7 @@ "NeedsCompilation": "yes", "Packaged": "2024-09-21 22:05:07 UTC; jo", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-23 04:29:46 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "bit64", - "RemoteRef": "bit64", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "4.5.2" + "Archs": "x64" } }, "bitops": { @@ -665,14 +672,15 @@ "Packaged": "2024-07-29 13:37:29 UTC; maechler", "Author": "Steve Dutky [aut] (S original; then (after MM's port) revised and\n modified),\n Martin Maechler [cre, aut] (Initial R port; tweaks,\n )", "Maintainer": "Martin Maechler ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-29 15:10:06 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-07-30 23:50:47 UTC; windows", + "Encoding": "UTF-8", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-30 04:32:56 UTC; windows", "Archs": "x64", "RemoteType": "standard", "RemotePkgRef": "bitops", "RemoteRef": "bitops", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "1.0-8" @@ -703,7 +711,14 @@ "Repository": "RSPM", "Date/Publication": "2024-04-24 19:20:07 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:45:27 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "brio", + "RemoteRef": "brio", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.1.5" } }, "bslib": { @@ -734,13 +749,13 @@ "Packaged": "2024-07-29 18:49:12 UTC; cpsievert", "Author": "Carson Sievert [aut, cre] (),\n Joe Cheng [aut],\n Garrick Aden-Buie [aut] (),\n Posit Software, PBC [cph, fnd],\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Javi Aguilar [ctb, cph] (Bootstrap colorpicker library),\n Thomas Park [ctb, cph] (Bootswatch library),\n PayPal [ctb, cph] (Bootstrap accessibility plugin)", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-29 19:20:02 UTC", - "Built": "R 4.4.1; ; 2024-08-02 01:44:34 UTC; windows", + "Built": "R 4.4.0; ; 2024-07-30 04:32:16 UTC; windows", "RemoteType": "standard", "RemotePkgRef": "bslib", "RemoteRef": "bslib", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "0.8.0" @@ -771,7 +786,14 @@ "Repository": "RSPM", "Date/Publication": "2024-05-16 09:50:11 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-17 04:03:28 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "cachem", + "RemoteRef": "cachem", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.1.0" } }, "callr": { @@ -800,7 +822,14 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-25 13:30:06 UTC", - "Built": "R 4.4.0; ; 2024-04-25 19:43:36 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:43:36 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "callr", + "RemoteRef": "callr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "3.7.6" } }, "checkmate": { @@ -829,14 +858,14 @@ "Packaged": "2024-07-29 09:26:26 UTC; michel", "Author": "Michel Lang [cre, aut] (),\n Bernd Bischl [ctb],\n Dénes Tóth [ctb] ()", "Maintainer": "Michel Lang ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-29 12:30:06 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-08-02 00:32:38 UTC; windows", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-30 04:31:17 UTC; windows", "Archs": "x64", "RemoteType": "standard", "RemotePkgRef": "checkmate", "RemoteRef": "checkmate", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "2.3.2" @@ -868,14 +897,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2024-08-30 07:10:02 UTC", - "Built": "R 4.4.0; ; 2024-08-31 04:43:37 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "chromote", - "RemoteRef": "chromote", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.3.1" + "Built": "R 4.4.0; ; 2024-08-31 04:43:37 UTC; windows" } }, "class": { @@ -927,9 +949,9 @@ "Packaged": "2023-09-05 08:36:55 UTC; rsb", "Author": "Roger Bivand [aut, cre] (),\n Bill Denney [ctb] (),\n Richard Dunlap [ctb],\n Diego Hernangómez [ctb] (),\n Hisaji Ono [ctb],\n Josiah Parry [ctb] (),\n Matthieu Stigler [ctb] ()", "Maintainer": "Roger Bivand ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-09-05 13:00:06 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-06-25 01:28:19 UTC; windows", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 00:18:21 UTC; windows", "Archs": "x64" } }, @@ -959,7 +981,14 @@ "Repository": "RSPM", "Date/Publication": "2024-06-21 21:00:07 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-06-22 04:44:10 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "cli", + "RemoteRef": "cli", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "3.6.3" } }, "clipr": { @@ -988,7 +1017,14 @@ "Maintainer": "Matthew Lincoln ", "Repository": "RSPM", "Date/Publication": "2022-02-22 00:58:45 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:14:35 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:14:35 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "clipr", + "RemoteRef": "clipr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.8.0" } }, "codetools": { @@ -1036,14 +1072,14 @@ "Packaged": "2024-07-26 15:40:41 UTC; zeileis", "Author": "Ross Ihaka [aut],\n Paul Murrell [aut] (),\n Kurt Hornik [aut] (),\n Jason C. Fisher [aut] (),\n Reto Stauffer [aut] (),\n Claus O. Wilke [aut] (),\n Claire D. McWhite [aut] (),\n Achim Zeileis [aut, cre] ()", "Maintainer": "Achim Zeileis ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-26 17:10:02 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-08-02 00:32:25 UTC; windows", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-27 04:42:47 UTC; windows", "Archs": "x64", "RemoteType": "standard", "RemotePkgRef": "colorspace", "RemoteRef": "colorspace", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "2.1-1" @@ -1073,7 +1109,14 @@ "Repository": "RSPM", "Date/Publication": "2024-01-30 12:40:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:46:49 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "commonmark", + "RemoteRef": "commonmark", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.9.1" } }, "cpp11": { @@ -1102,14 +1145,7 @@ "Maintainer": "Davis Vaughan ", "Repository": "RSPM", "Date/Publication": "2024-08-27 04:30:17 UTC", - "Built": "R 4.4.0; ; 2024-08-28 04:38:59 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "cpp11", - "RemoteRef": "cpp11", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.5.0" + "Built": "R 4.4.0; ; 2024-08-28 04:38:59 UTC; windows" } }, "crayon": { @@ -1136,7 +1172,14 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-06-20 13:00:02 UTC", - "Built": "R 4.4.0; ; 2024-06-21 04:46:07 UTC; windows" + "Built": "R 4.4.0; ; 2024-06-21 04:46:07 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "crayon", + "RemoteRef": "crayon", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.5.3" } }, "credentials": { @@ -1165,7 +1208,14 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-09-06 21:32:31 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:16:21 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:16:21 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "credentials", + "RemoteRef": "credentials", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.0.1" } }, "crosstalk": { @@ -1191,7 +1241,14 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2023-11-23 08:50:07 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:40:47 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:40:47 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "crosstalk", + "RemoteRef": "crosstalk", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.2.1" } }, "curl": { @@ -1221,14 +1278,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-20 11:50:24 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-21 04:42:25 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "curl", - "RemoteRef": "curl", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "5.2.3" + "Archs": "x64" } }, "cyclocomp": { @@ -1252,7 +1302,14 @@ "Packaged": "2023-08-30 12:49:50 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2023-08-30 17:00:22 UTC", - "Built": "R 4.4.0; ; 2024-04-25 22:00:15 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 22:00:15 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "cyclocomp", + "RemoteRef": "cyclocomp", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.1.1" } }, "data.table": { @@ -1280,14 +1337,7 @@ "Repository": "RSPM", "Date/Publication": "2024-08-27 04:20:10 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-08-28 05:11:15 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "data.table", - "RemoteRef": "data.table", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.16.0" + "Archs": "x64" } }, "desc": { @@ -1317,7 +1367,14 @@ "Author": "Gábor Csárdi [aut, cre],\n Kirill Müller [aut],\n Jim Hester [aut],\n Maëlle Salmon [ctb] (),\n Posit Software, PBC [cph, fnd]", "Repository": "RSPM", "Date/Publication": "2023-12-10 11:40:08 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:05:06 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:05:06 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "desc", + "RemoteRef": "desc", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.4.3" } }, "dfeR": { @@ -1345,7 +1402,7 @@ "RoxygenNote": "7.3.2", "Author": "Cam Race [aut, cre],\n Laura Selby [aut],\n Adam Robinson [aut],\n Jen Machin [ctb],\n Jake Tufts [ctb],\n Rich Bielby [ctb] ()", "Maintainer": "Cam Race ", - "Built": "R 4.4.1; ; 2024-09-25 14:53:38 UTC; windows", + "Built": "R 4.4.1; ; 2024-10-11 17:00:32 UTC; windows", "RemoteType": "github", "RemoteUsername": "dfe-analytical-services", "RemoteRepo": "dfeR", @@ -1382,7 +1439,7 @@ "Language": "en-US", "Author": "Rich Bielby [aut, cre] (),\n Charlotte Foster [aut],\n Cam Race [aut]", "Maintainer": "Rich Bielby ", - "Built": "R 4.4.1; ; 2024-10-01 16:34:24 UTC; windows", + "Built": "R 4.4.1; ; 2024-10-02 10:37:33 UTC; windows", "RemoteType": "github", "RemoteHost": "api.github.com", "RemoteUsername": "dfe-analytical-services", @@ -1423,7 +1480,14 @@ "Repository": "RSPM", "Date/Publication": "2021-10-05 07:10:17 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:50:36 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "diffobj", + "RemoteRef": "diffobj", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.3.5" } }, "digest": { @@ -1451,14 +1515,7 @@ "Repository": "RSPM", "Date/Publication": "2024-08-19 14:10:07 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-08-20 04:36:33 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "digest", - "RemoteRef": "digest", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.6.37" + "Archs": "x64" } }, "dplyr": { @@ -1490,7 +1547,14 @@ "Repository": "RSPM", "Date/Publication": "2023-11-17 16:50:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:33:28 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "dplyr", + "RemoteRef": "dplyr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.1.4" } }, "e1071": { @@ -1514,14 +1578,7 @@ "Date/Publication": "2024-09-16 09:53:34 UTC", "Encoding": "UTF-8", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-17 04:32:53 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "e1071", - "RemoteRef": "e1071", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.7-16" + "Archs": "x64" } }, "emoji": { @@ -1547,16 +1604,9 @@ "Packaged": "2022-11-02 23:56:26 UTC; emilhvitfeldt", "Author": "Emil Hvitfeldt [aut, cre] (),\n Hadley Wickham [ctb] (Data parsing code from hadley/emo),\n Romain François [ctb] (Data parsing code from hadley/emo)", "Maintainer": "Emil Hvitfeldt ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-11-03 00:30:14 UTC", - "Built": "R 4.4.1; ; 2024-08-02 01:59:30 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "emoji", - "RemoteRef": "emoji", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "15.0" + "Built": "R 4.4.0; ; 2024-04-25 20:29:34 UTC; windows" } }, "evaluate": { @@ -1584,14 +1634,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-09-17 22:10:07 UTC", - "Built": "R 4.4.0; ; 2024-09-18 04:33:08 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "evaluate", - "RemoteRef": "evaluate", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.0.0" + "Built": "R 4.4.0; ; 2024-09-18 04:33:08 UTC; windows" } }, "fansi": { @@ -1620,7 +1663,14 @@ "Repository": "RSPM", "Date/Publication": "2023-12-08 03:30:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:43:50 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "fansi", + "RemoteRef": "fansi", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.0.6" } }, "farver": { @@ -1647,7 +1697,14 @@ "Repository": "RSPM", "Date/Publication": "2024-05-13 09:33:09 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-14 05:09:19 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "farver", + "RemoteRef": "farver", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.1.2" } }, "fastmap": { @@ -1672,7 +1729,14 @@ "Repository": "RSPM", "Date/Publication": "2024-05-15 09:00:07 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-16 04:50:06 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "fastmap", + "RemoteRef": "fastmap", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.2.0" } }, "fontawesome": { @@ -1701,7 +1765,14 @@ "Maintainer": "Richard Iannone ", "Repository": "RSPM", "Date/Publication": "2023-08-19 04:52:40 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:24:42 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:24:42 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "fontawesome", + "RemoteRef": "fontawesome", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.5.2" } }, "forcats": { @@ -1729,13 +1800,13 @@ "Packaged": "2023-01-27 14:11:11 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre],\n RStudio [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-01-29 22:20:02 UTC", - "Built": "R 4.4.1; ; 2024-07-09 02:00:43 UTC; windows", + "Built": "R 4.4.0; ; 2024-04-25 20:26:01 UTC; windows", "RemoteType": "standard", "RemotePkgRef": "forcats", "RemoteRef": "forcats", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "1.0.0" @@ -1772,7 +1843,14 @@ "Repository": "RSPM", "Date/Publication": "2024-04-25 12:50:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-26 18:46:59 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "fs", + "RemoteRef": "fs", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.6.4" } }, "generics": { @@ -1800,7 +1878,14 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2022-07-05 19:40:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 19:40:35 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:40:35 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "generics", + "RemoteRef": "generics", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.1.3" } }, "gert": { @@ -1830,14 +1915,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-20 04:20:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-21 05:05:48 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "gert", - "RemoteRef": "gert", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "2.1.2" + "Archs": "x64" } }, "ggfittext": { @@ -1906,7 +1984,14 @@ "Repository": "RSPM", "Date/Publication": "2024-05-17 12:10:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 08:44:00 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "ggiraph", + "RemoteRef": "ggiraph", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.8.10" } }, "ggplot2": { @@ -1938,7 +2023,14 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2024-04-23 08:00:08 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:36:15 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:36:15 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "ggplot2", + "RemoteRef": "ggplot2", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "3.5.1" } }, "gh": { @@ -1968,7 +2060,14 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-28 16:40:07 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:41:26 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:41:26 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "gh", + "RemoteRef": "gh", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.4.1" } }, "git2r": { @@ -1996,10 +2095,17 @@ "Encoding": "UTF-8", "RoxygenNote": "7.2.3", "Packaged": "2023-11-26 16:10:10 UTC; stefan", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-11-26 16:50:05 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-06-25 00:34:23 UTC; windows", - "Archs": "x64" + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:34:38 UTC; windows", + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "git2r", + "RemoteRef": "git2r", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.33.0" } }, "gitcreds": { @@ -2028,10 +2134,17 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2022-09-08 10:42:55 UTC", - "Built": "R 4.4.0; ; 2024-04-25 19:47:15 UTC; windows" - } - }, - "globals": { + "Built": "R 4.4.0; ; 2024-04-25 19:47:15 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "gitcreds", + "RemoteRef": "gitcreds", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.1.2" + } + }, + "globals": { "Source": "CRAN", "Repository": "https://packagemanager.posit.co/cran/latest", "description": { @@ -2055,7 +2168,14 @@ "Repository": "RSPM", "Date/Publication": "2024-03-08 00:00:03 UTC", "Encoding": "UTF-8", - "Built": "R 4.4.0; ; 2024-04-25 19:50:13 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:50:13 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "globals", + "RemoteRef": "globals", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.16.3" } }, "glue": { @@ -2086,7 +2206,14 @@ "Repository": "RSPM", "Date/Publication": "2024-01-09 23:13:08 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:52:29 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "glue", + "RemoteRef": "glue", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.7.0" } }, "gridtext": { @@ -2152,7 +2279,14 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2024-04-22 20:40:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:09:03 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:09:03 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "gtable", + "RemoteRef": "gtable", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.3.5" } }, "highr": { @@ -2180,7 +2314,14 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2024-05-26 20:00:03 UTC", - "Built": "R 4.4.0; ; 2024-05-27 04:10:12 UTC; windows" + "Built": "R 4.4.0; ; 2024-05-27 04:10:12 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "highr", + "RemoteRef": "highr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.11" } }, "htmltools": { @@ -2212,7 +2353,14 @@ "Repository": "RSPM", "Date/Publication": "2024-04-04 05:03:00 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:21:37 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "htmltools", + "RemoteRef": "htmltools", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.5.8.1" } }, "htmlwidgets": { @@ -2240,7 +2388,14 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2023-12-06 06:00:06 UTC", - "Built": "R 4.4.0; ; 2024-04-25 23:02:02 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 23:02:02 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "htmlwidgets", + "RemoteRef": "htmlwidgets", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.6.4" } }, "httpuv": { @@ -2271,7 +2426,14 @@ "Repository": "RSPM", "Date/Publication": "2024-03-26 05:50:06 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 09:02:06 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "httpuv", + "RemoteRef": "httpuv", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.6.15" } }, "httr": { @@ -2299,7 +2461,14 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-08-15 09:00:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:15:29 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:15:29 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "httr", + "RemoteRef": "httr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.4.7" } }, "httr2": { @@ -2330,14 +2499,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-09-13 22:00:02 UTC", - "Built": "R 4.4.0; ; 2024-09-14 04:27:02 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "httr2", - "RemoteRef": "httr2", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.0.4" + "Built": "R 4.4.0; ; 2024-09-14 04:27:02 UTC; windows" } }, "ini": { @@ -2363,7 +2525,14 @@ "Repository": "RSPM", "Date/Publication": "2018-05-20 03:26:39 UTC", "Encoding": "UTF-8", - "Built": "R 4.4.0; ; 2024-04-25 19:47:37 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:47:37 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "ini", + "RemoteRef": "ini", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.3.1" } }, "isoband": { @@ -2393,7 +2562,14 @@ "Repository": "RSPM", "Date/Publication": "2022-12-20 10:00:13 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:44:55 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "isoband", + "RemoteRef": "isoband", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.2.7" } }, "jpeg": { @@ -2448,7 +2624,14 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2021-04-26 17:10:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:49:43 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:49:43 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "jquerylib", + "RemoteRef": "jquerylib", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.1.4" } }, "jsonlite": { @@ -2475,14 +2658,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-20 08:40:14 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-21 04:50:29 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "jsonlite", - "RemoteRef": "jsonlite", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.8.9" + "Archs": "x64" } }, "knitr": { @@ -2512,7 +2688,14 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2024-07-07 14:00:01 UTC", - "Built": "R 4.4.0; ; 2024-07-08 04:44:53 UTC; windows" + "Built": "R 4.4.0; ; 2024-07-08 04:44:53 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "knitr", + "RemoteRef": "knitr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.48" } }, "labeling": { @@ -2535,7 +2718,14 @@ "Repository": "RSPM", "Date/Publication": "2023-08-29 22:20:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.4.0; ; 2024-04-25 19:45:42 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:45:42 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "labeling", + "RemoteRef": "labeling", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.4.3" } }, "later": { @@ -2564,7 +2754,14 @@ "Repository": "RSPM", "Date/Publication": "2023-12-06 09:10:05 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 08:40:57 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "later", + "RemoteRef": "later", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.3.2" } }, "lattice": { @@ -2620,7 +2817,14 @@ "Date/Publication": "2019-03-15 17:50:07 UTC", "Encoding": "UTF-8", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:45:08 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "lazyeval", + "RemoteRef": "lazyeval", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.2.2" } }, "leaflet": { @@ -2648,16 +2852,9 @@ "Packaged": "2024-03-25 22:40:52 UTC; cpsievert", "Author": "Joe Cheng [aut, cre],\n Barret Schloerke [aut] (),\n Bhaskar Karambelkar [aut],\n Yihui Xie [aut],\n Hadley Wickham [ctb],\n Kenton Russell [ctb],\n Kent Johnson [ctb],\n Vladimir Agafonkin [ctb, cph] (Leaflet library),\n CloudMade [cph] (Leaflet library),\n Leaflet contributors [ctb] (Leaflet library),\n Brandon Copeland [ctb, cph] (leaflet-measure plugin),\n Joerg Dietrich [ctb, cph] (Leaflet.Terminator plugin),\n Benjamin Becquet [ctb, cph] (Leaflet.MagnifyingGlass plugin),\n Norkart AS [ctb, cph] (Leaflet.MiniMap plugin),\n L. Voogdt [ctb, cph] (Leaflet.awesome-markers plugin),\n Daniel Montague [ctb, cph] (Leaflet.EasyButton plugin),\n Kartena AB [ctb, cph] (Proj4Leaflet plugin),\n Robert Kajic [ctb, cph] (leaflet-locationfilter plugin),\n Mapbox [ctb, cph] (leaflet-omnivore plugin),\n Michael Bostock [ctb, cph] (topojson),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Joe Cheng ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-03-26 19:10:06 UTC", - "Built": "R 4.4.1; ; 2024-07-09 02:00:51 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "leaflet", - "RemoteRef": "leaflet", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "2.2.2" + "Built": "R 4.4.0; ; 2024-05-15 02:22:20 UTC; windows" } }, "leaflet.providers": { @@ -2686,9 +2883,9 @@ "Packaged": "2023-10-17 12:24:21 UTC; garrick", "Author": "Leslie Huang [aut],\n Barret Schloerke [ctb, cre] (),\n Leaflet Providers contributors [ctb, cph] (Leaflet Providers plugin),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Barret Schloerke ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-10-17 17:10:02 UTC", - "Built": "R 4.4.1; ; 2024-06-25 01:13:53 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:47:16 UTC; windows" } }, "lifecycle": { @@ -2717,7 +2914,14 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2023-11-07 10:10:10 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:06:30 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:06:30 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "lifecycle", + "RemoteRef": "lifecycle", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.0.4" } }, "lintr": { @@ -2749,7 +2953,14 @@ "Maintainer": "Michael Chirico ", "Repository": "RSPM", "Date/Publication": "2024-03-25 06:10:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 22:01:43 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 22:01:43 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "lintr", + "RemoteRef": "lintr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "3.1.2" } }, "magrittr": { @@ -2779,7 +2990,14 @@ "Repository": "RSPM", "Date/Publication": "2022-03-30 07:30:09 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:43:08 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "magrittr", + "RemoteRef": "magrittr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.0.3" } }, "markdown": { @@ -2838,7 +3056,14 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2021-11-26 16:11:10 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:09:40 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:09:40 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "memoise", + "RemoteRef": "memoise", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.0.1" } }, "metathis": { @@ -2864,7 +3089,14 @@ "Maintainer": "Garrick Aden-Buie ", "Repository": "RSPM", "Date/Publication": "2023-07-11 12:00:09 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:15:40 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:15:40 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "metathis", + "RemoteRef": "metathis", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.1.4" } }, "mgcv": { @@ -2915,7 +3147,14 @@ "Repository": "RSPM", "Date/Publication": "2021-09-28 05:00:05 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:47:07 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "mime", + "RemoteRef": "mime", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.12" } }, "munsell": { @@ -2940,7 +3179,14 @@ "Packaged": "2024-04-01 20:42:09 UTC; charlottewickham", "Repository": "RSPM", "Date/Publication": "2024-04-01 23:40:10 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:02:30 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:02:30 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "munsell", + "RemoteRef": "munsell", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.5.1" } }, "nlme": { @@ -2971,14 +3217,7 @@ "Repository": "RSPM", "Date/Publication": "2024-08-14 06:36:33 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-08-15 04:17:34 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "nlme", - "RemoteRef": "nlme", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "3.1-166" + "Archs": "x64" } }, "openssl": { @@ -3007,14 +3246,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-20 08:40:05 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-21 04:55:16 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "openssl", - "RemoteRef": "openssl", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "2.2.2" + "Archs": "x64" } }, "openxlsx": { @@ -3048,14 +3280,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-20 12:50:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-21 04:35:46 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "openxlsx", - "RemoteRef": "openxlsx", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "4.2.7.1" + "Archs": "x64" } }, "packrat": { @@ -3123,7 +3348,14 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-03-22 08:10:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:17:40 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:17:40 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "pillar", + "RemoteRef": "pillar", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.9.0" } }, "pingr": { @@ -3152,7 +3384,14 @@ "Repository": "RSPM", "Date/Publication": "2023-12-10 14:10:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 23:04:28 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "pingr", + "RemoteRef": "pingr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.0.3" } }, "pkgbuild": { @@ -3180,7 +3419,14 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-17 14:40:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:06:02 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:06:02 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "pkgbuild", + "RemoteRef": "pkgbuild", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.4.4" } }, "pkgconfig": { @@ -3204,7 +3450,14 @@ "Packaged": "2019-09-22 08:42:40 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2019-09-22 09:20:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:11:40 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:11:40 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "pkgconfig", + "RemoteRef": "pkgconfig", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.0.3" } }, "pkgload": { @@ -3234,7 +3487,14 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-06-28 11:30:02 UTC", - "Built": "R 4.4.0; ; 2024-06-29 05:14:04 UTC; windows" + "Built": "R 4.4.0; ; 2024-06-29 05:14:04 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "pkgload", + "RemoteRef": "pkgload", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.4.0" } }, "plotly": { @@ -3260,13 +3520,13 @@ "Packaged": "2024-01-13 20:51:33 UTC; cpsievert", "Author": "Carson Sievert [aut, cre] (),\n Chris Parmer [aut],\n Toby Hocking [aut],\n Scott Chamberlain [aut],\n Karthik Ram [aut],\n Marianne Corvellec [aut] (),\n Pedro Despouy [aut],\n Salim Brüggemann [ctb] (),\n Plotly Technologies Inc. [cph]", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-01-13 22:40:02 UTC", - "Built": "R 4.4.1; ; 2024-07-09 02:34:32 UTC; windows", + "Built": "R 4.4.0; ; 2024-04-25 23:21:33 UTC; windows", "RemoteType": "standard", "RemotePkgRef": "plotly", "RemoteRef": "plotly", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "4.10.4" @@ -3288,10 +3548,18 @@ "URL": "http://www.rforge.net/png/", "NeedsCompilation": "yes", "Packaged": "2022-11-29 09:42:31 UTC; rforge", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-11-29 11:12:53 UTC", - "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-23 00:24:52 UTC; windows", - "Archs": "x64" + "Encoding": "UTF-8", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:09:01 UTC; windows", + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "png", + "RemoteRef": "png", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.1-8" } }, "praise": { @@ -3315,7 +3583,14 @@ "Repository": "RSPM", "Date/Publication": "2015-08-11 08:22:28", "Encoding": "UTF-8", - "Built": "R 4.4.0; ; 2024-04-25 19:45:23 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:45:23 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "praise", + "RemoteRef": "praise", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.0.0" } }, "processx": { @@ -3344,7 +3619,14 @@ "Repository": "RSPM", "Date/Publication": "2024-03-16 14:50:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:42:07 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "processx", + "RemoteRef": "processx", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "3.8.4" } }, "promises": { @@ -3375,7 +3657,14 @@ "Repository": "RSPM", "Date/Publication": "2024-04-05 15:00:06 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 09:00:54 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "promises", + "RemoteRef": "promises", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.3.0" } }, "proxy": { @@ -3397,9 +3686,10 @@ "Packaged": "2022-06-08 21:36:02 UTC; meyer", "Author": "David Meyer [aut, cre],\n Christian Buchta [aut]", "Maintainer": "David Meyer ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-06-09 06:15:32 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-06-25 00:33:15 UTC; windows", + "Encoding": "UTF-8", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 00:07:52 UTC; windows", "Archs": "x64" } }, @@ -3430,14 +3720,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-12 17:40:12 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-13 04:23:45 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "ps", - "RemoteRef": "ps", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.8.0" + "Archs": "x64" } }, "purrr": { @@ -3469,7 +3752,14 @@ "Repository": "RSPM", "Date/Publication": "2023-08-10 08:20:07 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-06-22 04:55:20 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "purrr", + "RemoteRef": "purrr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.0.2" } }, "rappdirs": { @@ -3498,7 +3788,14 @@ "Repository": "RSPM", "Date/Publication": "2021-01-31 05:40:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:39:40 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "rappdirs", + "RemoteRef": "rappdirs", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.3.3" } }, "raster": { @@ -3523,17 +3820,11 @@ "Packaged": "2023-10-12 15:29:22 UTC; rhijm", "Author": "Robert J. Hijmans [cre, aut] (),\n Jacob van Etten [ctb],\n Michael Sumner [ctb],\n Joe Cheng [ctb],\n Dan Baston [ctb],\n Andrew Bevan [ctb],\n Roger Bivand [ctb],\n Lorenzo Busetto [ctb],\n Mort Canty [ctb],\n Ben Fasoli [ctb],\n David Forrest [ctb],\n Aniruddha Ghosh [ctb],\n Duncan Golicher [ctb],\n Josh Gray [ctb],\n Jonathan A. Greenberg [ctb],\n Paul Hiemstra [ctb],\n Kassel Hingee [ctb],\n Alex Ilich [ctb],\n Institute for Mathematics Applied Geosciences [cph],\n Charles Karney [ctb],\n Matteo Mattiuzzi [ctb],\n Steven Mosher [ctb],\n Babak Naimi [ctb],\n Jakub Nowosad [ctb],\n Edzer Pebesma [ctb],\n Oscar Perpinan Lamigueiro [ctb],\n Etienne B. Racine [ctb],\n Barry Rowlingson [ctb],\n Ashton Shortridge [ctb],\n Bill Venables [ctb],\n Rafael Wueest [ctb]", "Maintainer": "Robert J. Hijmans ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-10-14 13:40:12 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-07-09 01:15:27 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "raster", - "RemoteRef": "raster", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "3.6-26" + "Encoding": "UTF-8", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 10:59:19 UTC; windows", + "Archs": "x64" } }, "reactR": { @@ -3561,14 +3852,7 @@ "Author": "Facebook Inc [aut, cph] (React library in lib, https://reactjs.org/;\n see AUTHORS for full list of contributors),\n Michel Weststrate [aut, cph] (mobx library in lib,\n https://github.com/mobxjs),\n Kent Russell [aut, cre] (R interface),\n Alan Dipert [aut] (R interface),\n Greg Lin [aut] (R interface)", "Repository": "RSPM", "Date/Publication": "2024-09-14 13:50:02 UTC", - "Built": "R 4.4.0; ; 2024-09-15 04:22:01 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "reactR", - "RemoteRef": "reactR", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.6.1" + "Built": "R 4.4.0; ; 2024-09-15 04:22:01 UTC; windows" } }, "reactable": { @@ -3629,7 +3913,14 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2020-05-01 06:50:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:23:49 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:23:49 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "rematch2", + "RemoteRef": "rematch2", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.1.2" } }, "remotes": { @@ -3659,7 +3950,14 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-17 13:20:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 21:56:59 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 21:56:59 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "remotes", + "RemoteRef": "remotes", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.5.0" } }, "renv": { @@ -3690,14 +3988,7 @@ "Maintainer": "Kevin Ushey ", "Repository": "RSPM", "Date/Publication": "2024-09-23 22:20:02 UTC", - "Built": "R 4.4.0; ; 2024-09-24 04:25:57 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "renv", - "RemoteRef": "renv", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.0.9" + "Built": "R 4.4.0; ; 2024-09-24 04:25:57 UTC; windows" } }, "rex": { @@ -3725,7 +4016,14 @@ "Maintainer": "Kevin Ushey ", "Repository": "RSPM", "Date/Publication": "2021-11-26 16:11:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 19:07:31 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:07:31 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "rex", + "RemoteRef": "rex", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.2.1" } }, "rlang": { @@ -3757,7 +4055,14 @@ "Repository": "RSPM", "Date/Publication": "2024-06-04 09:45:03 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-06-05 11:29:11 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "rlang", + "RemoteRef": "rlang", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.1.4" } }, "rmarkdown": { @@ -3788,14 +4093,7 @@ "Author": "JJ Allaire [aut],\n Yihui Xie [aut, cre] (),\n Christophe Dervieux [aut] (),\n Jonathan McPherson [aut],\n Javier Luraschi [aut],\n Kevin Ushey [aut],\n Aron Atkins [aut],\n Hadley Wickham [aut],\n Joe Cheng [aut],\n Winston Chang [aut],\n Richard Iannone [aut] (),\n Andrew Dunning [ctb] (),\n Atsushi Yasumoto [ctb, cph] (,\n Number sections Lua filter),\n Barret Schloerke [ctb],\n Carson Sievert [ctb] (),\n Devon Ryan [ctb] (),\n Frederik Aust [ctb] (),\n Jeff Allen [ctb],\n JooYoung Seo [ctb] (),\n Malcolm Barrett [ctb],\n Rob Hyndman [ctb],\n Romain Lesur [ctb],\n Roy Storey [ctb],\n Ruben Arslan [ctb],\n Sergio Oller [ctb],\n Posit Software, PBC [cph, fnd],\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/rmd/h/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Alexander Farkas [ctb, cph] (html5shiv library),\n Scott Jehl [ctb, cph] (Respond.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n Greg Franko [ctb, cph] (tocify library),\n John MacFarlane [ctb, cph] (Pandoc templates),\n Google, Inc. [ctb, cph] (ioslides library),\n Dave Raggett [ctb] (slidy library),\n W3C [cph] (slidy library),\n Dave Gandy [ctb, cph] (Font-Awesome),\n Ben Sperry [ctb] (Ionicons),\n Drifty [cph] (Ionicons),\n Aidan Lister [ctb, cph] (jQuery StickyTabs),\n Benct Philip Jonsson [ctb, cph] (pagebreak Lua filter),\n Albert Krewinkel [ctb, cph] (pagebreak Lua filter)", "Repository": "RSPM", "Date/Publication": "2024-08-17 04:50:13 UTC", - "Built": "R 4.4.0; ; 2024-08-18 04:58:06 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "rmarkdown", - "RemoteRef": "rmarkdown", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "2.28" + "Built": "R 4.4.0; ; 2024-08-18 04:58:06 UTC; windows" } }, "rprojroot": { @@ -3822,7 +4120,14 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-11-05 10:20:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 19:45:07 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:45:07 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "rprojroot", + "RemoteRef": "rprojroot", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.0.4" } }, "rsconnect": { @@ -3885,7 +4190,14 @@ "Author": "Kevin Ushey [aut, cre],\n JJ Allaire [aut],\n Hadley Wickham [aut],\n Gary Ritchie [aut],\n RStudio [cph]", "Repository": "RSPM", "Date/Publication": "2024-03-24 11:30:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 19:46:37 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:46:37 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "rstudioapi", + "RemoteRef": "rstudioapi", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.16.0" } }, "rvest": { @@ -3914,13 +4226,13 @@ "Packaged": "2024-02-12 17:13:26 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-02-12 20:10:02 UTC", - "Built": "R 4.4.1; ; 2024-06-25 02:06:31 UTC; windows", + "Built": "R 4.4.0; ; 2024-04-25 21:24:30 UTC; windows", "RemoteType": "standard", "RemotePkgRef": "rvest", "RemoteRef": "rvest", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "1.0.4" @@ -3951,17 +4263,10 @@ "Packaged": "2024-07-17 06:46:09 UTC; edzer", "Author": "Dewey Dunnington [aut] (),\n Edzer Pebesma [aut, cre] (),\n Ege Rubak [aut],\n Jeroen Ooms [ctb] (configure script),\n Google, Inc. [cph] (Original s2geometry.io source code)", "Maintainer": "Edzer Pebesma ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-17 13:50:02 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-07-18 08:03:45 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "s2", - "RemoteRef": "s2", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "source", - "RemoteSha": "1.1.7" + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 09:20:42 UTC; windows", + "Archs": "x64" } }, "sass": { @@ -3991,7 +4296,14 @@ "Repository": "RSPM", "Date/Publication": "2024-03-15 22:30:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:26:56 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "sass", + "RemoteRef": "sass", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.4.9" } }, "scales": { @@ -4020,7 +4332,14 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2023-11-28 09:10:06 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:09:32 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:09:32 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "scales", + "RemoteRef": "scales", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.3.0" } }, "selectr": { @@ -4044,13 +4363,14 @@ "Packaged": "2019-11-20 06:04:49 UTC; simon", "Author": "Simon Potter [aut, trl, cre],\n Simon Sapin [aut],\n Ian Bicking [aut]", "Maintainer": "Simon Potter ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2019-11-20 07:30:03 UTC", - "Built": "R 4.4.1; ; 2024-06-25 01:58:06 UTC; windows", + "Encoding": "UTF-8", + "Built": "R 4.4.0; ; 2024-04-25 20:24:13 UTC; windows", "RemoteType": "standard", "RemotePkgRef": "selectr", "RemoteRef": "selectr", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "0.4-2" @@ -4086,14 +4406,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-06 19:20:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-07 12:23:18 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "sf", - "RemoteRef": "sf", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.0-17" + "Archs": "x64" } }, "sfarrow": { @@ -4120,14 +4433,7 @@ "Maintainer": "Chris Jochem ", "Repository": "RSPM", "Date/Publication": "2021-10-27 16:30:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 22:11:25 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "sfarrow", - "RemoteRef": "sfarrow", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.4.1" + "Built": "R 4.4.0; ; 2024-04-25 22:11:25 UTC; windows" } }, "shades": { @@ -4188,16 +4494,9 @@ "Packaged": "2024-07-31 17:44:44 UTC; cpsievert", "Author": "Winston Chang [aut, cre] (),\n Joe Cheng [aut],\n JJ Allaire [aut],\n Carson Sievert [aut] (),\n Barret Schloerke [aut] (),\n Yihui Xie [aut],\n Jeff Allen [aut],\n Jonathan McPherson [aut],\n Alan Dipert [aut],\n Barbara Borges [aut],\n Posit Software, PBC [cph, fnd],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/www/shared/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin),\n Victor Tsaran [ctb] (Bootstrap accessibility plugin),\n Dennis Lembree [ctb] (Bootstrap accessibility plugin),\n Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin),\n Cathy O'Connor [ctb] (Bootstrap accessibility plugin),\n PayPal, Inc [cph] (Bootstrap accessibility plugin),\n Stefan Petre [ctb, cph] (Bootstrap-datepicker library),\n Andrew Rowls [ctb, cph] (Bootstrap-datepicker library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library),\n SpryMedia Limited [ctb, cph] (DataTables library),\n John Fraser [ctb, cph] (showdown.js library),\n John Gruber [ctb, cph] (showdown.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n R Core Team [ctb, cph] (tar implementation from R)", "Maintainer": "Winston Chang ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-08-01 10:50:02 UTC", - "Built": "R 4.4.1; ; 2024-08-01 23:50:46 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "shiny", - "RemoteRef": "shiny", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.9.1" + "Built": "R 4.4.0; ; 2024-08-02 04:38:07 UTC; windows" } }, "shinyGovstyle": { @@ -4223,14 +4522,7 @@ "Maintainer": "Ross Wyatt ", "Repository": "RSPM", "Date/Publication": "2024-09-12 14:40:02 UTC", - "Built": "R 4.4.0; ; 2024-09-13 05:26:25 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "shinyGovstyle", - "RemoteRef": "shinyGovstyle", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.1.0" + "Built": "R 4.4.0; ; 2024-09-13 05:26:25 UTC; windows" } }, "shinyjs": { @@ -4257,7 +4549,14 @@ "Maintainer": "Dean Attali ", "Repository": "RSPM", "Date/Publication": "2021-12-23 10:10:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 21:01:34 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 21:01:34 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "shinyjs", + "RemoteRef": "shinyjs", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.1.0" } }, "shinytest2": { @@ -4291,7 +4590,14 @@ "Repository": "RSPM", "Date/Publication": "2024-04-28 21:40:03 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-29 22:53:20 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "shinytest2", + "RemoteRef": "shinytest2", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.3.2" } }, "shinytitle": { @@ -4317,7 +4623,14 @@ "Maintainer": "Ashley Baldry ", "Repository": "RSPM", "Date/Publication": "2021-06-16 10:40:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 21:25:16 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 21:25:16 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "shinytitle", + "RemoteRef": "shinytitle", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.1.0" } }, "sourcetools": { @@ -4342,7 +4655,14 @@ "Repository": "RSPM", "Date/Publication": "2023-02-01 10:10:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:48:01 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "sourcetools", + "RemoteRef": "sourcetools", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.1.7-1" } }, "sp": { @@ -4366,17 +4686,11 @@ "Packaged": "2024-04-30 10:25:06 UTC; edzer", "Author": "Edzer Pebesma [aut, cre],\n Roger Bivand [aut],\n Barry Rowlingson [ctb],\n Virgilio Gomez-Rubio [ctb],\n Robert Hijmans [ctb],\n Michael Sumner [ctb],\n Don MacQueen [ctb],\n Jim Lemon [ctb],\n Finn Lindgren [ctb],\n Josh O'Brien [ctb],\n Joseph O'Rourke [ctb],\n Patrick Hausmann [ctb]", "Maintainer": "Edzer Pebesma ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-04-30 14:20:03 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-06-25 00:33:36 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "sp", - "RemoteRef": "sp", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "2.1-4" + "Encoding": "UTF-8", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-01 04:33:28 UTC; windows", + "Archs": "x64" } }, "stringi": { @@ -4406,7 +4720,14 @@ "Repository": "RSPM", "Date/Publication": "2024-05-06 15:00:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-07 04:34:26 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "stringi", + "RemoteRef": "stringi", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.8.4" } }, "stringr": { @@ -4436,7 +4757,14 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-14 23:10:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:18:44 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:18:44 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "stringr", + "RemoteRef": "stringr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.5.1" } }, "styler": { @@ -4467,7 +4795,14 @@ "Maintainer": "Lorenz Walthert ", "Repository": "RSPM", "Date/Publication": "2024-04-07 23:00:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:32:42 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:32:42 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "styler", + "RemoteRef": "styler", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.10.3" } }, "sys": { @@ -4494,7 +4829,14 @@ "Repository": "RSPM", "Date/Publication": "2023-05-23 07:50:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:03:55 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "sys", + "RemoteRef": "sys", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "3.4.2" } }, "systemfonts": { @@ -4526,7 +4868,14 @@ "Repository": "RSPM", "Date/Publication": "2024-05-15 11:10:03 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-16 04:36:21 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "systemfonts", + "RemoteRef": "systemfonts", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.1.0" } }, "terra": { @@ -4555,17 +4904,10 @@ "NeedsCompilation": "yes", "Packaged": "2024-05-22 10:11:48 UTC; rhijm", "Author": "Robert J. Hijmans [cre, aut] (),\n Roger Bivand [ctb] (),\n Krzysztof Dyba [ctb] (),\n Edzer Pebesma [ctb] (),\n Michael D. Sumner [ctb]", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-05-22 14:30:03 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-06-25 01:13:26 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "terra", - "RemoteRef": "terra", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "1.7-78" + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 09:40:42 UTC; windows", + "Archs": "x64" } }, "testthat": { @@ -4597,7 +4939,14 @@ "Repository": "RSPM", "Date/Publication": "2024-04-14 05:24:52", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:28:34 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "testthat", + "RemoteRef": "testthat", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "3.2.1.1" } }, "tibble": { @@ -4632,7 +4981,14 @@ "Repository": "RSPM", "Date/Publication": "2023-03-20 06:30:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:22:42 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "tibble", + "RemoteRef": "tibble", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "3.2.1" } }, "tidyr": { @@ -4661,10 +5017,17 @@ "Packaged": "2024-01-23 14:27:23 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre],\n Davis Vaughan [aut],\n Maximilian Girlich [aut],\n Kevin Ushey [ctb],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-01-24 14:50:09 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-06-25 02:25:04 UTC; windows", - "Archs": "x64" + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:35:23 UTC; windows", + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "tidyr", + "RemoteRef": "tidyr", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.3.1" } }, "tidyselect": { @@ -4694,7 +5057,14 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-03-11 14:10:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 20:19:04 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 20:19:04 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "tidyselect", + "RemoteRef": "tidyselect", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.2.1" } }, "tinytex": { @@ -4720,14 +5090,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2024-09-15 18:00:02 UTC", - "Built": "R 4.4.0; ; 2024-09-16 04:25:53 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "tinytex", - "RemoteRef": "tinytex", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.53" + "Built": "R 4.4.0; ; 2024-09-16 04:25:53 UTC; windows" } }, "treemapify": { @@ -4791,17 +5154,10 @@ "Packaged": "2023-11-28 13:38:39 UTC; edzer", "Author": "Edzer Pebesma [aut, cre] (),\n Thomas Mailund [aut],\n Tomasz Kalinowski [aut],\n James Hiebert [ctb],\n Iñaki Ucar [aut] (),\n Thomas Lin Pedersen [ctb]", "Maintainer": "Edzer Pebesma ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-11-28 16:10:02 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-06-25 01:13:24 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "units", - "RemoteRef": "units", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.8-5" + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-18 08:47:20 UTC; windows", + "Archs": "x64" } }, "usethis": { @@ -4867,7 +5223,14 @@ "Repository": "RSPM", "Date/Publication": "2023-10-22 21:50:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:46:43 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "utf8", + "RemoteRef": "utf8", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.2.4" } }, "uuid": { @@ -4929,7 +5292,14 @@ "Repository": "RSPM", "Date/Publication": "2023-12-01 23:50:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:13:49 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "vctrs", + "RemoteRef": "vctrs", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.6.5" } }, "viridisLite": { @@ -4956,7 +5326,14 @@ "Author": "Simon Garnier [aut, cre],\n Noam Ross [ctb, cph],\n Bob Rudis [ctb, cph],\n Marco Sciaini [ctb, cph],\n Antônio Pedro Camargo [ctb, cph],\n Cédric Scherer [ctb, cph]", "Repository": "RSPM", "Date/Publication": "2023-05-02 23:50:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 19:47:00 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:47:00 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "viridisLite", + "RemoteRef": "viridisLite", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.4.2" } }, "waldo": { @@ -4984,14 +5361,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-08-23 22:00:02 UTC", - "Built": "R 4.4.0; ; 2024-08-24 04:52:50 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "waldo", - "RemoteRef": "waldo", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.5.3" + "Built": "R 4.4.0; ; 2024-08-24 04:52:50 UTC; windows" } }, "websocket": { @@ -5017,14 +5387,14 @@ "Packaged": "2024-07-22 17:16:18 UTC; winston", "Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n Alan Dipert [aut],\n Barbara Borges [aut],\n Posit, PBC [cph],\n Peter Thorson [ctb, cph] (WebSocket++ library),\n René Nyffenegger [ctb, cph] (Base 64 library),\n Micael Hildenborg [ctb, cph] (SHA1 library),\n Aladdin Enterprises [cph] (MD5 library),\n Bjoern Hoehrmann [ctb, cph] (UTF8 Validation library)", "Maintainer": "Winston Chang ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-22 22:20:01 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-08-02 01:29:46 UTC; windows", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-23 04:27:14 UTC; windows", "Archs": "x64", "RemoteType": "standard", "RemotePkgRef": "websocket", "RemoteRef": "websocket", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "1.4.2" @@ -5051,7 +5421,14 @@ "Repository": "RSPM", "Date/Publication": "2022-12-05 15:33:50 UTC", "Encoding": "UTF-8", - "Built": "R 4.4.0; ; 2024-04-25 19:53:17 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:53:17 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "whisker", + "RemoteRef": "whisker", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "0.4.1" } }, "withr": { @@ -5079,16 +5456,9 @@ "Packaged": "2024-07-31 08:24:58 UTC; lionel", "Author": "Jim Hester [aut],\n Lionel Henry [aut, cre],\n Kirill Müller [aut],\n Kevin Ushey [aut],\n Hadley Wickham [aut],\n Winston Chang [aut],\n Jennifer Bryan [ctb],\n Richard Cotton [ctb],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Lionel Henry ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-31 11:30:02 UTC", - "Built": "R 4.4.1; ; 2024-08-01 23:50:39 UTC; windows", - "RemoteType": "standard", - "RemotePkgRef": "withr", - "RemoteRef": "withr", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "3.0.1" + "Built": "R 4.4.0; ; 2024-08-01 04:33:44 UTC; windows" } }, "wk": { @@ -5116,14 +5486,7 @@ "Repository": "RSPM", "Date/Publication": "2024-09-06 15:20:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-09-07 12:04:59 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "wk", - "RemoteRef": "wk", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.9.3" + "Archs": "x64" } }, "xfun": { @@ -5152,14 +5515,7 @@ "Repository": "RSPM", "Date/Publication": "2024-08-17 04:00:03 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-08-18 04:47:57 UTC; windows", - "Archs": "x64", - "RemoteType": "standard", - "RemotePkgRef": "xfun", - "RemoteRef": "xfun", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "x86_64-w64-mingw32", - "RemoteSha": "0.47" + "Archs": "x64" } }, "xml2": { @@ -5191,7 +5547,14 @@ "Repository": "RSPM", "Date/Publication": "2023-12-04 16:30:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 20:10:22 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "xml2", + "RemoteRef": "xml2", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.3.6" } }, "xmlparsedata": { @@ -5216,7 +5579,14 @@ "Packaged": "2021-03-06 10:52:40 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2021-03-06 11:10:02 UTC", - "Built": "R 4.4.0; ; 2024-04-25 18:51:45 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 18:51:45 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "xmlparsedata", + "RemoteRef": "xmlparsedata", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.0.5" } }, "xtable": { @@ -5242,7 +5612,14 @@ "Author": "David B. Dahl [aut],\n David Scott [aut, cre],\n Charles Roosen [aut],\n Arni Magnusson [aut],\n Jonathan Swinton [aut],\n Ajay Shah [ctb],\n Arne Henningsen [ctb],\n Benno Puetz [ctb],\n Bernhard Pfaff [ctb],\n Claudio Agostinelli [ctb],\n Claudius Loehnert [ctb],\n David Mitchell [ctb],\n David Whiting [ctb],\n Fernando da Rosa [ctb],\n Guido Gay [ctb],\n Guido Schulz [ctb],\n Ian Fellows [ctb],\n Jeff Laake [ctb],\n John Walker [ctb],\n Jun Yan [ctb],\n Liviu Andronic [ctb],\n Markus Loecher [ctb],\n Martin Gubri [ctb],\n Matthieu Stigler [ctb],\n Robert Castelo [ctb],\n Seth Falcon [ctb],\n Stefan Edwards [ctb],\n Sven Garbade [ctb],\n Uwe Ligges [ctb]", "Date/Publication": "2019-04-21 12:20:03 UTC", "Encoding": "UTF-8", - "Built": "R 4.4.0; ; 2024-04-25 19:46:08 UTC; windows" + "Built": "R 4.4.0; ; 2024-04-25 19:46:08 UTC; windows", + "RemoteType": "standard", + "RemotePkgRef": "xtable", + "RemoteRef": "xtable", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "1.8-4" } }, "yaml": { @@ -5263,14 +5640,15 @@ "BugReports": "https://github.com/vubiostat/r-yaml/issues", "NeedsCompilation": "yes", "Packaged": "2024-07-22 15:44:18 UTC; garbetsp", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-26 15:10:02 UTC", - "Built": "R 4.4.1; x86_64-w64-mingw32; 2024-07-31 00:26:34 UTC; windows", + "Encoding": "UTF-8", + "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-07-27 04:42:17 UTC; windows", "Archs": "x64", "RemoteType": "standard", "RemotePkgRef": "yaml", "RemoteRef": "yaml", - "RemoteRepos": "https://cran.rstudio.com", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", "RemotePkgPlatform": "x86_64-w64-mingw32", "RemoteSha": "2.3.10" @@ -5300,7 +5678,14 @@ "Repository": "RSPM", "Date/Publication": "2024-01-27 10:00:02 UTC", "Built": "R 4.4.0; x86_64-w64-mingw32; 2024-04-25 19:40:03 UTC; windows", - "Archs": "x64" + "Archs": "x64", + "RemoteType": "standard", + "RemotePkgRef": "zip", + "RemoteRef": "zip", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "x86_64-w64-mingw32", + "RemoteSha": "2.3.1" } } }, @@ -5335,12 +5720,54 @@ ".lintr": { "checksum": "522774462b837ce20ada322ac0531ead" }, + ".RDataTmp1": { + "checksum": "713fa73b3ef1c6a2c7673b8fa40cd4b4" + }, + ".RDataTmp10": { + "checksum": "7f919c483c6fa8ce7c97194699cf9802" + }, + ".RDataTmp11": { + "checksum": "9f4636edddd5a30c11bf1fd42270be79" + }, + ".RDataTmp12": { + "checksum": "a5b75f3291fa766ae15081ee5f5592fc" + }, + ".RDataTmp2": { + "checksum": "735e0a649eba0b974e2f6df560385d64" + }, + ".RDataTmp3": { + "checksum": "5c2a4c05af3af05f22365129858020c0" + }, + ".RDataTmp4": { + "checksum": "b4c314ff5571e1a6f3c94f8b23089fd8" + }, + ".RDataTmp5": { + "checksum": "afd77efc660e797e716ce8c7d9585144" + }, + ".RDataTmp6": { + "checksum": "5046486e4a5fcde0e6e45589a0b0762a" + }, + ".RDataTmp7": { + "checksum": "705bc1bf322163e7cb8f79f94d74e89a" + }, + ".RDataTmp8": { + "checksum": "32471ff2313e1f4580f7dc87ea91d2a3" + }, + ".RDataTmp9": { + "checksum": "a775eb3b0bd5cbe54a0f3516b8644f75" + }, ".Rprofile": { - "checksum": "450334ad009e5d1b774cc305c4c1c70c" + "checksum": "f843ffbdf641e5a9b59ce988b20dfa6e" }, "azure-pipelines.yml": { "checksum": "1dd237db3691665ae9b9b2150087ac75" }, + "data/apprenticeships_data.csv": { + "checksum": "0a7e18f54bbe73bef4d909e120230cce" + }, + "data/apprenticeships_demographics.csv": { + "checksum": "061368279ad839455cfc9ad3a9289edd" + }, "data/apprenticeships_demographics_0.parquet": { "checksum": "f12e1c07da0a8bc4e6a9855bf3bf9d46" }, @@ -5356,6 +5783,9 @@ "data/lad_map_data_0.parquet": { "checksum": "ace1b38e436d6423501b2a00578e7904" }, + "data/national_provider_summary.csv": { + "checksum": "0a570afaeac03757e376607541d0f8ff" + }, "data/national_provider_summary_0.parquet": { "checksum": "4c8f38f019f23ea74e734b472231e949" }, @@ -5363,7 +5793,7 @@ "checksum": "8b244a23ea8512e00e4dc186a70f0911" }, "data/subjects_and_standards_0.parquet": { - "checksum": "2d5c1353d278a7704673d3109e2c2ead" + "checksum": "3e762704c075924e4805feb9c02a69bc" }, "datafiles_log.csv": { "checksum": "8c1c4e91b736315977bdef307e099cb4" @@ -5378,7 +5808,7 @@ "checksum": "0d474e35ec63c89eec5838348cd8d3c0" }, "R/dashboard_modules/01-provider_breakdowns.R": { - "checksum": "8df190d6e9a960fe01f2b9ad6c930072" + "checksum": "dd7866d301b599cbda0702ffff2d796d" }, "R/dashboard_modules/02-local_authority_district.R": { "checksum": "0268389c68220b82eeeb27f5fda8d3d5"