forked from buildbarn/bb-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go_dependencies.bzl
70 lines (61 loc) · 2.68 KB
/
go_dependencies.bzl
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
load("@bazel_gazelle//:deps.bzl", "go_repository")
def bb_browser_go_dependencies():
go_repository(
name = "com_github_buildkite_terminal",
importpath = "github.com/buildkite/terminal",
patches = ["@com_github_buildbarn_bb_browser//:patches/com_github_buildkite_terminal/assets.diff"],
sha256 = "5d0203bb4dd007ad607df7d0eecbe50ff4bdaa0e56e1ad2ea1eb331ff2ae5be6",
strip_prefix = "terminal-to-html-3.1.0",
urls = ["https://github.com/buildkite/terminal-to-html/archive/v3.1.0.tar.gz"],
)
go_repository(
name = "com_github_gorilla_context",
importpath = "github.com/gorilla/context",
sha256 = "2dfdd051c238695bf9ebfed0bf6a8c533507ac0893bce23be5930e973736bb03",
strip_prefix = "context-1.1.1",
urls = ["https://github.com/gorilla/context/archive/v1.1.1.tar.gz"],
)
go_repository(
name = "com_github_gorilla_mux",
importpath = "github.com/gorilla/mux",
sha256 = "5aca5bfa16325506b23b66ce34e2b9336a3a341b8c51ba7b0faf7d0daade0116",
strip_prefix = "mux-1.7.0",
urls = ["https://github.com/gorilla/mux/archive/v1.7.0.tar.gz"],
)
go_repository(
name = "com_github_grpc_ecosystem_go_grpc_middleware",
importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
sha256 = "e9178768b55709d2fc2b5a509baceccb4e51d841fa13ed409e16455435e6917b",
strip_prefix = "go-grpc-middleware-1.0.0",
urls = ["https://github.com/grpc-ecosystem/go-grpc-middleware/archive/v1.0.0.tar.gz"],
)
go_repository(
name = "com_github_kballard_go_shellquote",
commit = "95032a82bc518f77982ea72343cc1ade730072f0",
importpath = "github.com/kballard/go-shellquote",
)
go_repository(
name = "org_golang_x_net",
importpath = "golang.org/x/net",
sum = "h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=",
version = "v0.0.0-20190311183353-d8887717615a",
)
go_repository(
name = "org_golang_x_text",
importpath = "golang.org/x/text",
sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=",
version = "v0.3.0",
)
go_repository(
name = "com_github_googleapis_gax_go_v2",
importpath = "github.com/googleapis/gax-go/v2",
sum = "h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM=",
version = "v2.0.5",
)
go_repository(
name = "com_github_dustin_go_humanize",
importpath = "github.com/dustin/go-humanize",
sha256 = "e4540bd50ac855143b4f2e509313079c50cf5d8774f09cc10dbca5ae9803d8ba",
strip_prefix = "go-humanize-1.0.0",
urls = ["https://github.com/dustin/go-humanize/archive/v1.0.0.tar.gz"],
)