-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenv.lock
More file actions
1122 lines (1122 loc) · 48.8 KB
/
renv.lock
File metadata and controls
1122 lines (1122 loc) · 48.8 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"R": {
"Version": "4.4.3",
"Repositories": [
{
"Name": "TERCEN",
"URL": "https://cran.tercen.com/api/v1/rlib/tercen"
},
{
"Name": "CRAN",
"URL": "https://cran.tercen.com/api/v1/rlib/CRAN"
}
]
},
"Packages": {
"R6": {
"Package": "R6",
"Version": "2.6.1",
"Source": "Repository",
"Title": "Encapsulated Classes with Reference Semantics",
"Authors@R": "c( person(\"Winston\", \"Chang\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Creates classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different packages.",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6",
"BugReports": "https://github.com/r-lib/R6/issues",
"Depends": [
"R (>= 3.6)"
],
"Suggests": [
"lobstr",
"testthat (>= 3.0.0)"
],
"Config/Needs/website": "tidyverse/tidytemplate, ggplot2, microbenchmark, scales",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "RSPM"
},
"askpass": {
"Package": "askpass",
"Version": "1.2.1",
"Source": "Repository",
"Type": "Package",
"Title": "Password Entry Utilities for R, Git, and SSH",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a passphrase, for example to authenticate with a server or read a protected key. Includes native programs for MacOS and Windows, hence no 'tcltk' is required. Password entry can be invoked in two different ways: directly from R via the askpass() function, or indirectly as password-entry back-end for 'ssh-agent' or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables. Thereby the user can be prompted for credentials or a passphrase if needed when R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://r-lib.r-universe.dev/askpass",
"BugReports": "https://github.com/r-lib/askpass/issues",
"Encoding": "UTF-8",
"Imports": [
"sys (>= 2.1)"
],
"RoxygenNote": "7.2.3",
"Suggests": [
"testthat"
],
"Language": "en-US",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "RSPM"
},
"base64enc": {
"Package": "base64enc",
"Version": "0.1-3",
"Source": "Repository",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"Depends": [
"R (>= 2.9.0)"
],
"Enhances": [
"png"
],
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Repository": "RSPM",
"Encoding": "UTF-8"
},
"cli": {
"Package": "cli",
"Version": "3.6.4",
"Source": "Repository",
"Title": "Helpers for Developing Command Line Interfaces",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kirill\", \"Müller\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", , \"[email protected]\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI colors and text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://cli.r-lib.org, https://github.com/r-lib/cli",
"BugReports": "https://github.com/r-lib/cli/issues",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"utils"
],
"Suggests": [
"callr",
"covr",
"crayon",
"digest",
"glue (>= 1.6.0)",
"grDevices",
"htmltools",
"htmlwidgets",
"knitr",
"methods",
"processx",
"ps (>= 1.3.4.9000)",
"rlang (>= 1.0.2.9003)",
"rmarkdown",
"rprojroot",
"rstudioapi",
"testthat (>= 3.2.0)",
"tibble",
"whoami",
"withr"
],
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc, fansi, prettyunits, sessioninfo, tidyverse/tidytemplate, usethis, vctrs",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Gábor Csárdi [aut, cre], Hadley Wickham [ctb], Kirill Müller [ctb], Salim Brüggemann [ctb] (<https://orcid.org/0000-0002-5329-5987>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "RSPM"
},
"curl": {
"Package": "curl",
"Version": "6.2.1",
"Source": "Repository",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Posit Software, PBC\", role = \"cph\"))",
"Description": "Bindings to 'libcurl' <https://curl.se/libcurl/> for performing fully configurable HTTP/FTP requests where responses can be processed in memory, on disk, or streaming via the callback or connection interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly web client see the 'httr2' package which builds on this package with http specific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl (>= 7.62): libcurl-devel (rpm) or libcurl4-openssl-dev (deb)",
"URL": "https://jeroen.r-universe.dev/curl",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": [
"spelling",
"testthat (>= 1.0.0)",
"knitr",
"jsonlite",
"later",
"rmarkdown",
"httpuv (>= 1.4.4)",
"webutils"
],
"VignetteBuilder": "knitr",
"Depends": [
"R (>= 3.0.0)"
],
"RoxygenNote": "7.3.2.9000",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Hadley Wickham [ctb], Posit Software, PBC [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "RSPM"
},
"dplyr": {
"Package": "dplyr",
"Version": "1.1.4",
"Source": "Repository",
"Type": "Package",
"Title": "A Grammar of Data Manipulation",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"[email protected]\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A fast, consistent tool for working with data frame like objects, both in memory and out of memory.",
"License": "MIT + file LICENSE",
"URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr",
"BugReports": "https://github.com/tidyverse/dplyr/issues",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [
"cli (>= 3.4.0)",
"generics",
"glue (>= 1.3.2)",
"lifecycle (>= 1.0.3)",
"magrittr (>= 1.5)",
"methods",
"pillar (>= 1.9.0)",
"R6",
"rlang (>= 1.1.0)",
"tibble (>= 3.2.0)",
"tidyselect (>= 1.2.0)",
"utils",
"vctrs (>= 0.6.4)"
],
"Suggests": [
"bench",
"broom",
"callr",
"covr",
"DBI",
"dbplyr (>= 2.2.1)",
"ggplot2",
"knitr",
"Lahman",
"lobstr",
"microbenchmark",
"nycflights13",
"purrr",
"rmarkdown",
"RMySQL",
"RPostgreSQL",
"RSQLite",
"stringi (>= 1.7.6)",
"testthat (>= 3.1.5)",
"tidyr (>= 1.3.0)",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse, shiny, pkgdown, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>), Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>), Lionel Henry [aut], Kirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>), Davis Vaughan [aut] (<https://orcid.org/0000-0003-4777-038X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "RSPM"
},
"fansi": {
"Package": "fansi",
"Version": "1.0.6",
"Source": "Repository",
"Title": "ANSI Control Sequence Aware String Functions",
"Description": "Counterparts to R string manipulation functions that account for the effects of ANSI text formatting control sequences.",
"Authors@R": "c( person(\"Brodie\", \"Gaslam\", email=\"[email protected]\", role=c(\"aut\", \"cre\")), person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"), person(family=\"R Core Team\", email=\"[email protected]\", role=\"cph\", comment=\"UTF8 byte length calcs from src/util.c\" ))",
"Depends": [
"R (>= 3.1.0)"
],
"License": "GPL-2 | GPL-3",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": [
"unitizer",
"knitr",
"rmarkdown"
],
"Imports": [
"grDevices",
"utils"
],
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Collate": "'constants.R' 'fansi-package.R' 'internal.R' 'load.R' 'misc.R' 'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R' 'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'",
"NeedsCompilation": "yes",
"Author": "Brodie Gaslam [aut, cre], Elliott Sales De Andrade [ctb], R Core Team [cph] (UTF8 byte length calcs from src/util.c)",
"Maintainer": "Brodie Gaslam <[email protected]>",
"Repository": "RSPM"
},
"generics": {
"Package": "generics",
"Version": "0.1.3",
"Source": "Repository",
"Title": "Common S3 Generics not Provided by Base R Methods Related to Model Fitting",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Max\", \"Kuhn\", , \"[email protected]\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"[email protected]\", role = \"aut\"), person(\"RStudio\", role = \"cph\") )",
"Description": "In order to reduce potential package dependencies and conflicts, generics provides a number of commonly used S3 generics.",
"License": "MIT + file LICENSE",
"URL": "https://generics.r-lib.org, https://github.com/r-lib/generics",
"BugReports": "https://github.com/r-lib/generics/issues",
"Depends": [
"R (>= 3.2)"
],
"Imports": [
"methods"
],
"Suggests": [
"covr",
"pkgload",
"testthat (>= 3.0.0)",
"tibble",
"withr"
],
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.0",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre], Max Kuhn [aut], Davis Vaughan [aut], RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "RSPM"
},
"glue": {
"Package": "glue",
"Version": "1.8.0",
"Source": "Repository",
"Title": "Interpreted String Literals",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Jennifer\", \"Bryan\", , \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "An implementation of interpreted string literals, inspired by Python's Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/> and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's Triple-Quoted String Literals <https://docs.julialang.org/en/v1.3/manual/strings/#Triple-Quoted-String-Literals-1>.",
"License": "MIT + file LICENSE",
"URL": "https://glue.tidyverse.org/, https://github.com/tidyverse/glue",
"BugReports": "https://github.com/tidyverse/glue/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"methods"
],
"Suggests": [
"crayon",
"DBI (>= 1.2.0)",
"dplyr",
"knitr",
"magrittr",
"rlang",
"rmarkdown",
"RSQLite",
"testthat (>= 3.2.0)",
"vctrs (>= 0.3.0)",
"waldo (>= 0.5.3)",
"withr"
],
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/Needs/website": "bench, forcats, ggbeeswarm, ggplot2, R.utils, rprintf, tidyr, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>), Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "RSPM"
},
"httr": {
"Package": "httr",
"Version": "1.4.7",
"Source": "Repository",
"Title": "Tools for Working with URLs and HTTP",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Useful tools for working with HTTP organised by HTTP verbs (GET(), POST(), etc). Configuration functions make it easy to control additional request components (authenticate(), add_headers() and so on).",
"License": "MIT + file LICENSE",
"URL": "https://httr.r-lib.org/, https://github.com/r-lib/httr",
"BugReports": "https://github.com/r-lib/httr/issues",
"Depends": [
"R (>= 3.5)"
],
"Imports": [
"curl (>= 5.0.2)",
"jsonlite",
"mime",
"openssl (>= 0.8)",
"R6"
],
"Suggests": [
"covr",
"httpuv",
"jpeg",
"knitr",
"png",
"readr",
"rmarkdown",
"testthat (>= 0.8.0)",
"xml2"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre], Posit, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "RSPM"
},
"jsonlite": {
"Package": "jsonlite",
"Version": "1.9.0",
"Source": "Repository",
"Title": "A Simple and Robust JSON Parser and Generator for R",
"License": "MIT + file LICENSE",
"Depends": [
"methods"
],
"Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Duncan\", \"Temple Lang\", role = \"ctb\"), person(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))",
"URL": "https://jeroen.r-universe.dev/jsonlite https://arxiv.org/abs/1403.2805",
"BugReports": "https://github.com/jeroen/jsonlite/issues",
"Maintainer": "Jeroen Ooms <[email protected]>",
"VignetteBuilder": "knitr, R.rsp",
"Description": "A reasonably fast JSON parser and generator, optimized for statistical data and the web. Offers simple, flexible tools for working with JSON in R, and is particularly powerful for building pipelines and interacting with a web API. The implementation is based on the mapping described in the vignette (Ooms, 2014). In addition to converting JSON data from/to R objects, 'jsonlite' contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for use with dynamic data in systems and applications.",
"Suggests": [
"httr",
"vctrs",
"testthat",
"knitr",
"rmarkdown",
"R.rsp",
"sf"
],
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Duncan Temple Lang [ctb], Lloyd Hilaiel [cph] (author of bundled libyajl)",
"Repository": "RSPM"
},
"lifecycle": {
"Package": "lifecycle",
"Version": "1.0.4",
"Source": "Repository",
"Title": "Manage the Life Cycle of your Package Functions",
"Authors@R": "c( person(\"Lionel\", \"Henry\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Manage the life cycle of your exported functions with shared conventions, documentation badges, and user-friendly deprecation warnings.",
"License": "MIT + file LICENSE",
"URL": "https://lifecycle.r-lib.org/, https://github.com/r-lib/lifecycle",
"BugReports": "https://github.com/r-lib/lifecycle/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"cli (>= 3.4.0)",
"glue",
"rlang (>= 1.1.0)"
],
"Suggests": [
"covr",
"crayon",
"knitr",
"lintr",
"rmarkdown",
"testthat (>= 3.0.1)",
"tibble",
"tidyverse",
"tools",
"vctrs",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate, usethis",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1",
"NeedsCompilation": "no",
"Author": "Lionel Henry [aut, cre], Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "RSPM"
},
"magrittr": {
"Package": "magrittr",
"Version": "2.0.3",
"Source": "Repository",
"Type": "Package",
"Title": "A Forward-Pipe Operator for R",
"Authors@R": "c( person(\"Stefan Milton\", \"Bache\", , \"[email protected]\", role = c(\"aut\", \"cph\"), comment = \"Original author and creator of magrittr\"), person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"[email protected]\", role = \"cre\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"",
"License": "MIT + file LICENSE",
"URL": "https://magrittr.tidyverse.org, https://github.com/tidyverse/magrittr",
"BugReports": "https://github.com/tidyverse/magrittr/issues",
"Depends": [
"R (>= 3.4.0)"
],
"Suggests": [
"covr",
"knitr",
"rlang",
"rmarkdown",
"testthat"
],
"VignetteBuilder": "knitr",
"ByteCompile": "Yes",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "yes",
"Author": "Stefan Milton Bache [aut, cph] (Original author and creator of magrittr), Hadley Wickham [aut], Lionel Henry [cre], RStudio [cph, fnd]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "RSPM"
},
"mime": {
"Package": "mime",
"Version": "0.12",
"Source": "Repository",
"Type": "Package",
"Title": "Map Filenames to MIME Types",
"Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Jeffrey\", \"Horner\", role = \"ctb\"), person(\"Beilei\", \"Bian\", role = \"ctb\") )",
"Description": "Guesses the MIME type from a filename extension using the data derived from /etc/mime.types in UNIX-type systems.",
"Imports": [
"tools"
],
"License": "GPL",
"URL": "https://github.com/yihui/mime",
"BugReports": "https://github.com/yihui/mime/issues",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>), Jeffrey Horner [ctb], Beilei Bian [ctb]",
"Maintainer": "Yihui Xie <[email protected]>",
"Repository": "RSPM"
},
"mtercen": {
"Package": "mtercen",
"Version": "1.0.8",
"Source": "Repository",
"Type": "Package",
"Title": "cast matrix",
"Date": "2019-04-07",
"Author": "Alexandre Maurel",
"Maintainer": "Alexandre Maurel <[email protected]>",
"Description": "cast matrix",
"License": "MIT",
"SystemRequirements": "cargo, rustc",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "yes",
"Repository": "TERCEN"
},
"openssl": {
"Package": "openssl",
"Version": "2.3.2",
"Source": "Repository",
"Type": "Package",
"Title": "Toolkit for Encryption, Signatures and Certificates Based on OpenSSL",
"Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Oliver\", \"Keyes\", role = \"ctb\"))",
"Description": "Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers. Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic signatures can either be created and verified manually or via x509 certificates. AES can be used in cbc, ctr or gcm mode for symmetric encryption; RSA for asymmetric (public key) encryption or EC for Diffie Hellman. High-level envelope functions combine RSA and AES for encrypting arbitrary sized data. Other utilities include key generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random number generator, and 'bignum' math methods for manually performing crypto calculations on large multibyte integers.",
"License": "MIT + file LICENSE",
"URL": "https://jeroen.r-universe.dev/openssl",
"BugReports": "https://github.com/jeroen/openssl/issues",
"SystemRequirements": "OpenSSL >= 1.0.2",
"VignetteBuilder": "knitr",
"Imports": [
"askpass"
],
"Suggests": [
"curl",
"testthat (>= 2.1.0)",
"digest",
"knitr",
"rmarkdown",
"jsonlite",
"jose",
"sodium"
],
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Oliver Keyes [ctb]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "RSPM"
},
"pillar": {
"Package": "pillar",
"Version": "1.10.1",
"Source": "Repository",
"Title": "Coloured Formatting for Columns",
"Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\"), person(given = \"RStudio\", role = \"cph\"))",
"Description": "Provides 'pillar' and 'colonnade' generics designed for formatting columns of data using the full range of colours provided by modern terminals.",
"License": "MIT + file LICENSE",
"URL": "https://pillar.r-lib.org/, https://github.com/r-lib/pillar",
"BugReports": "https://github.com/r-lib/pillar/issues",
"Imports": [
"cli (>= 2.3.0)",
"glue",
"lifecycle",
"rlang (>= 1.0.2)",
"utf8 (>= 1.1.0)",
"utils",
"vctrs (>= 0.5.0)"
],
"Suggests": [
"bit64",
"DBI",
"debugme",
"DiagrammeR",
"dplyr",
"formattable",
"ggplot2",
"knitr",
"lubridate",
"nanotime",
"nycflights13",
"palmerpenguins",
"rmarkdown",
"scales",
"stringi",
"survival",
"testthat (>= 3.1.1)",
"tibble",
"units (>= 0.7.2)",
"vdiffr",
"withr"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2.9000",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "format_multi_fuzz, format_multi_fuzz_2, format_multi, ctl_colonnade, ctl_colonnade_1, ctl_colonnade_2",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "true",
"Config/gha/extra-packages": "DiagrammeR=?ignore-before-r=3.5.0",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "no",
"Author": "Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], RStudio [cph]",
"Maintainer": "Kirill Müller <[email protected]>",
"Repository": "RSPM"
},
"pkgconfig": {
"Package": "pkgconfig",
"Version": "2.0.3",
"Source": "Repository",
"Title": "Private Configuration for 'R' Packages",
"Author": "Gábor Csárdi",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Description": "Set configuration options on a per-package basis. Options set by a given package only apply to that package, other packages are unaffected.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"Imports": [
"utils"
],
"Suggests": [
"covr",
"testthat",
"disposables (>= 1.0.3)"
],
"URL": "https://github.com/r-lib/pkgconfig#readme",
"BugReports": "https://github.com/r-lib/pkgconfig/issues",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Repository": "RSPM"
},
"renv": {
"Package": "renv",
"Version": "1.1.4",
"Source": "Repository",
"Type": "Package",
"Title": "Project Environments",
"Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A dependency management toolkit for R. Using 'renv', you can create and manage project-local R libraries, save the state of these libraries to a 'lockfile', and later restore your library as required. Together, these tools can help make your projects more isolated, portable, and reproducible.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv",
"BugReports": "https://github.com/rstudio/renv/issues",
"Imports": [
"utils"
],
"Suggests": [
"BiocManager",
"cli",
"compiler",
"covr",
"cpp11",
"devtools",
"gitcreds",
"jsonlite",
"jsonvalidate",
"knitr",
"miniUI",
"modules",
"packrat",
"pak",
"R6",
"remotes",
"reticulate",
"rmarkdown",
"rstudioapi",
"shiny",
"testthat",
"uuid",
"waldo",
"yaml",
"webfakes"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes",
"NeedsCompilation": "no",
"Author": "Kevin Ushey [aut, cre] (<https://orcid.org/0000-0003-2880-7407>), Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Kevin Ushey <[email protected]>",
"Repository": "RSPM"
},
"rlang": {
"Package": "rlang",
"Version": "1.1.5",
"Source": "Repository",
"Title": "Functions for Base Types and Core R and 'Tidyverse' Features",
"Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.",
"Authors@R": "c( person(\"Lionel\", \"Henry\", ,\"[email protected]\", c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", ,\"[email protected]\", \"aut\"), person(given = \"mikefc\", email = \"[email protected]\", role = \"cph\", comment = \"Hash implementation based on Mike's xxhashlite\"), person(given = \"Yann\", family = \"Collet\", role = \"cph\", comment = \"Author of the embedded xxHash library\"), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")) )",
"License": "MIT + file LICENSE",
"ByteCompile": "true",
"Biarch": "true",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [
"utils"
],
"Suggests": [
"cli (>= 3.1.0)",
"covr",
"crayon",
"fs",
"glue",
"knitr",
"magrittr",
"methods",
"pillar",
"rmarkdown",
"stats",
"testthat (>= 3.0.0)",
"tibble",
"usethis",
"vctrs (>= 0.2.3)",
"withr"
],
"Enhances": [
"winch"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang",
"BugReports": "https://github.com/r-lib/rlang/issues",
"Config/testthat/edition": "3",
"Config/Needs/website": "dplyr, tidyverse/tidytemplate",
"NeedsCompilation": "yes",
"Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], mikefc [cph] (Hash implementation based on Mike's xxhashlite), Yann Collet [cph] (Author of the embedded xxHash library), Posit, PBC [cph, fnd]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "RSPM"
},
"rstudioapi": {
"Package": "rstudioapi",
"Version": "0.17.1",
"Source": "Repository",
"Title": "Safely Access the RStudio API",
"Description": "Access the RStudio API (if available) and provide informative error messages when it's not.",
"Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"), person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"[email protected]\"), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"[email protected]\"), person(\"Gary\", \"Ritchie\", role = c(\"aut\"), email = \"[email protected]\"), person(family = \"RStudio\", role = \"cph\") )",
"Maintainer": "Kevin Ushey <[email protected]>",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/rstudioapi/, https://github.com/rstudio/rstudioapi",
"BugReports": "https://github.com/rstudio/rstudioapi/issues",
"RoxygenNote": "7.3.2",
"Suggests": [
"testthat",
"knitr",
"rmarkdown",
"clipr",
"covr"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Author": "Kevin Ushey [aut, cre], JJ Allaire [aut], Hadley Wickham [aut], Gary Ritchie [aut], RStudio [cph]",
"Repository": "RSPM"
},
"sys": {
"Package": "sys",
"Version": "3.4.3",
"Source": "Repository",
"Type": "Package",
"Title": "Powerful and Reliable Tools for Running System Commands in R",
"Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = \"ctb\"))",
"Description": "Drop-in replacements for the base system2() function with fine control and consistent behavior across platforms. Supports clean interruption, timeout, background tasks, and streaming STDIN / STDOUT / STDERR over binary or text connections. Arguments on Windows automatically get encoded and quoted to work on different locales.",
"License": "MIT + file LICENSE",
"URL": "https://jeroen.r-universe.dev/sys",
"BugReports": "https://github.com/jeroen/sys/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Suggests": [
"unix (>= 1.4)",
"spelling",
"testthat"
],
"Language": "en-US",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Gábor Csárdi [ctb]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "RSPM"
},
"teRcenHttp": {
"Package": "teRcenHttp",
"Version": "1.0.21",
"Source": "Repository",
"Type": "Package",
"Title": "Tercen http client",
"Date": "2019-04-08",
"Author": "Alexandre Maurel",
"Maintainer": "Alexandre Maurel <[email protected]>",
"Description": "Tercen http client",
"License": "Apache License Version 2.0",
"SystemRequirements": "cargo, rustc",
"NeedsCompilation": "yes",
"Repository": "TERCEN"
},
"tercen": {
"Package": "tercen",
"Version": "0.16.0",
"Source": "Repository",
"Type": "Package",
"Title": "Tercen R client api",
"Date": "2025-05-12",
"Author": "Alexandre Maurel",
"Maintainer": "Alexandre Maurel <[email protected]>",
"Description": "Access Tercen data, workflow and computation resources with R. Build R operator for Tercen.",
"License": "Apache License Version 2.0",
"Suggests": [
"testthat"
],
"Imports": [
"R6",
"dplyr",
"httr",
"tibble",
"yaml",
"openssl",
"rstudioapi",
"uuid",
"base64enc",
"mtercen",
"teRcenHttp",
"tercenApi"
],
"URL": "https://github.com/tercen/teRcen",
"BugReports": "https://github.com/tercen/teRcen/issues",
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Repository": "TERCEN"
},
"tercenApi": {
"Package": "tercenApi",
"Version": "0.13.1",
"Source": "Repository",
"Type": "Package",
"Title": "Tercen R api",
"Date": "2024-02-06",
"Author": "Alexandre Maurel",
"Maintainer": "Alexandre Maurel <[email protected]>",
"Description": "Access Tercen data, workflow and computation resources with R. Build R operator for Tercen.",
"License": "Apache License Version 2.0",
"Suggests": [
"testthat"
],
"Imports": [
"R6",
"teRcenHttp (>= 1.0.21)",
"yaml"
],
"URL": "https://github.com/tercen/teRcenApi",
"BugReports": "https://github.com/tercen/teRcenApi/issues",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Repository": "TERCEN"
},
"tibble": {
"Package": "tibble",
"Version": "3.2.1",
"Source": "Repository",
"Title": "Simple Data Frames",
"Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"[email protected]\"), person(given = \"Romain\", family = \"Francois\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"[email protected]\"), person(given = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data frame.",
"License": "MIT + file LICENSE",
"URL": "https://tibble.tidyverse.org/, https://github.com/tidyverse/tibble",
"BugReports": "https://github.com/tidyverse/tibble/issues",
"Depends": [
"R (>= 3.4.0)"
],
"Imports": [
"fansi (>= 0.4.0)",
"lifecycle (>= 1.0.0)",
"magrittr",
"methods",
"pillar (>= 1.8.1)",
"pkgconfig",
"rlang (>= 1.0.2)",
"utils",
"vctrs (>= 0.4.2)"
],
"Suggests": [
"bench",
"bit64",
"blob",
"brio",
"callr",
"cli",
"covr",
"crayon (>= 1.3.4)",
"DiagrammeR",
"dplyr",
"evaluate",
"formattable",
"ggplot2",
"here",
"hms",
"htmltools",
"knitr",
"lubridate",
"mockr",
"nycflights13",
"pkgbuild",
"pkgload",
"purrr",
"rmarkdown",
"stringi",
"testthat (>= 3.0.2)",
"tidyr",
"withr"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "vignette-formats, as_tibble, add, invariants",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "true",
"Config/autostyle/rmd": "false",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "yes",
"Author": "Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], RStudio [cph, fnd]",
"Maintainer": "Kirill Müller <[email protected]>",
"Repository": "RSPM"
},
"tidyselect": {
"Package": "tidyselect",
"Version": "1.2.1",
"Source": "Repository",
"Title": "Select from a Set of Strings",
"Authors@R": "c( person(\"Lionel\", \"Henry\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your own packages in a way that is consistent with other 'tidyverse' interfaces for selection.",
"License": "MIT + file LICENSE",
"URL": "https://tidyselect.r-lib.org, https://github.com/r-lib/tidyselect",
"BugReports": "https://github.com/r-lib/tidyselect/issues",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"cli (>= 3.3.0)",
"glue (>= 1.3.0)",
"lifecycle (>= 1.0.3)",
"rlang (>= 1.0.4)",
"vctrs (>= 0.5.2)",
"withr"
],
"Suggests": [
"covr",
"crayon",
"dplyr",
"knitr",
"magrittr",
"rmarkdown",
"stringr",
"testthat (>= 3.1.1)",
"tibble (>= 2.1.3)"
],
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/testthat/edition": "3",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.0.9000",
"NeedsCompilation": "yes",
"Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], Posit Software, PBC [cph, fnd]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "RSPM"
},
"utf8": {
"Package": "utf8",
"Version": "1.2.4",
"Source": "Repository",
"Title": "Unicode Text Processing",
"Authors@R": "c(person(given = c(\"Patrick\", \"O.\"), family = \"Perry\", role = c(\"aut\", \"cph\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"cre\", email = \"[email protected]\"), person(given = \"Unicode, Inc.\", role = c(\"cph\", \"dtc\"), comment = \"Unicode Character Database\"))",
"Description": "Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display.",
"License": "Apache License (== 2.0) | file LICENSE",
"URL": "https://ptrckprry.com/r-utf8/, https://github.com/patperry/r-utf8",
"BugReports": "https://github.com/patperry/r-utf8/issues",
"Depends": [
"R (>= 2.10)"
],
"Suggests": [
"cli",
"covr",
"knitr",
"rlang",
"rmarkdown",
"testthat (>= 3.0.0)",
"withr"
],
"VignetteBuilder": "knitr, rmarkdown",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Patrick O. Perry [aut, cph], Kirill Müller [cre], Unicode, Inc. [cph, dtc] (Unicode Character Database)",
"Maintainer": "Kirill Müller <[email protected]>",
"Repository": "RSPM"
},
"uuid": {
"Package": "uuid",
"Version": "1.2-1",
"Source": "Repository",