build(deps): bump honggfuzz from 0.5.52 to 0.5.54

Bumps [honggfuzz](https://github.com/rust-fuzz/honggfuzz-rs) from 0.5.52 to 0.5.54.
- [Release notes](https://github.com/rust-fuzz/honggfuzz-rs/releases)
- [Commits](https://github.com/rust-fuzz/honggfuzz-rs/compare/v0.5.52...v0.5.54)

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2021-03-30 16:44:53 +00:00 committed by GitHub
parent a029447484
commit 98d05bf953
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 7 deletions

18
Cargo.lock generated
View File

@ -70,6 +70,12 @@ dependencies = [
"derive_arbitrary",
]
[[package]]
name = "arbitrary"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "698b65a961a9d730fb45b6b0327e20207810c9f61ee421b082b27ba003f49e2b"
[[package]]
name = "arrayref"
version = "0.3.6"
@ -1396,11 +1402,11 @@ dependencies = [
[[package]]
name = "honggfuzz"
version = "0.5.52"
version = "0.5.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ead88897bcad1c396806d6ccba260a0363e11da997472e9e19ab9889969083a2"
checksum = "bea09577d948a98a5f59b7c891e274c4fb35ad52f67782b3d0cb53b9c05301f1"
dependencies = [
"arbitrary",
"arbitrary 1.0.0",
"lazy_static",
"memmap",
]
@ -3670,7 +3676,7 @@ dependencies = [
name = "spl-binary-oracle-pair"
version = "0.1.0"
dependencies = [
"arbitrary",
"arbitrary 0.4.7",
"borsh 0.8.2",
"num-derive",
"num-traits",
@ -3948,7 +3954,7 @@ dependencies = [
name = "spl-token-swap"
version = "0.1.0"
dependencies = [
"arbitrary",
"arbitrary 0.4.7",
"arrayref",
"enum_dispatch",
"num-derive",
@ -3966,7 +3972,7 @@ dependencies = [
name = "spl-token-swap-fuzz"
version = "0.0.1"
dependencies = [
"arbitrary",
"arbitrary 0.4.7",
"honggfuzz",
"solana-program",
"spl-math",

View File

@ -9,7 +9,7 @@ edition = "2018"
publish = false
[dependencies]
honggfuzz = { version = "0.5.52" }
honggfuzz = { version = "0.5.54" }
arbitrary = { version = "0.4", features = ["derive"] }
solana-program = "1.6.2"
spl-math = { version = "0.1", path = "../../../libraries/math", features = [ "no-entrypoint" ] }