-
Notifications
You must be signed in to change notification settings - Fork 1
/
MODULE.bazel
30 lines (26 loc) · 928 Bytes
/
MODULE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module(
name = "com_cognitedata_bazel_snapshots",
version = "0.0.0",
)
bazel_dep(name = "gazelle", version = "0.38.0", repo_name = "bazel_gazelle")
bazel_dep(name = "bazel_skylib", version = "1.6.1")
bazel_dep(name = "rules_go", version = "0.47.1", repo_name = "io_bazel_rules_go")
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
go_deps.from_file(go_mod = "//:go.mod")
use_repo(
go_deps,
"com_github_olekukonko_tablewriter",
"com_github_spf13_cobra",
"com_github_stretchr_testify",
"io_beyondstorage_go_services_gcs_v3",
"io_beyondstorage_go_v5",
"org_golang_google_genproto_googleapis_bytestream",
"org_golang_google_grpc",
)
snapshots = use_extension("//snapshots:extensions.bzl", "snapshots")
snapshots.toolchains(from_source = True)
use_repo(
snapshots,
"snapshots_snaptool_toolchains",
)
register_toolchains("@snapshots_snaptool_toolchains//:all")