Pin honggfuzz to 0.5.52 (#1072)

This commit is contained in:
Jon Cinque 2021-01-14 23:07:07 +01:00 committed by GitHub
parent 0173788a07
commit fd24042815
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 12 deletions

View File

@ -34,8 +34,6 @@ jobs:
~/.cargo/git
target
key: cargo-fuzz-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-fuzz-
- uses: actions/cache@v2
with:
@ -43,8 +41,6 @@ jobs:
~/.cargo/bin/cargo-hfuzz
~/.cargo/bin/cargo-honggfuzz
key: cargo-fuzz-bins-${{ runner.os }}
restore-keys: |
cargo-fuzz-bins-${{ runner.os }}-
- uses: actions/cache@v2
with:

View File

@ -236,8 +236,6 @@ jobs:
~/.cargo/git
target
key: cargo-fuzz-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-fuzz-
- uses: actions/cache@v2
with:
@ -245,8 +243,6 @@ jobs:
~/.cargo/bin/cargo-hfuzz
~/.cargo/bin/cargo-honggfuzz
key: cargo-fuzz-bins-${{ runner.os }}
restore-keys: |
cargo-fuzz-bins-${{ runner.os }}-
- uses: actions/cache@v2
with:

4
Cargo.lock generated
View File

@ -1360,9 +1360,9 @@ dependencies = [
[[package]]
name = "honggfuzz"
version = "0.5.51"
version = "0.5.52"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f085725a5828d7e959f014f624773094dfe20acc91be310ef106923c30594bc"
checksum = "ead88897bcad1c396806d6ccba260a0363e11da997472e9e19ab9889969083a2"
dependencies = [
"arbitrary",
"lazy_static",

View File

@ -9,6 +9,6 @@ set -x
cargo --version
cargo install rustfilt || true
cargo install honggfuzz || true
cargo install honggfuzz --version=0.5.52 || true
cargo +"$rust_stable" build-bpf --version

View File

@ -9,7 +9,7 @@ edition = "2018"
publish = false
[dependencies]
honggfuzz = { version = "0.5" }
honggfuzz = { version = "0.5.52" }
arbitrary = { version = "0.4", features = ["derive"] }
solana-program = "1.5.1"
spl-token = { version = "3.0", path = "../../../token/program", features = [ "no-entrypoint" ] }