Skip to content

Commit

Permalink
feat: Enable fat LTO and initial fuzz tests
Browse files Browse the repository at this point in the history
  • Loading branch information
np22-jpg committed Nov 4, 2024
1 parent 2c0c661 commit 6828768
Show file tree
Hide file tree
Showing 7 changed files with 2,100 additions and 4 deletions.
41 changes: 41 additions & 0 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[workspace]
members = ["lib", "command", "bin", "e2e"]
resolver = "2" # consistent with rust edition 2021, see https://doc.rust-lang.org/cargo/reference/resolver.html#features
members = ["lib", "command", "bin", "e2e", "fuzz"]
resolver = "2" # consistent with rust edition 2021, see https://doc.rust-lang.org/cargo/reference/resolver.html#features

[profile.release]
lto = true
lto = "fat"
codegen-units = 1
debug = true
4 changes: 4 additions & 0 deletions fuzz/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
target
corpus
artifacts
coverage
Loading

0 comments on commit 6828768

Please sign in to comment.