Skip to content

Commit

Permalink
build: update the release file generation
Browse files Browse the repository at this point in the history
  • Loading branch information
AliSajid committed Jan 19, 2024
1 parent 536f6ca commit cd68ebc
Show file tree
Hide file tree
Showing 5 changed files with 17,867 additions and 6,162 deletions.
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@
"filename": "licenses_report.json",
"hashed_secret": "03962b6830f66ba88806742debeec8332bbbca4a",
"is_verified": false,
"line_number": 7660
"line_number": 12975
}
]
},
"generated_at": "2024-01-17T03:56:08Z"
"generated_at": "2024-01-19T17:30:24Z"
}
223 changes: 223 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ opt-level = 1
debug = true

[profile.release]
opt-level = 3
strip = true
lto = true
codegen-units = 1
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimisation
codegen-units = 1 # Reduced to increase optimisations.
panic = 'abort' # Abort on panic
strip = "symbols" # Strip symbols from binary

[dev-dependencies]
rstest = "0.18.2"

0 comments on commit cd68ebc

Please sign in to comment.