Skip to content

Commit 248e33e

Browse files
committed
version changes
Added release profile
1 parent 6fd3b3a commit 248e33e

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duplicate-checker"
3-
version = "2.0.2"
3+
version = "2.1.0"
44
edition = "2021"
55
description = "A duplicate file checker"
66
license = "MIT OR Apache-2.0"
@@ -26,9 +26,15 @@ tokio = { version = "1.39.2", features = [
2626
"fs",
2727
] }
2828
tabled = "0.16.0"
29-
clap_complete = "4.5.38"
3029

3130

3231
[build-dependencies]
3332
clap = { version = "4.5.21", features = ["derive"] }
3433
clap_complete = "4.5.38"
34+
35+
[profile.release]
36+
codegen-units = 1
37+
lto = "fat"
38+
opt-level = "s"
39+
strip = true
40+
panic = "abort"

0 commit comments

Comments
 (0)