-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from andyquinterom/T6
Changes @param name in `as.list` method
- Loading branch information
Showing
18 changed files
with
384 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,25 @@ | ||
^src/\.cargo$ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^LICENSE\.md$ | ||
^README\.Rmd$ | ||
^README\.md$ | ||
^man/figures/.*$ | ||
^\.github$ | ||
^fonts$ | ||
|
||
^src/.cargo$ | ||
^src/rust/.cargo$ | ||
^src/rust/.vscode$ | ||
^src/rust/vendor$ | ||
|
||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^LICENSE\.md$ | ||
|
||
^cran-comments\.md$ | ||
^CRAN-SUBMISSION$ | ||
^CRAN-RELEASE$ | ||
|
||
^check$ | ||
|
||
^update_authors\.R$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
name: R-CMD-check | ||
|
||
jobs: | ||
R-CMD-check: | ||
runs-on: ${{ matrix.config.os }} | ||
|
||
name: "${{ matrix.config.os }} (R: ${{ matrix.config.r }}, Rust: ${{ matrix.config.rust }})" | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- {os: windows-latest, r: 'release', rust: 'stable-msvc'} | ||
- {os: windows-latest, r: 'devel', rust: 'stable-msvc'} | ||
- {os: macOS-latest, r: 'release', rust: 'stable' } | ||
- {os: ubuntu-latest, r: 'release', rust: 'stable' } | ||
- {os: ubuntu-latest, r: 'devel', rust: 'stable' } | ||
- {os: ubuntu-latest, r: 'release', rust: 'nightly' } | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Rust | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.config.rust }} | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: ${{ matrix.config.r }} | ||
rtools-version: ${{ matrix.config.rtools-version }} | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
|
||
- name: debug | ||
run: cat ./check/*.Rcheck/00install.out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
This package contains the Rust source code of the dependencies in src/rust/vendor.tar.xz | ||
The authorships and the licenses are listed below. In summary, all libraries are | ||
distributed either under the MIT license or under MIT/Apache-2.0 dual license [1]. | ||
|
||
Note that, when Cargo (Rust’s build system and package manager) is not installed | ||
on the machine, the pre-compiled binary will be downloaded on building this | ||
package. The binary is compiled using the same Rust code, so the authorships and | ||
the licenses are the same as listed here. | ||
|
||
[1]: The unicode-indent library shows 'Unicode-DFS-2016' license because it | ||
contains some test data generated by using the Unicode Character Database. | ||
So, this license is not applied to the actual sources that get compiled. | ||
Please refer to the License section of the library's README | ||
(https://crates.io/crates/unicode-ident) for the details. | ||
|
||
=============================== | ||
|
||
Name: either | ||
Files: vendor/either/* | ||
Authors: bluss | ||
License: MIT OR Apache-2.0 | ||
|
||
------------------------------ | ||
|
||
Name: extendr-api | ||
Files: vendor/extendr-api/* | ||
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Hiroaki Yutani, Ilia A. Kosenkov, Michael Milton | ||
License: MIT | ||
|
||
------------------------------ | ||
|
||
Name: extendr-macros | ||
Files: vendor/extendr-macros/* | ||
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Hiroaki Yutani, Ilia A. Kosenkov | ||
License: MIT | ||
|
||
------------------------------ | ||
|
||
Name: itertools | ||
Files: vendor/itertools/* | ||
Authors: bluss | ||
License: MIT OR Apache-2.0 | ||
|
||
------------------------------ | ||
|
||
Name: libR-sys | ||
Files: vendor/libR-sys/* | ||
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Ilia A. Kosenkov, Hiroaki Yutani | ||
License: MIT | ||
|
||
------------------------------ | ||
|
||
Name: once_cell | ||
Files: vendor/once_cell/* | ||
Authors: Aleksey Kladov | ||
License: MIT OR Apache-2.0 | ||
|
||
------------------------------ | ||
|
||
Name: paste | ||
Files: vendor/paste/* | ||
Authors: David Tolnay | ||
License: MIT OR Apache-2.0 | ||
|
||
------------------------------ | ||
|
||
Name: proc-macro2 | ||
Files: vendor/proc-macro2/* | ||
Authors: David Tolnay, Alex Crichton | ||
License: MIT OR Apache-2.0 | ||
|
||
------------------------------ | ||
|
||
Name: quote | ||
Files: vendor/quote/* | ||
Authors: David Tolnay | ||
License: MIT OR Apache-2.0 | ||
|
||
------------------------------ | ||
|
||
Name: syn | ||
Files: vendor/syn/* | ||
Authors: David Tolnay | ||
License: MIT OR Apache-2.0 | ||
|
||
------------------------------ | ||
|
||
Name: unicode-ident | ||
Files: vendor/unicode-ident/* | ||
Authors: David Tolnay | ||
License: (MIT OR Apache-2.0) AND Unicode-DFS-2016 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
The authors of the dependency Rust crates: | ||
|
||
either (version 1.9.0): | ||
bluss | ||
|
||
extendr-api (version 0.6.0): | ||
andy-thomason | ||
Thomas Down | ||
Mossa Merhi Reimert | ||
Claus O. Wilke | ||
Hiroaki Yutani | ||
Ilia A. Kosenkov | ||
Michael Milton | ||
|
||
extendr-macros (version 0.6.0): | ||
andy-thomason | ||
Thomas Down | ||
Mossa Merhi Reimert | ||
Claus O. Wilke | ||
Hiroaki Yutani | ||
Ilia A. Kosenkov | ||
|
||
itertools (version 0.11.0): | ||
bluss | ||
|
||
libR-sys (version 0.6.0): | ||
andy-thomason | ||
Thomas Down | ||
Mossa Merhi Reimert | ||
Claus O. Wilke | ||
Ilia A. Kosenkov | ||
Hiroaki Yutani | ||
|
||
once_cell (version 1.18.0): | ||
Aleksey Kladov | ||
|
||
paste (version 1.0.14): | ||
David Tolnay | ||
|
||
proc-macro2 (version 1.0.69): | ||
David Tolnay | ||
Alex Crichton | ||
|
||
quote (version 1.0.33): | ||
David Tolnay | ||
|
||
syn (version 2.0.39): | ||
David Tolnay | ||
|
||
unicode-ident (version 1.0.12): | ||
David Tolnay |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.