Skip to content

Commit

Permalink
Fix oss-fuzz build failure issue
Browse files Browse the repository at this point in the history
Since the compiler of oss-fuzz is not the latest version, so it will meet build failure for crate "serde 1.0.204". So we use a fixed version serde "1.0.198" to fix the issue.

Signed-off-by: Wei Liu <wei3.liu@intel.com>
  • Loading branch information
liuw1 committed Jul 11, 2024
1 parent a9bf77c commit c489ac2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions spdmlib/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
fuzzlib = { path = "../../fuzz-target/fuzzlib", default-features = false }
serde = "=1.0.198"

[dependencies.spdmlib]
path = ".."
Expand Down

0 comments on commit c489ac2

Please sign in to comment.