Skip to content

Commit

Permalink
README: Link to ISC working group
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson committed May 29, 2024
1 parent 219ef5a commit 1770e02
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@

# marshal: Unified API for Marshalling R Objects

## News

* May 2024: We have launched the R Consortium ISC Working Group
['Marshaling and Serialization in
R'](https://github.com/RConsortium/marshalling-wg) to work on this
problem.


## Introduction

Some types of R objects can be used only in the R session they were
Expand Down
14 changes: 7 additions & 7 deletions pkgdown/_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,20 @@ navbar:
pkgs:
text: Packages
menu:
- text: doFuture
- text: doFuture (map-reduce)
href: https://doFuture.futureverse.org
- text: furrr
- text: furrr (map-reduce)
href: https://furrr.futureverse.org
- text: future
href: https://future.futureverse.org
- text: future.apply
- text: future.apply (map-reduce)
href: https://future.apply.futureverse.org
- text: future.batchtools
- text: future.batchtools (backend)
href: https://future.batchtools.futureverse.org
- text: future.callr
- text: future.callr (backend)
href: https://future.callr.futureverse.org
- text: future.mirai (backend)
href: https://future.mirai.futureverse.org
- text: future.tests
href: https://future.tests.futureverse.org
- text: globals
Expand All @@ -45,8 +47,6 @@ navbar:
href: https://BiocParallel.FutureParam.futureverse.org
- text: future.tools (experimental)
href: https://future.tools.futureverse.org
- text: future.mirai (experimental)
href: https://future.mirai.futureverse.org
- text: future.mapreduce (experimental)
href: https://future.mapreduce.futureverse.org
- text: marshal (experimental)
Expand Down
8 changes: 5 additions & 3 deletions pkgdown/_pkgdown.yml.rsp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<%
pkgs <- c("globals", "listenv", "parallelly", "future", "future.apply", "furrr", "future.tests", "future.callr", "future.batchtools", "doFuture", "progressr")
pkgs_extra <- c("BiocParallel.FutureParam", "future.tools", "future.mirai", "future.mapreduce", "marshal")
pkgs_mapreduce <- c("future.apply", "doFuture", "furrr")
pkgs_backend <- c("future.batchtools", "future.callr", "future.mirai")
pkgs <- c("globals", "listenv", "parallelly", "future", "future.tests", "progressr", pkgs_mapreduce, pkgs_backend)
pkgs_extra <- c("BiocParallel.FutureParam", "future.tools", "future.mapreduce", "marshal")
pkgs <- c(sort(pkgs), pkgs_extra)
urls <- sprintf("https://%s.futureverse.org", pkgs)
names(urls) <- pkgs
Expand Down Expand Up @@ -33,7 +35,7 @@ navbar:
text: Packages
menu:
<% for (name in names(urls)) { %>
- text: <%= name %> <% if (name %in% pkgs_extra) { %>(experimental)<% } %>
- text: <%= name %> <% if (name %in% pkgs_extra) { %>(experimental)<% } else if (name %in% pkgs_backend) { %>(backend)<% } else if (name %in% pkgs_mapreduce) { %>(map-reduce)<% } %>
href: <%= urls[name] %>
<% } %>
cran:
Expand Down

0 comments on commit 1770e02

Please sign in to comment.