Skip to content

Commit

Permalink
Merge pull request #37 from BrowserSync/binary_size
Browse files Browse the repository at this point in the history
Binary size (18mb to 7)
  • Loading branch information
shakyShane authored Nov 4, 2024
2 parents ef43d07 + e6bf817 commit 2e3517e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,11 @@ toml = { version = "0.8.12" }
mime_guess = "2.0.4"
tempfile = "3.10.1"
insta = { version = "1.38.0", features = ["yaml"] }
miette = { version = "7.2.0", features = ["fancy", "syntect-highlighter"] }
miette = { version = "7.2.0", features = ["fancy", "syntect-highlighter"] }

[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"

0 comments on commit 2e3517e

Please sign in to comment.