-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
102 lines (98 loc) · 2.25 KB
/
Cargo.toml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "xan"
version = "0.35.0" #:version
authors = [
"Andrew Gallant <[email protected]>",
"Guillaume Plique <[email protected]>",
"Béatrice Mazoyer <[email protected]>",
"Laura Miguel <[email protected]>",
"César Pichon <[email protected]>",
"Anna Charles <[email protected]>",
"Julien Pontoire <[email protected]>"
]
description = "The CSV magician"
documentation = "https://github.com/medialab/xan#readme"
homepage = "https://github.com/medialab/xan"
repository = "https://github.com/medialab/xan"
readme = "README.md"
keywords = ["csv", "tsv", "cli"]
license = "Unlicense OR MIT"
autotests = false
edition = "2021"
include = [
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"UNLICENSE",
"src/**/*.rs",
"src/**/*.pest",
"tests/**/*.rs"
]
[[bin]]
name = "xan"
test = true
bench = false
doctest = false
[[test]]
name = "tests"
[dependencies]
aho-corasick = "1.1.3"
arrayvec = "0.7.4"
bstr = "1.10.0"
byteorder = "1"
bytesize = "1.3.0"
calamine = "0.24.0"
colored = "2.0.0"
console = "0.15.8"
crossbeam-channel = "0.2.4"
csv = "1.2.2"
csv-index = "0.1.6"
ctrlc = "3.4.4"
deepsize = "0.2.0"
dlv-list = "0.5.2"
docopt = "1"
emojis = "0.6.1"
encoding = "0.2.33"
ext-sort = { version = "0.1.4", features = ["memory-limit"] }
filetime = "0.1"
flate2 = "1.0.27"
glob = "0.3.1"
hyperloglogplus = "0.4.1"
indexmap = "2.5.0"
indicatif = "0.17.8"
jiff = "0.1.13"
lazy_static = "1.4.0"
md5 = "0.7.0"
namedlock = "0.7.0"
numfmt = "1.1.1"
num_cpus = "1.4"
opener = "0.7.2"
ordered-float = "4.2.2"
paltoquet = "0.11.0"
pariter = "0.5.1"
pest = "2.7.11"
pest_derive = "2.7.11"
rand = "0.8.5"
rand_chacha = "0.3.1"
rand_seeder = "0.2.3"
ratatui = { version = "0.28.1", default-features = false }
rayon = "1.8.0"
regex = "1"
rust_xlsxwriter = "0.79.4"
serde = "1"
serde_derive = "1"
serde_json = { version = "1.0", features = ["preserve_order"] }
shlex = "1.3.0"
toml = "0.8.19"
termsize = "0.1.8"
textwrap = "0.16.1"
threadpool = "1.3"
thread_local = "1.1.8"
transient-btree-index = "0.5.1"
unidecode = "0.3.0"
unicode-segmentation = "1.12.0"
unicode-width = "0.2.0"
uuid = { version = "0.8.2", features = ["v4"] }
# NOTE: pager does not work on windows
[target.'cfg(not(windows))'.dependencies]
pager = "0.16.1"