-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 875 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
[package]
name = "quadlet-rs"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "1.3"
dirs = "5.0"
log = { version = "0.4.22", features = ['std'] }
ordered-multimap = "0.7"
regex-lite = "0.1.6"
thiserror = "2.0.1"
users = "0.11"
walkdir = "2"
[dev-dependencies]
serial_test = { version = "*", default_features = false, features = [
"logging",
] } # ignore `async` and `futures`
tempfile = "3.12.0"
# optimize with tips from https://github.com/johnthagen/min-sized-rust
[profile.release]
# unpotimized file size with rustc 1.76.0: 1.1M
strip = true # no changes to binary size
lto = "fat"
panic = "abort"
codegen-units = 1
opt-level = "s"
inline-threshold = 7 # adapted from "Tighten Rust's Belt, Ayers et al., 2022"
[profile.dev]
split-debuginfo = "unpacked"