Skip to content

Commit

Permalink
Update Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dre-bk201 committed Oct 22, 2023
1 parent d3f5268 commit cecd398
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ tauri-build = { version = "1.4.0", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.4.1", features = [ "updater", "clipboard-write-text", "window-set-fullscreen", "os-all",
tauri = { version = "1.4.1", features = [
"updater",
"clipboard-write-text",
"window-set-fullscreen",
"os-all",
"dialog-open",
"dialog-save",
"window-close",
Expand Down Expand Up @@ -63,8 +67,8 @@ assert_fs = "*"
custom-protocol = ["tauri/custom-protocol"]

[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols

0 comments on commit cecd398

Please sign in to comment.