Skip to content

Commit 02cdf24

Browse files
author
bors-servo
authored
Auto merge of #205 - c410-f3r:fix-ci, r=mbrubeck
Fix CI Pin `cargo install honggfuzz` version to match the same version of `Cargo.toml`
2 parents b640094 + 9f2f610 commit 02cdf24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ honggfuzz_fuzz = ["honggfuzz"]
1414

1515

1616
[dependencies]
17-
honggfuzz = { version = "0.5.45", optional = true }
17+
honggfuzz = { version = "0.5.47", optional = true }
1818
afl = { version = "0.4", optional = true }
1919
smallvec = { path = ".." }
2020

fuzz/travis-fuzz.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -e
3-
cargo install --force honggfuzz
3+
cargo install --force honggfuzz --version 0.5.47
44
for TARGET in fuzz_targets/*; do
55
FILENAME=$(basename $TARGET)
66
FILE="${FILENAME%.*}"

0 commit comments

Comments
 (0)