summaryrefslogtreecommitdiff
path: root/debian/control
blob: 231f3d1cbe942dbe5fd0435474c4b1a17f8a8e60 (plain)
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
Source: fast-cpp-csv-parser
Section: devel
Priority: optional
Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net>
Build-Depends: 
 debhelper (>= 9)
Standards-Version: 3.9.5
Homepage: https://code.google.com/p/fast-cpp-csv-parser/
Vcs-Git: git://anonscm.debian.org/collab-maint/fast-cpp-csv-parser.git
Vcs-Browser: http://anonscm.debian.org/cgit/collab-maint/fast-cpp-csv-parser.git

Package: fast-cpp-csv-parser
Architecture: all
Depends: ${misc:Depends}
Description: Fast C++ CSV Parser
 Automatically rearranges columns by parsing the header line.
 Disk I/O and CSV-parsing are overlapped using threads for efficiency.
 Parsing features such as escaped strings can be enabled and disabled 
 at compile time using templates. You only pay in speed for the 
 features you actually use.
 Can read multiple GB files in reasonable time.
 Support for custom columns separators (i.e. Tab separated value files 
 are supported), quote escaped strings, automatic space trimming.
 Works with *nix and Windows newlines and automatically ignores UTF-8 BOMs.
 Exception classes with enough context to format useful error messages. 
 what() returns error messages ready to be shown to a user.