We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1753b84 commit 65fdff7Copy full SHA for 65fdff7
Cargo.toml
@@ -3,6 +3,12 @@ name = "home-watcher"
3
version = "0.1.0"
4
edition = "2021"
5
6
+[profile.release]
7
+strip = true # Automatically strip symbols from the binary.
8
+opt-level = "z" # Optimize for size.
9
+lto = true
10
+codegen-units = 1
11
+
12
[dependencies]
13
clap = { version = "4.5.27", features = ["derive", "string"] }
14
rusqlite = { version = "0.33.0", features = ["bundled"] }
0 commit comments