cargo-bolero: 0.9.0 → 0.11.2

Thanks to newly introduced `random` engine, it is possible to use it
on rustc from Nixpkgs with `--sanitizer NONE --engine random`.
Other engines do not work because of https://www.github.com/camshaft/bolero/issues/79.
Honggfuzz is still disabled by default, and it got broken by binutils bump anyway
https://www.github.com/camshaft/bolero/issues/233.

- 0.10.0:
  https://github.com/camshaft/bolero/compare/v0.9.0...36d41b8fea358b30afbc63f2c189ca608470c1fb
- 0.11.0:
  36d41b8fea...be95281871
- 0.11.1:
  https://www.github.com/camshaft/bolero/pull/230
  be95281871...004acbf825
- 0.11.2:
  004acbf825...b2f578f843

Also add update script.
This commit is contained in:
Jan Tojnar 2024-06-11 14:09:47 +02:00
parent c7b821ba2e
commit 71efa22e55

View File

@ -1,18 +1,22 @@
{ lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind }:
{ lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind, nix-update-script }:
rustPlatform.buildRustPackage rec {
pname = "cargo-bolero";
version = "0.9.0";
version = "0.11.2";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-BuqbM55P/st+4XUSCwrqILUUCfwvSlxhKQFO+IZLa8U=";
sha256 = "sha256-Xcu91CbIDBLSojWQJjvdFWJiqjMteAxF105lemCAipk=";
};
cargoSha256 = "sha256-+TxMOKoId13meXqmr1QjDZMNqBnPEDQF1VSPheq8Ji0=";
cargoSha256 = "sha256-QLtf42Il+XHWeaUdh8jNNWU1sXaVe82sYOKiHLoXw2M=";
buildInputs = [ libbfd libopcodes libunwind ];
passthru = {
updateScript = nix-update-script { };
};
meta = with lib; {
description = "Fuzzing and property testing front-end framework for Rust";
mainProgram = "cargo-bolero";