Release v0.1.0 (2021-02-05)
New features
This is the first release of the fuzzing rules. See the README file for all features currently supported.
WORKSPACE setup
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_fuzzing",
sha256 = "71fa2724c9802c597199a86111a0499fc4fb22426d322334d3f191dadeff5132",
strip_prefix = "rules_fuzzing-0.1.0",
urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.1.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()