summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 3f507ac0f371bce5279d55a9ddc8f1edbc817a54 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "xsv"
version = "0.9.5"  #: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
lto = true

[profile.test]
opt-level = 2

[dependencies]
byteorder = "*"
csv = "*"
docopt = "*"
filetime = "*"
libc = "*"
rand = "*"
regex = "*"
rustc-serialize = "*"
streaming-stats = "*"
tabwriter = "*"
threadpool = "*"

[dev-dependencies]
quickcheck = "*"
log = "*"

# [dependencies.csv]
# path = "/home/andrew/rust/csv"
# git = "git://github.com/BurntSushi/rust-csv"

# [dependencies.streaming-stats]
# path = "/home/andrew/data/projects/rust/streaming-stats"
# git = "git://github.com/BurntSushi/rust-stats"
#
# [dependencies.tabwriter]
# path = "/home/andrew/data/projects/rust/tabwriter"
# git = "git://github.com/BurntSushi/tabwriter"
#
# [dependencies.docopt]
# path = "/home/andrew/data/projects/rust/docopt"
# git = "git://github.com/docopt/docopt.rs"
#

# [dev-dependencies.quickcheck]
# version = "*"
# path = "/home/andrew/rust/quickcheck"