2018-06-04 15:53:16 +00:00
|
|
|
workspace(name = "org_brotli_go")
|
|
|
|
|
|
|
|
local_repository(
|
|
|
|
name = "org_brotli",
|
|
|
|
path = "..",
|
|
|
|
)
|
|
|
|
|
2019-02-19 10:14:20 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
|
2018-06-04 15:53:16 +00:00
|
|
|
http_archive(
|
|
|
|
name = "io_bazel_rules_go",
|
2021-03-24 14:05:23 +00:00
|
|
|
sha256 = "69de5c704a05ff37862f7e0f5534d4f479418afc21806c887db544a316f3cb6b",
|
2019-07-16 15:49:14 +00:00
|
|
|
urls = [
|
2021-03-24 14:05:23 +00:00
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.27.0/rules_go-v0.27.0.tar.gz",
|
|
|
|
"https://github.com/bazelbuild/rules_go/releases/download/v0.27.0/rules_go-v0.27.0.tar.gz",
|
2019-07-16 15:49:14 +00:00
|
|
|
],
|
2018-06-04 15:53:16 +00:00
|
|
|
)
|
|
|
|
|
2021-03-24 14:05:23 +00:00
|
|
|
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
|
|
|
|
|
2018-06-04 15:53:16 +00:00
|
|
|
go_rules_dependencies()
|
2021-03-24 14:05:23 +00:00
|
|
|
|
2021-08-31 12:07:17 +00:00
|
|
|
go_register_toolchains(version = "1.16")
|