SQLite-backed Key / Value Store
1
fork

Configure Feed

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

Merge pull request #19 from Tyrannican/reduce-bin-size

chore: reduced binary size

authored by

Graham Keenan and committed by
GitHub
dbedd652 ea511c30

+12 -1
+4
CHANGELOG.md
··· 2 2 3 3 Documenting changes between versions beginning from v0.3.0 4 4 5 + ## v0.10.2 6 + 7 + * Reduced binary size - no other changes 8 + 5 9 ## v0.10.1 6 10 7 11 * Added new command to display the currently loaded environment
+8 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "safir" 3 - version = "0.10.1" 3 + version = "0.10.2" 4 4 edition = "2021" 5 5 authors = ["Graham Keenan <graham.keenan@outlook.com>"] 6 6 license = "MIT OR Apache-2.0" ··· 25 25 [profile.dist] 26 26 inherits = "release" 27 27 lto = "thin" 28 + 29 + [profile.release] 30 + strip = true 31 + opt-level = "z" 32 + lto = true 33 + codegen-units = 1 34 + panic = "abort" 28 35 29 36 # Config for 'cargo dist' 30 37 [workspace.metadata.dist]