Skip to content

Commit 574835f

Browse files
liuw1jyao1
authored andcommitted
Fix oss-fuzz build failure issue
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 <[email protected]>
1 parent 7b7a873 commit 574835f

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

td-loader/fuzz/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ libfuzzer-sys = {version = "0.4", optional = true }
1313
afl = {version = "*", optional = true }
1414
log = "0.4.13"
1515
arbitrary = "=1.1.3"
16+
serde = "=1.0.198"
1617

1718
[dependencies.td-loader]
1819
path = ".."

td-shim-interface/fuzz/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ libfuzzer-sys = {version = "0.4", optional = true }
1414
afl = {version = "*", optional = true }
1515
r-efi = "3.2.0"
1616
arbitrary = "=1.1.3"
17+
serde = "=1.0.198"
1718

1819
[dependencies.td-shim-interface]
1920
path = ".."

td-shim/fuzz/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ libfuzzer-sys = {version = "0.4", optional = true }
1414
afl = {version = "*", optional = true }
1515
r-efi = "3.2.0"
1616
arbitrary = "=1.1.3"
17+
serde = "=1.0.198"
1718

1819
[dependencies.td-shim]
1920
path = ".."

0 commit comments

Comments
 (0)