Release v0.3.0 (2022-01-19)
A couple of additions and improvements, thanks to @fmeum, including:
- UBSan is now a supported instrumentation for local fuzzing and regression testing (#187)
- The rules are tested to be compatible with GCC (#177).
- Jazzer and Abseil dependency updates.
Workspace setup
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_fuzzing",
sha256 = "9119103fad9c3de30900ec3d37c1e8327fa06c033558070c0f6a159921670ff8",
strip_prefix = "rules_fuzzing-0.3.0",
urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.3.0.zip"],
)
load("@rules_fuzzing//fuzzing:repositories.bzl", "rules_fuzzing_dependencies")
rules_fuzzing_dependencies()
load("@rules_fuzzing//fuzzing:init.bzl", "rules_fuzzing_init")
rules_fuzzing_init()