This repository was archived by the owner on Oct 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathWORKSPACE
More file actions
91 lines (72 loc) · 2.63 KB
/
WORKSPACE
File metadata and controls
91 lines (72 loc) · 2.63 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
workspace(name = "hpraid_exporter")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "7be7dc01f1e0afdba6c8eb2b43d2fa01c743be1b9273ab1eaf6c233df078d705",
urls = ["https://github.com/bazelbuild/rules_go/releases/download/0.16.5/rules_go-0.16.5.tar.gz"],
)
http_archive(
name = "bazel_gazelle",
sha256 = "bc653d3e058964a5a26dcad02b6c72d7d63e6bb88d94704990b908a1445b8758",
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/0.13.0/bazel-gazelle-0.13.0.tar.gz"],
)
load("@io_bazel_rules_go//go:def.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains()
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
gazelle_dependencies()
go_repository(
name = "com_github_prometheus_common",
commit = "2998b132700a7d019ff618c06a234b47c1f3f681",
importpath = "github.com/prometheus/common",
)
go_repository(
name = "com_github_prometheus_client_golang",
commit = "d2ead25884778582e740573999f7b07f47e171b4",
importpath = "github.com/prometheus/client_golang",
)
go_repository(
name = "com_github_prometheus_client_model",
commit = "f287a105a20ec685d797f65cd0ce8fbeaef42da1",
importpath = "github.com/prometheus/client_model",
)
go_repository(
name = "com_github_prometheus_procfs",
commit = "b1a0a9a36d7453ba0f62578b99712f3a6c5f82d1",
importpath = "github.com/prometheus/procfs",
)
go_repository(
name = "com_github_sirupsen_logrus",
commit = "78fb3852d92683dc28da6cc3d5f965100677c27d",
importpath = "github.com/sirupsen/logrus",
)
go_repository(
name = "in_gopkg_alecthomas_kingpin_v2",
commit = "947dcec5ba9c011838740e680966fd7087a71d0d",
importpath = "gopkg.in/alecthomas/kingpin.v2",
)
go_repository(
name = "com_github_beorn7_perks",
commit = "3a771d992973f24aa725d07868b467d1ddfceafb",
importpath = "github.com/beorn7/perks",
)
go_repository(
name = "com_github_alecthomas_units",
commit = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a",
importpath = "github.com/alecthomas/units",
)
go_repository(
name = "org_golang_x_crypto",
commit = "ff983b9c42bc9fbf91556e191cc8efb585c16908",
importpath = "golang.org/x/crypto",
)
go_repository(
name = "com_github_alecthomas_template",
commit = "a0175ee3bccc567396460bf5acd36800cb10c49c",
importpath = "github.com/alecthomas/template",
)
go_repository(
name = "com_github_matttproud_golang_protobuf_extensions",
commit = "c182affec369e30f25d3eb8cd8a478dee585ae7d",
importpath = "github.com/matttproud/golang_protobuf_extensions",
)