1############################################################################### 2# Bzlmod and WORKSPACE can work side by side, which allows migrating dependencies 3# from the WORKSPACE file to Bzlmod to be a gradual process. 4# https://bazel.build/external/migration#hybrid-mode 5############################################################################### 6# rule http_archive 7load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") 8 9# rules_cc 10# https://github.com/bazelbuild/rules_cc/releases 11http_archive( 12 name = "rules_cc", 13 urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.0.10-rc1/rules_cc-0.0.10-rc1.tar.gz"], 14 sha256 = "d75a040c32954da0d308d3f2ea2ba735490f49b3a7aa3e4b40259ca4b814f825", 15)