-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (25 loc) · 852 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
[package]
name = "latexmailmerge"
description = "A small command line tool which converts a CSV file into LaTeX commands for mail merges."
authors = ["Jan Martin Reckel"]
readme = "README.md"
license = "GPL-3.0"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "latexmailmerge"
path = "src/main.rs"
[lib]
name = "latexmailmerge"
path = "src/lib.rs"
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*
[dependencies]
clap = { version = "4.0.29", features = ["derive"] }
unicode-segmentation = "1.10.0"