diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 3de18e4..8c96067 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -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", @@ -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