-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (58 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
74 lines (58 loc) · 1.66 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
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
cargo-features = ["codegen-backend"]
[package]
name = "csv_parser_rs"
authors = ["MrDwarf7", "Blake B. <github.com/MrDwarf7>"]
version = "2.1.0"
edition = "2024"
description = "Parses CSV's pased on a configuration, and filters out rows based on a set of criteria."
license = "MIT"
readme = "README.md"
build = "build.rs"
[package.metadata.winresource]
OriginalFilename = "csv_parser_rs.exe"
FileDescription = "A CLI tool to parse a CSV file and filter out rows based on a set of criteria."
LegalCopyright = "Copyright © 2025 by Blake B. @github.com/MrDwarf7"
#CompanyName = "https://github.com/MrDwarf7"
[target.'cfg(windows)'.build-dependencies]
windres = "0.2"
[build-dependencies]
winresource = "0.1.19"
windres = "0.2.2"
winapi = { version = "0.3.9" }
[dependencies]
clap = { version = "4.5.23", features = ["cargo", "derive", "env"] }
config = { version = "0.15.4", features = ["preserve_order"] }
csv = "1.3.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
anstyle = "1.0.10"
regex = "1.11.1"
thiserror = "*"
rayon = "1.10.0"
chrono = "0.4.39"
stderrlog = "0.6.0"
log = "0.4.22"
self_update = { version = "0.42.0", features = ["rustls"] }
[dev-dependencies]
tempdir = "0.3.7"
tempfile = "3.14.0"
[profile.dev.package."*"]
opt-level = 3
codegen-units = 1
[profile.dev]
opt-level = 1
codegen-units = 256
incremental = true
#rustflags = ["-Zthreads=16" ]
codegen-backend = "cranelift"
[profile.release]
opt-level = 3
codegen-units = 1
debug = "none"
debug-assertions = false
incremental = true
# trim-paths = "all"
#rustflags = ["-Zthreads=16" ]
# strip = "symbols" # Leave off @ w
# lto = "fat" ## Can't use with cranelift yet
# panic = "unwind"