forked from tidyverse/vroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
79 lines (79 loc) · 2.1 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
75
76
77
78
79
Package: vroom
Title: Read and Write Rectangular Text Data Quickly
Version: 1.0.2.9000
Authors@R:
c(person(given = "Jim",
family = "Hester",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-2739-7082")),
person(given = "Hadley",
family = "Wickham",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-4757-117X")),
person(given = "https://github.com/mandreyel/",
role = "cph",
comment = "mio library"),
person(given = "R Core Team",
role = "ctb",
comment = "localtime.c code adapted from R"),
person(given = "Jukka",
family = "Jylänki",
role = "cph",
comment = "grisu3 implementation"),
person(given = "Mikkel",
family = "Jørgensen",
role = "cph",
comment = "grisu3 implementation"),
person(given = "RStudio",
role = c("cph", "fnd")))
Description: The goal of 'vroom' is to read and write data (like
'csv', 'tsv' and 'fwf') quickly. When reading it uses a quick initial
indexing step, then reads the values lazily , so only the data you
actually use needs to be read. The writer formats the data in
parallel and writes to disk asynchronously from formatting.
License: GPL-3
URL: https://github.com/r-lib/vroom
BugReports: https://github.com/r-lib/vroom/issues
Depends:
R (>= 3.1)
Imports:
crayon,
glue,
hms,
Rcpp (>= 0.12.18.3),
rlang,
tibble (>= 2.0.0),
tidyselect,
withr
Suggests:
bench (>= 1.0.2),
covr,
curl,
dplyr,
forcats,
fs,
ggplot2,
knitr,
prettyunits,
purrr,
readr (>= 1.3.1),
rmarkdown,
rstudioapi,
scales,
spelling,
testthat,
tidyr
LinkingTo:
progress (>= 1.2.1),
Rcpp
VignetteBuilder:
knitr
Copyright: file COPYRIGHTS
Encoding: UTF-8
Language: en-US
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 6.1.1
SystemRequirements: C++11