MODULE.bazel 554 B

123456789101112131415161718192021
  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_research",
  8. version = "1.1.0",
  9. repo_name = "org_brotli_research",
  10. )
  11. bazel_dep(name = "divsufsort", version = "2.0.1")
  12. bazel_dep(name = "esaxx", version = "20250106.0")
  13. bazel_dep(name = "brotli", version = "1.1.0", repo_name = "org_brotli")
  14. local_path_override(
  15. module_name = "brotli",
  16. path = "..",
  17. )