a simple web player for subsonic tinysub.devins.page
subsonic navidrome javascript
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: compiler optimizations

+10
+10
src-tauri/Cargo.toml
··· 22 22 tauri = { version = "2.11.1", features = [] } 23 23 tauri-plugin-log = "2" 24 24 tauri-plugin-localhost = "2" 25 + 26 + [profile.dev] 27 + incremental = true # Compile your binary in smaller steps. 28 + 29 + [profile.release] 30 + codegen-units = 1 # Allows LLVM to perform better optimization. 31 + lto = true # Enables link-time-optimizations. 32 + opt-level = "s" # Prioritizes small binary size. Use `3` if you prefer speed. 33 + panic = "abort" # Higher performance by disabling panic handlers. 34 + strip = true # Ensures debug symbols are removed.