summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ebb93706dc9e5a36ade5280fbafbae889de4490e (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "xsv"
version = "0.12.2"  #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "A high performance CSV command line toolkit."
documentation = "http://burntsushi.net/rustdoc/xsv/"
homepage = "https://github.com/BurntSushi/xsv"
repository = "https://github.com/BurntSushi/xsv"
readme = "README.md"
keywords = ["csv", "tsv", "slice", "command"]
license = "Unlicense/MIT"

[[bin]]
name = "xsv"
test = false
bench = false
doctest = false

[[test]]
name = "tests"

[profile.release]
opt-level = 3
debug = true

[profile.test]
opt-level = 3

[dependencies]
byteorder = "1"
chan = "0.1"
csv = "1.0.0-beta.4"
csv-index = "0.1.3"
docopt = "0.7"
filetime = "0.1"
num_cpus = "1.4"
rand = "0.3.15"
regex = "0.2"
rustc-serialize = "0.3"
streaming-stats = "0.1"
tabwriter = "1"
threadpool = "1.3"

[dev-dependencies]
quickcheck = { version = "0.4", default-features = false }
log = "0.3"
serde = "1"
serde_derive = "1"