MODULE.bazel 502 B

1234567891011121314151617181920
  1. # Copyright 2025 The Brotli Authors. All rights reserved.
  2. #
  3. # Distributed under MIT license.
  4. # See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
  5. """Brotli reference implementation"""
  6. module(
  7. name = "brotli_fuzz",
  8. version = "1.1.0",
  9. repo_name = "org_brotli_fuzz",
  10. )
  11. bazel_dep(name = "rules_fuzzing", version = "0.5.2")
  12. bazel_dep(name = "brotli", version = "1.1.0", repo_name = "org_brotli")
  13. local_path_override(
  14. module_name = "brotli",
  15. path = "../..",
  16. )