-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenv.lock
1288 lines (1288 loc) · 59.7 KB
/
renv.lock
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.2",
"Repositories": [
{
"Name": "CRAN",
"URL": "https://cran.rstudio.com"
}
]
},
"Packages": {
"R6": {
"Package": "R6",
"Version": "2.5.1",
"Source": "Repository",
"Title": "Encapsulated Classes with Reference Semantics",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\")",
"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.",
"Depends": [
"R (>= 3.0)"
],
"Suggests": [
"testthat",
"pryr"
],
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "RSPM",
"Encoding": "UTF-8"
},
"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": "CRAN"
},
"backports": {
"Package": "backports",
"Version": "1.5.0",
"Source": "Repository",
"Type": "Package",
"Title": "Reimplementations of Functions Introduced Since R-3.0.0",
"Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"[email protected]\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Duncan\", \"Murdoch\", NULL, \"[email protected]\", role = c(\"aut\")), person(\"R Core Team\", role = \"aut\"))",
"Maintainer": "Michel Lang <[email protected]>",
"Description": "Functions introduced or changed since R v3.0.0 are re-implemented in this package. The backports are conditionally exported in order to let R resolve the function name to either the implemented backport, or the respective base version, if available. Package developers can make use of new functions or arguments by selectively importing specific backports to support older installations.",
"URL": "https://github.com/r-lib/backports",
"BugReports": "https://github.com/r-lib/backports/issues",
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "yes",
"ByteCompile": "yes",
"Depends": [
"R (>= 3.0.0)"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>), Duncan Murdoch [aut], R Core Team [aut]",
"Repository": "RSPM"
},
"cachem": {
"Package": "cachem",
"Version": "1.1.0",
"Source": "Repository",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit either their total size or the age of the oldest object (or both), automatically pruning objects to maintain the constraints.",
"Authors@R": "c( person(\"Winston\", \"Chang\", , \"[email protected]\", c(\"aut\", \"cre\")), person(family = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")))",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem",
"Imports": [
"rlang",
"fastmap (>= 1.2.0)"
],
"Suggests": [
"testthat"
],
"RoxygenNote": "7.2.3",
"Config/Needs/routine": "lobstr",
"Config/Needs/website": "pkgdown",
"NeedsCompilation": "yes",
"Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "RSPM"
},
"checkmate": {
"Package": "checkmate",
"Version": "2.3.2",
"Source": "Repository",
"Type": "Package",
"Title": "Fast and Versatile Argument Checks",
"Description": "Tests and assertions to perform frequent argument checks. A substantial part of the package was written in C to minimize any worries about execution time overhead.",
"Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"[email protected]\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Bernd\", \"Bischl\", NULL, \"[email protected]\", role = \"ctb\"), person(\"Dénes\", \"Tóth\", NULL, \"[email protected]\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4262-3217\")) )",
"URL": "https://mllg.github.io/checkmate/, https://github.com/mllg/checkmate",
"URLNote": "https://github.com/mllg/checkmate",
"BugReports": "https://github.com/mllg/checkmate/issues",
"NeedsCompilation": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"Depends": [
"R (>= 3.0.0)"
],
"Imports": [
"backports (>= 1.1.0)",
"utils"
],
"Suggests": [
"R6",
"fastmatch",
"data.table (>= 1.9.8)",
"devtools",
"ggplot2",
"knitr",
"magrittr",
"microbenchmark",
"rmarkdown",
"testthat (>= 3.0.4)",
"tinytest (>= 1.1.0)",
"tibble"
],
"License": "BSD_3_clause + file LICENSE",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.3.2",
"Collate": "'AssertCollection.R' 'allMissing.R' 'anyInfinite.R' 'anyMissing.R' 'anyNaN.R' 'asInteger.R' 'assert.R' 'helper.R' 'makeExpectation.R' 'makeTest.R' 'makeAssertion.R' 'checkAccess.R' 'checkArray.R' 'checkAtomic.R' 'checkAtomicVector.R' 'checkCharacter.R' 'checkChoice.R' 'checkClass.R' 'checkComplex.R' 'checkCount.R' 'checkDataFrame.R' 'checkDataTable.R' 'checkDate.R' 'checkDirectoryExists.R' 'checkDisjunct.R' 'checkDouble.R' 'checkEnvironment.R' 'checkFALSE.R' 'checkFactor.R' 'checkFileExists.R' 'checkFlag.R' 'checkFormula.R' 'checkFunction.R' 'checkInt.R' 'checkInteger.R' 'checkIntegerish.R' 'checkList.R' 'checkLogical.R' 'checkMatrix.R' 'checkMultiClass.R' 'checkNamed.R' 'checkNames.R' 'checkNull.R' 'checkNumber.R' 'checkNumeric.R' 'checkOS.R' 'checkPOSIXct.R' 'checkPathForOutput.R' 'checkPermutation.R' 'checkR6.R' 'checkRaw.R' 'checkScalar.R' 'checkScalarNA.R' 'checkSetEqual.R' 'checkString.R' 'checkSubset.R' 'checkTRUE.R' 'checkTibble.R' 'checkVector.R' 'coalesce.R' 'isIntegerish.R' 'matchArg.R' 'qassert.R' 'qassertr.R' 'vname.R' 'wfwl.R' 'zzz.R'",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>), Bernd Bischl [ctb], Dénes Tóth [ctb] (<https://orcid.org/0000-0003-4262-3217>)",
"Maintainer": "Michel Lang <[email protected]>",
"Repository": "RSPM"
},
"cli": {
"Package": "cli",
"Version": "3.6.3",
"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",
"mockery",
"processx",
"ps (>= 1.3.4.9000)",
"rlang (>= 1.0.2.9003)",
"rmarkdown",
"rprojroot",
"rstudioapi",
"testthat",
"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.2.3",
"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.1.0",
"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": "CRAN"
},
"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"
},
"fastmap": {
"Package": "fastmap",
"Version": "1.2.0",
"Source": "Repository",
"Title": "Fast Data Structures",
"Authors@R": "c( person(\"Winston\", \"Chang\", email = \"[email protected]\", role = c(\"aut\", \"cre\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\") )",
"Description": "Fast implementation of data structures, including a key-value store, stack, and queue. Environments are commonly used as key-value stores in R, but every time a new key is used, it is added to R's global symbol table, causing a small amount of memory leakage. This can be problematic in cases where many different keys are used. Fastmap avoids this memory leak issue by implementing the map using data structures in C++.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Suggests": [
"testthat (>= 2.1.1)"
],
"URL": "https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap",
"BugReports": "https://github.com/r-lib/fastmap/issues",
"NeedsCompilation": "yes",
"Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd], Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "RSPM"
},
"fs": {
"Package": "fs",
"Version": "1.6.5",
"Source": "Repository",
"Title": "Cross-Platform File System Operations Based on 'libuv'",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A cross-platform interface to file system operations, built on top of the 'libuv' C library.",
"License": "MIT + file LICENSE",
"URL": "https://fs.r-lib.org, https://github.com/r-lib/fs",
"BugReports": "https://github.com/r-lib/fs/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"methods"
],
"Suggests": [
"covr",
"crayon",
"knitr",
"pillar (>= 1.0.0)",
"rmarkdown",
"spelling",
"testthat (>= 3.0.0)",
"tibble (>= 1.1.0)",
"vctrs (>= 0.3.0)",
"withr"
],
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Copyright": "file COPYRIGHTS",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.3",
"SystemRequirements": "GNU make",
"NeedsCompilation": "yes",
"Author": "Jim Hester [aut], Hadley Wickham [aut], Gábor Csárdi [aut, cre], libuv project contributors [cph] (libuv library), Joyent, Inc. and other Node contributors [cph] (libuv library), Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN"
},
"gh": {
"Package": "gh",
"Version": "1.4.1",
"Source": "Repository",
"Title": "'GitHub' 'API'",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"cre\", \"ctb\")), person(\"Jennifer\", \"Bryan\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Minimal client to access the 'GitHub' 'API'.",
"License": "MIT + file LICENSE",
"URL": "https://gh.r-lib.org/, https://github.com/r-lib/gh#readme",
"BugReports": "https://github.com/r-lib/gh/issues",
"Depends": [
"R (>= 3.6)"
],
"Imports": [
"cli (>= 3.0.1)",
"gitcreds",
"glue",
"httr2",
"ini",
"jsonlite",
"lifecycle",
"rlang (>= 1.0.0)"
],
"Suggests": [
"covr",
"knitr",
"mockery",
"rmarkdown",
"rprojroot",
"spelling",
"testthat (>= 3.0.0)",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.3.1.9000",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [cre, ctb], Jennifer Bryan [aut], Hadley Wickham [aut], Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "RSPM"
},
"gitcreds": {
"Package": "gitcreds",
"Version": "0.1.2",
"Source": "Repository",
"Title": "Query 'git' Credentials from 'R'",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "Query, set, delete credentials from the 'git' credential store. Manage 'GitHub' tokens and other 'git' credentials. This package is to be used by other packages that need to authenticate to 'GitHub' and/or other 'git' repositories.",
"License": "MIT + file LICENSE",
"URL": "https://gitcreds.r-lib.org/, https://github.com/r-lib/gitcreds",
"BugReports": "https://github.com/r-lib/gitcreds/issues",
"Depends": [
"R (>= 3.4)"
],
"Suggests": [
"codetools",
"covr",
"knitr",
"mockery",
"oskeyring",
"rmarkdown",
"testthat (>= 3.0.0)",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1.9000",
"SystemRequirements": "git",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Author": "Gábor Csárdi [aut, cre], RStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <[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": "CRAN"
},
"httr2": {
"Package": "httr2",
"Version": "1.0.7",
"Source": "Repository",
"Title": "Perform HTTP Requests and Process the Responses",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Maximilian\", \"Girlich\", role = \"ctb\") )",
"Description": "Tools for creating and modifying HTTP requests, then performing them and processing the results. 'httr2' is a modern re-imagining of 'httr' that uses a pipe-based interface and solves more of the problems that API wrapping packages face.",
"License": "MIT + file LICENSE",
"URL": "https://httr2.r-lib.org, https://github.com/r-lib/httr2",
"BugReports": "https://github.com/r-lib/httr2/issues",
"Depends": [
"R (>= 4.0)"
],
"Imports": [
"cli (>= 3.0.0)",
"curl (>= 6.0.1)",
"glue",
"lifecycle",
"magrittr",
"openssl",
"R6",
"rappdirs",
"rlang (>= 1.1.0)",
"vctrs (>= 0.6.3)",
"withr"
],
"Suggests": [
"askpass",
"bench",
"clipr",
"covr",
"docopt",
"httpuv",
"jose",
"jsonlite",
"knitr",
"later (>= 1.4.0)",
"paws.common",
"promises",
"rmarkdown",
"testthat (>= 3.1.8)",
"tibble",
"webfakes",
"xml2"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "resp-stream, req-perform",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd], Maximilian Girlich [ctb]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN"
},
"hubUtils": {
"Package": "hubUtils",
"Version": "0.3.0.9000",
"Source": "GitHub",
"Title": "Core 'hubverse' Utilities",
"Authors@R": "c( person(\"Anna\", \"Krystalli\", , \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-2378-4915\")), person(\"Li\", \"Shandross\", , \"[email protected]\", role = \"ctb\"), person(\"Nicholas G.\", \"Reich\", , \"[email protected]\", role = \"ctb\", comment = c(ORCID = \"0000-0003-3503-9899\")), person(\"Evan L.\", \"Ray\", , \"[email protected]\", role = \"ctb\"), person(\"Zhian N.\", \"Kamvar\", , \"[email protected]\", role = c(\"ctb\"), comment = c(ORCID = \"0000-0003-1458-7108\")), person(\"Consortium of Infectious Disease Modeling Hubs\", role = \"cph\") )",
"Description": "Core set of low-level utilities common across the 'hubverse'. Used to interact with 'hubverse' schema, Hub configuration files and model outputs and designed to be primarily used internally by other 'hubverse' packages. See Reich et al. (2022) <doi:10.2105/AJPH.2022.306831> for an overview of Collaborative Hubs.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/hubverse-org/hubUtils, https://hubverse-org.github.io/hubUtils/",
"BugReports": "https://github.com/hubverse-org/hubUtils/issues",
"Depends": [
"R (>= 2.10)"
],
"Imports": [
"checkmate",
"cli",
"curl",
"fs",
"gh",
"glue",
"jsonlite",
"lifecycle",
"magrittr",
"memoise",
"purrr",
"rlang",
"stringr",
"tibble",
"utils"
],
"Suggests": [
"arrow (>= 17.0.0)",
"dplyr",
"knitr",
"rmarkdown",
"testthat (>= 3.2.0)"
],
"Config/Needs/website": "hubverse-org/hubStyle",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"Roxygen": "list(markdown = TRUE)",
"RoxygenNote": "7.3.2",
"Author": "Anna Krystalli [aut, cre] (<https://orcid.org/0000-0002-2378-4915>), Li Shandross [ctb], Nicholas G. Reich [ctb] (<https://orcid.org/0000-0003-3503-9899>), Evan L. Ray [ctb], Zhian N. Kamvar [ctb] (<https://orcid.org/0000-0003-1458-7108>), Consortium of Infectious Disease Modeling Hubs [cph]",
"Maintainer": "Anna Krystalli <[email protected]>",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteUsername": "hubverse-org",
"RemoteRepo": "hubUtils",
"RemoteRef": "main",
"RemoteSha": "8af0884bd14dd673ad0497d09ceee15bd9629ff8"
},
"ini": {
"Package": "ini",
"Version": "0.3.1",
"Source": "Repository",
"Type": "Package",
"Title": "Read and Write '.ini' Files",
"Date": "2018-05-19",
"Author": "David Valentim Dias",
"Maintainer": "David Valentim Dias <[email protected]>",
"Description": "Parse simple '.ini' configuration files to an structured list. Users can manipulate this resulting list with lapply() functions. This same structured list can be used to write back to file after modifications.",
"License": "GPL-3",
"URL": "https://github.com/dvdscripter/ini",
"BugReports": "https://github.com/dvdscripter/ini/issues",
"LazyData": "FALSE",
"RoxygenNote": "6.0.1",
"Suggests": [
"testthat"
],
"NeedsCompilation": "no",
"Repository": "RSPM",
"Encoding": "UTF-8"
},
"jsonlite": {
"Package": "jsonlite",
"Version": "1.8.9",
"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": "CRAN"
},
"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"
},
"memoise": {
"Package": "memoise",
"Version": "2.0.1",
"Source": "Repository",
"Title": "'Memoisation' of Functions",
"Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"[email protected]\"), person(given = \"Jim\", family = \"Hester\", role = \"aut\"), person(given = \"Winston\", family = \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"), person(given = \"Kirill\", family = \"Müller\", role = \"aut\", email = \"[email protected]\"), person(given = \"Daniel\", family = \"Cook\", role = \"aut\", email = \"[email protected]\"), person(given = \"Mark\", family = \"Edmondson\", role = \"ctb\", email = \"[email protected]\"))",
"Description": "Cache the results of a function so that when you call it again with the same arguments it returns the previously computed value.",
"License": "MIT + file LICENSE",
"URL": "https://memoise.r-lib.org, https://github.com/r-lib/memoise",
"BugReports": "https://github.com/r-lib/memoise/issues",
"Imports": [
"rlang (>= 0.4.10)",
"cachem"
],
"Suggests": [
"digest",
"aws.s3",
"covr",
"googleAuthR",
"googleCloudStorageR",
"httr",
"testthat"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut], Jim Hester [aut], Winston Chang [aut, cre], Kirill Müller [aut], Daniel Cook [aut], Mark Edmondson [ctb]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "RSPM"
},
"openssl": {
"Package": "openssl",
"Version": "2.3.1",
"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": "CRAN"
},
"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": "CRAN"
},
"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"
},
"purrr": {
"Package": "purrr",
"Version": "1.0.2",
"Source": "Repository",
"Title": "Functional Programming Tools",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"[email protected]\", role = \"aut\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "A complete and consistent functional programming toolkit for R.",
"License": "MIT + file LICENSE",
"URL": "https://purrr.tidyverse.org/, https://github.com/tidyverse/purrr",
"BugReports": "https://github.com/tidyverse/purrr/issues",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [
"cli (>= 3.6.1)",
"lifecycle (>= 1.0.3)",
"magrittr (>= 1.5.0)",
"rlang (>= 1.1.1)",
"vctrs (>= 0.6.3)"
],
"Suggests": [
"covr",
"dplyr (>= 0.7.8)",
"httr",
"knitr",
"lubridate",
"rmarkdown",
"testthat (>= 3.0.0)",
"tibble",
"tidyselect"
],
"LinkingTo": [
"cli"
],
"VignetteBuilder": "knitr",
"Biarch": "true",
"Config/Needs/website": "tidyverse/tidytemplate, tidyr",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>), Lionel Henry [aut], RStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "RSPM"
},
"rappdirs": {
"Package": "rappdirs",
"Version": "0.3.3",
"Source": "Repository",
"Type": "Package",
"Title": "Application Directories: Determine Where to Save Data, Caches, and Logs",
"Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = c(\"trl\", \"cre\", \"cph\"), email = \"[email protected]\"), person(given = \"RStudio\", role = \"cph\"), person(given = \"Sridhar\", family = \"Ratnakumar\", role = \"aut\"), person(given = \"Trent\", family = \"Mick\", role = \"aut\"), person(given = \"ActiveState\", role = \"cph\", comment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"), person(given = \"Eddy\", family = \"Petrisor\", role = \"ctb\"), person(given = \"Trevor\", family = \"Davis\", role = c(\"trl\", \"aut\")), person(given = \"Gabor\", family = \"Csardi\", role = \"ctb\"), person(given = \"Gregory\", family = \"Jefferis\", role = \"ctb\"))",
"Description": "An easy way to determine which directories on the users computer you should use to save data, caches and logs. A port of Python's 'Appdirs' (<https://github.com/ActiveState/appdirs>) to R.",
"License": "MIT + file LICENSE",
"URL": "https://rappdirs.r-lib.org, https://github.com/r-lib/rappdirs",
"BugReports": "https://github.com/r-lib/rappdirs/issues",
"Depends": [
"R (>= 3.2)"
],
"Suggests": [
"roxygen2",
"testthat (>= 3.0.0)",
"covr",
"withr"
],
"Copyright": "Original python appdirs module copyright (c) 2010 ActiveState Software Inc. R port copyright Hadley Wickham, RStudio. See file LICENSE for details.",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [trl, cre, cph], RStudio [cph], Sridhar Ratnakumar [aut], Trent Mick [aut], ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs), Eddy Petrisor [ctb], Trevor Davis [trl, aut], Gabor Csardi [ctb], Gregory Jefferis [ctb]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "RSPM"
},
"renv": {
"Package": "renv",
"Version": "1.0.11.9000",
"Source": "GitHub",
"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",
"Roxygen": "list(markdown = TRUE)",
"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",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "renv",
"RemoteUsername": "rstudio",
"RemotePkgRef": "rstudio/renv",
"RemoteRef": "HEAD",
"RemoteSha": "5ea4b29910ba031261942b9d52ef7db427848c67",
"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]>"
},
"rlang": {
"Package": "rlang",
"Version": "1.1.4",
"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.1",
"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",