-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Performance improvements and new release (#20)
* massive speedup by removing pcall * updated readme with benchmarks and getting ready for another release
- Loading branch information
1 parent
8bd8fbe
commit 705d3a5
Showing
4 changed files
with
69 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package = "ftcsv" | ||
version = "1.1.6-1" | ||
|
||
source = { | ||
url = "git://github.com/FourierTransformer/ftcsv.git", | ||
tag = "1.1.6" | ||
} | ||
|
||
description = { | ||
summary = "A fast pure lua csv library (parser and encoder)", | ||
detailed = [[ | ||
ftcsv works well for CSVs that can easily be fully loaded into memory (easily up to a hundred MB) and correctly handles `\n` (LF), `\r` (CR) and `\r\n` (CRLF) line endings. It has UTF-8 support, and will strip out the BOM if it exists. ftcsv can also parse headerless csv-like files and supports column remapping, file or string based loading, and more! | ||
Note: Currently it cannot load CSV files where the file can't fit in memory. | ||
]], | ||
homepage = "https://github.com/FourierTransformer/ftcsv", | ||
maintainer = "Shakil Thakur <[email protected]>", | ||
license = "MIT" | ||
} | ||
|
||
dependencies = { | ||
"lua >= 5.1, <5.4", | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
modules = { | ||
["ftcsv"] = "ftcsv.lua" | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters