-
Notifications
You must be signed in to change notification settings - Fork 27
/
DESCRIPTION
74 lines (74 loc) · 2.11 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Package: rextendr
Title: Call Rust Code from R using the 'extendr' Crate
Version: 0.3.1.9001
Authors@R:
c(person(given = "Claus O.",
family = "Wilke",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0002-7470-9261")),
person(given = "Andy",
family = "Thomason",
role = "aut",
email = "[email protected]"),
person(given = "Mossa M.",
family = "Reimert",
role = "aut",
email = "[email protected]"),
person(given = "Ilia",
family = "Kosenkov",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-5563-7840")),
person(given = "Malcolm",
family = "Barrett",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-0299-5825")),
person(given = "Josiah",
family = "Parry",
role = "ctb",
comment = c(ORCID = "0000-0001-9910-865X")))
Description: Provides functions to compile and load Rust code from R, similar
to how 'Rcpp' or 'cpp11' allow easy interfacing with C++ code. Also provides
helper functions to create R packages that use Rust code. Under the hood,
the Rust crate 'extendr' is used to do all the heavy lifting.
License: MIT + file LICENSE
URL: https://extendr.github.io/rextendr/
BugReports: https://github.com/extendr/rextendr/issues
Depends:
R (>= 4.0)
Imports:
brio,
callr,
cli,
desc,
dplyr,
glue (>= 1.7.0),
jsonlite,
pkgbuild (>= 1.4.0),
processx,
purrr,
rlang (>= 1.0.5),
rprojroot,
stringi,
tibble,
vctrs,
withr
Suggests:
devtools,
knitr,
lintr,
rmarkdown,
rstudioapi,
testthat (>= 3.1.7),
usethis
VignetteBuilder:
knitr
Config/testthat/edition: 3
Config/testthat/parallel: true
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
SystemRequirements: Rust 'cargo'; the crate 'libR-sys' must compile
without error