diff --git a/Cargo.toml b/Cargo.toml index eefb316..7c054fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,15 @@ resolver = "2" members = [ "src-tauri" ] +[profile.release] +strip = true +opt-level = 3 +codegen-units = 1 +panic = "abort" +debug-assertions = false +overflow-checks = false +lto = true + [workspace.dependencies] tauri = "2" serde = "1" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 5146e01..d22d5e0 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -3,7 +3,7 @@ name = "bongo-cat" version = "0.4.0" description = "A Tauri App" authors = [ "ayangweb" ] -edition = "2021" +edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src-tauri/src/plugins/window/Cargo.toml b/src-tauri/src/plugins/window/Cargo.toml index f522032..8a85a21 100644 --- a/src-tauri/src/plugins/window/Cargo.toml +++ b/src-tauri/src/plugins/window/Cargo.toml @@ -3,8 +3,8 @@ name = "tauri-plugin-custom-window" version = "0.1.0" authors = [] description = "" -edition = "2021" -rust-version = "1.77.2" +edition = "2024" +rust-version = "1.85.0" links = "tauri-plugin-custom-window" [dependencies]