-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (33 loc) · 855 Bytes
/
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
[package]
name = "xtab"
version = "0.0.9"
authors = ["sharkLoc <[email protected]>"]
edition = "2021"
homepage = "https://github.com/sharkLoc/xtab"
description = "xtab: CSV command line utilities"
repository = "https://github.com/sharkLoc/xtab"
keywords = ["csv","tsv","xlsx"]
categories = ["command-line-utilities"]
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.82"
atty = "0.2.14"
bzip2 = "0.4.4"
calamine = "0.24.0"
chrono = "0.4.38"
clap = { version = "4.5.4", features = ["derive", "wrap_help"] }
comfy-table = "7.1.1"
csv = "1.3.0"
env_logger = "0.10.0"
flate2 = "1.0.28"
log = "0.4.21"
rand = "0.8.5"
rand_pcg = "0.3.1"
regex = "1.10.4"
rust_xlsxwriter = "0.64.2"
thiserror = "1.0.60"
xz2 = "0.1.7"
[profile.release]
strip = true