-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathftcsv-1.5.0-1.rockspec
More file actions
35 lines (29 loc) · 870 Bytes
/
ftcsv-1.5.0-1.rockspec
File metadata and controls
35 lines (29 loc) · 870 Bytes
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
package = "ftcsv"
version = "1.5.0-1"
source = {
url = "git://github.com/FourierTransformer/ftcsv.git",
tag = "1.5.0"
}
description = {
summary = "A fast pure lua csv library (parser and encoder)",
detailed = [[
ftcsv is a fast and easy to use csv library for lua. It can read in CSV files,
do some basic transformations (rename fields, retain, etc) and can create a CSV file.
It supports UTF-8, header-less CSVs, and maintaining correct line endings for
multi-line fields.
It supports loading an entire CSV file into memory and parsing it as well as
buffered reading of a CSV file.
]],
homepage = "https://github.com/FourierTransformer/ftcsv",
maintainer = "Fourier Transformer <ftransformer@protonmail.com>",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
["ftcsv"] = "ftcsv.lua"
},
}