forked from buchgr/bazel-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
110 lines (88 loc) · 2.92 KB
/
WORKSPACE
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
url = "https://github.com/bazelbuild/rules_go/releases/download/0.18.4/rules_go-0.18.4.tar.gz",
sha256 = "3743a20704efc319070957c45e24ae4626a05ba4b1d6a8961e87520296f1b676",
)
http_archive(
name = "bazel_gazelle",
url = "https://github.com/bazelbuild/bazel-gazelle/releases/download/0.17.0/bazel-gazelle-0.17.0.tar.gz",
sha256 = "3c681998538231a2d24d0c07ed5a7658cb72bfb5fd4bf9911157c0e9ac6a2687",
)
git_repository(
name = "io_bazel_rules_docker",
remote = "https://github.com/bazelbuild/rules_docker.git",
tag = "v0.7.0",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()
load(
"@io_bazel_rules_docker//go:image.bzl",
_go_image_repos = "repositories",
)
_go_image_repos()
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
load("@bazel_gazelle//:def.bzl", "go_repository")
gazelle_dependencies()
go_repository(
name = "com_github_abbot_go_http_auth",
commit = "0ddd408d5d60ea76e320503cc7dd091992dee608",
importpath = "github.com/abbot/go-http-auth",
)
go_repository(
name = "com_github_urfave_cli",
commit = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1",
importpath = "github.com/urfave/cli",
)
go_repository(
name = "com_github_djherbis_atime",
commit = "8e47e0e01d08df8b9f840d74299c8ab70a024a30",
importpath = "github.com/djherbis/atime",
)
go_repository(
name = "org_golang_x_crypto",
commit = "ab813273cd59e1333f7ae7bff5d027d4aadf528c",
importpath = "golang.org/x/crypto",
)
go_repository(
name = "org_golang_x_net",
commit = "1e491301e022f8f977054da4c2d852decd59571f",
importpath = "golang.org/x/net",
)
go_repository(
name = "com_github_golang_protobuf",
commit = "b4deda0973fb4c70b50d226b1af49f3da59f5265",
importpath = "github.com/golang/protobuf",
)
go_repository(
name = "com_google_cloud_go",
commit = "0fd7230b2a7505833d5f69b75cbd6c9582401479",
importpath = "cloud.google.com/go",
)
go_repository(
name = "in_gopkg_yaml_v2",
commit = "5420a8b6744d3b0345ab293f6fcba19c978f1183",
importpath = "gopkg.in/yaml.v2",
)
go_repository(
name = "org_golang_google_appengine",
commit = "150dc57a1b433e64154302bdc40b6bb8aefa313a",
importpath = "google.golang.org/appengine",
)
go_repository(
name = "org_golang_x_oauth2",
commit = "ec22f46f877b4505e0117eeaab541714644fdd28",
importpath = "golang.org/x/oauth2",
)
go_repository(
name = "com_github_urfave_cli",
commit = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1",
importpath = "github.com/urfave/cli",
)
go_repository(
name = "com_github_google_go_cmp",
commit = "3af367b6b30c263d47e8895973edcca9a49cf029",
importpath = "github.com/google/go-cmp",
)