1[package]
2name = "xsv"
3version = "0.13.0"  #:version
4authors = ["Andrew Gallant <jamslam@gmail.com>"]
5description = "A high performance CSV command line toolkit."
6documentation = "http://burntsushi.net/rustdoc/xsv/"
7homepage = "https://github.com/BurntSushi/xsv"
8repository = "https://github.com/BurntSushi/xsv"
9readme = "README.md"
10keywords = ["csv", "tsv", "slice", "command"]
11license = "Unlicense/MIT"
12
13[[bin]]
14name = "xsv"
15test = false
16bench = false
17doctest = false
18
19[[test]]
20name = "tests"
21
22[profile.release]
23opt-level = 3
24debug = true
25
26[profile.test]
27opt-level = 3
28
29[dependencies]
30byteorder = "1"
31chan = "0.1"
32csv = "1"
33csv-index = "0.1.5"
34docopt = "1"
35filetime = "0.1"
36num_cpus = "1.4"
37rand = "0.4"
38regex = "1"
39serde = "1"
40serde_derive = "1"
41streaming-stats = "0.2"
42tabwriter = "1"
43threadpool = "1.3"
44
45[dev-dependencies]
46quickcheck = { version = "0.6", default-features = false }
47log = "0.4"
48