71 lines
2.1 KiB
Python
71 lines
2.1 KiB
Python
workspace(name = "grpc_ecosystem_grpc_gateway")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
http_archive(
|
|
name = "io_bazel_rules_go",
|
|
sha256 = "6776d68ebb897625dead17ae510eac3d5f6342367327875210df44dbe2aeeb19",
|
|
urls = ["https://github.com/bazelbuild/rules_go/releases/download/0.17.1/rules_go-0.17.1.tar.gz"],
|
|
)
|
|
|
|
http_archive(
|
|
name = "bazel_gazelle",
|
|
sha256 = "3c681998538231a2d24d0c07ed5a7658cb72bfb5fd4bf9911157c0e9ac6a2687",
|
|
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/0.17.0/bazel-gazelle-0.17.0.tar.gz"],
|
|
)
|
|
|
|
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
|
|
|
|
go_rules_dependencies()
|
|
|
|
go_register_toolchains()
|
|
|
|
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
|
|
|
|
gazelle_dependencies()
|
|
|
|
# Also define in Gopkg.toml
|
|
go_repository(
|
|
name = "org_golang_google_genproto",
|
|
commit = "383e8b2c3b9e36c4076b235b32537292176bae20",
|
|
importpath = "google.golang.org/genproto",
|
|
)
|
|
|
|
# Also define in Gopkg.toml
|
|
go_repository(
|
|
name = "com_github_rogpeppe_fastuuid",
|
|
commit = "6724a57986aff9bff1a1770e9347036def7c89f6",
|
|
importpath = "github.com/rogpeppe/fastuuid",
|
|
)
|
|
|
|
# Also define in Gopkg.toml
|
|
go_repository(
|
|
name = "in_gopkg_resty_v1",
|
|
commit = "fa5875c0caa5c260ab78acec5a244215a730247f",
|
|
importpath = "gopkg.in/resty.v1",
|
|
)
|
|
|
|
# Also define in Gopkg.toml
|
|
go_repository(
|
|
name = "com_github_ghodss_yaml",
|
|
commit = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7",
|
|
importpath = "github.com/ghodss/yaml",
|
|
)
|
|
|
|
# Also define in Gopkg.toml
|
|
go_repository(
|
|
name = "in_gopkg_yaml_v2",
|
|
commit = "eb3733d160e74a9c7e442f435eb3bea458e1d19f",
|
|
importpath = "gopkg.in/yaml.v2",
|
|
)
|
|
|
|
http_archive(
|
|
name = "com_github_bazelbuild_buildtools",
|
|
strip_prefix = "buildtools-bf564b4925ab5876a3f64d8b90fab7f769013d42",
|
|
url = "https://github.com/bazelbuild/buildtools/archive/bf564b4925ab5876a3f64d8b90fab7f769013d42.zip",
|
|
)
|
|
|
|
load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies")
|
|
|
|
buildifier_dependencies()
|