Skip to content

Commit fc9e13c

Browse files
authored
feat: strip symbols and enable LTO (#197)
Strips symbols from the release build and enables LTO, which results in some reduction in size of the binary.
1 parent 834b8fe commit fc9e13c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ include = ["/src", "/examples", "/benches"]
2020
[lib]
2121
doctest = false
2222

23+
[profile.release]
24+
strip = true
25+
lto = true
26+
2327
[[bench]]
2428
name = "resolver"
2529
harness = false

0 commit comments

Comments
 (0)