Skip to content

Commit

Permalink
Cargo.toml: exclude uuid from machete
Browse files Browse the repository at this point in the history
For some reason cargo-machete shows false positive of uuid, which is
actually needed for building ue-rs. Exlude uuid from machete.
  • Loading branch information
dongsupark committed Jul 24, 2024
1 parent 4f737c9 commit a5aac84
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,7 @@ strip = true
# Reduce binary size by using one codegen unit for similar gains as thin LTO
# (which we had problem with when cross-compiling)
codegen-units = 1

# cargo-machete shows false positive of uuid, which is actually needed.
[package.metadata.cargo-machete]
ignored = ["uuid"]

0 comments on commit a5aac84

Please sign in to comment.