-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (45 loc) · 1 KB
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
[package]
authors = ["Magnus Åberg <himself@magnusaberg.me>"]
name = "csvpeek-rs"
version = "0.1.1"
edition = "2021"
description = "A CLI tool to quickly peek into, list, and filter CSV data."
license = "GPL-3.0-only"
repository = "https://github.com/the-commits/csvpeek-rs"
readme = "README.md"
keywords = ["csv", "cli", "data", "peek", "filter"]
categories = ["command-line-utilities", "text-processing"]
publish = true
[dependencies]
clap = { version = "4.5.4", features = ["derive", "cargo"] }
rand = "0.9.3"
csv = "1.3"
regex = "1"
once_cell = "1"
anyhow = "1"
[dev-dependencies]
assert_cmd = "2.0.17"
predicates = "3.1"
tempfile = "3.10"
[profile.dev]
opt-level = 0
debug = true
strip = "none"
debug-assertions = true
overflow-checks = true
lto = false
panic = "unwind"
incremental = true
codegen-units = 256
rpath = false
[profile.release]
opt-level = "z"
debug = false
strip = true
debug-assertions = false
overflow-checks = false
lto = true
panic = "abort"
incremental = false
codegen-units = 1
rpath = false