Skip to content

Commit 5197f21

Browse files
authored
fuzz: do not use inherits in Cargo.toml
This fixes the oss-fuzz build. Specifically, the build log[1] showed this error: Step #3 - "compile-libfuzzer-address-x86_64": error: inherits must not be specified in root profile dev So we just remove it and inline the settings. PR #817 [1] - https://oss-fuzz-build-logs.storage.googleapis.com/log-c9b61873-8950-4a50-a729-820d5617ff7a.txt
1 parent 3662851 commit 5197f21

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

fuzz/Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ opt-level = 3
2929
debug = true
3030

3131
[profile.dev]
32-
inherits = "release"
32+
opt-level = 3
33+
debug = true
3334

3435
[profile.test]
35-
inherits = "release"
36+
opt-level = 3
37+
debug = true

0 commit comments

Comments
 (0)