summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 4bdde070e0c1f697228a62956e159bf973ad0c5f (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
[package]
name = "xsv"
version = "0.4.6"
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"

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

[profile.test]
opt-level = 2

[dependencies]
csv = "0.*"
streaming-stats = "0.1.*"
tabwriter = "0.1.*"
docopt = "0.6.*"
quickcheck = "0.1.*"

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

# [dependencies.streaming-stats]
# path = "/home/andrew/data/projects/rust/rust-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]
# path = "/home/andrew/data/projects/rust/quickcheck"
# git = "git://github.com/BurntSushi/quickcheck"

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

[[test]]
name = "tests"