forked from kevinburke/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
133 lines (116 loc) · 4.82 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
http_archive(
name = "io_bazel_rules_go",
url = "https://github.com/bazelbuild/rules_go/releases/download/0.9.0/rules_go-0.9.0.tar.gz",
sha256 = "4d8d6244320dd751590f9100cf39fd7a4b75cd901e1f3ffdfd6f048328883695",
)
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains", "go_repository")
go_rules_dependencies()
go_register_toolchains()
go_repository(
name = "org_golang_x_sync",
importpath = "golang.org/x/sync",
urls = ["https://codeload.github.com/golang/sync/zip/f52d1811a62927559de87708c8913c1650ce4f26"],
strip_prefix = "sync-f52d1811a62927559de87708c8913c1650ce4f26",
type = "zip",
)
go_repository(
name = "org_golang_x_net",
importpath = "golang.org/x/net",
urls = ["https://codeload.github.com/golang/net/zip/ab5485076ff3407ad2d02db054635913f017b0ed"],
strip_prefix = "net-ab5485076ff3407ad2d02db054635913f017b0ed",
type = "zip",
)
go_repository(
name = "com_github_mattn_go_colorable",
importpath = "github.com/mattn/go-colorable",
urls = ["https://codeload.github.com/mattn/go-colorable/zip/3fa8c76f9daed4067e4a806fb7e4dc86455c6d6a"],
strip_prefix = "go-colorable-3fa8c76f9daed4067e4a806fb7e4dc86455c6d6a",
type = "zip",
)
go_repository(
name = "com_github_aristanetworks_goarista",
importpath = "github.com/aristanetworks/goarista",
urls = ["https://codeload.github.com/aristanetworks/goarista/zip/8ab803d6502ea1e05a8c9b73193b405291efb7ce"],
strip_prefix = "goarista-8ab803d6502ea1e05a8c9b73193b405291efb7ce",
type = "zip",
)
go_repository(
name = "com_github_mattn_go_isatty",
importpath = "github.com/mattn/go-isatty",
urls = ["https://codeload.github.com/mattn/go-isatty/zip/fc9e8d8ef48496124e79ae0df75490096eccf6fe"],
strip_prefix = "go-isatty-fc9e8d8ef48496124e79ae0df75490096eccf6fe",
type = "zip",
)
go_repository(
name = "com_github_go_stack_stack",
importpath = "github.com/go-stack/stack",
urls = ["https://codeload.github.com/go-stack/stack/zip/54be5f394ed2c3e19dac9134a40a95ba5a017f7b"],
strip_prefix = "stack-54be5f394ed2c3e19dac9134a40a95ba5a017f7b",
type = "zip",
)
go_repository(
name = "com_github_ttacon_libphonenumber",
importpath = "github.com/ttacon/libphonenumber",
urls = ["https://codeload.github.com/ttacon/libphonenumber/zip/f9c5ddf85ffa9cc802cb511f9ab4733d7d8fbb0e"],
strip_prefix = "libphonenumber-f9c5ddf85ffa9cc802cb511f9ab4733d7d8fbb0e",
type = "zip",
)
go_repository(
name = "com_github_ttacon_builder",
importpath = "github.com/ttacon/builder",
urls = ["https://codeload.github.com/ttacon/builder/zip/c099f663e1c235176c175644792c5eb282017ad7"],
strip_prefix = "builder-c099f663e1c235176c175644792c5eb282017ad7",
type = "zip",
)
go_repository(
name = "com_github_dgrijalva_jwt_go",
importpath = "github.com/dgrijalva/jwt-go",
urls = ["https://codeload.github.com/dgrijalva/jwt-go/zip/a539ee1a749a2b895533f979515ac7e6e0f5b650"],
strip_prefix = "jwt-go-a539ee1a749a2b895533f979515ac7e6e0f5b650",
type = "zip",
)
go_repository(
name = "com_github_kevinburke_rest",
importpath = "github.com/kevinburke/rest",
urls = ["https://codeload.github.com/kevinburke/rest/zip/5b93f318984e1ca2bc8d855d628e2de7fa9ba9fe"],
strip_prefix = "rest-5b93f318984e1ca2bc8d855d628e2de7fa9ba9fe",
type = "zip",
)
go_repository(
name = "com_github_kevinburke_go_types",
importpath = "github.com/kevinburke/go-types",
urls = ["https://codeload.github.com/kevinburke/go-types/zip/19e2165c29024957a2e2f8cf450a0e663a3473e4"],
strip_prefix = "go-types-19e2165c29024957a2e2f8cf450a0e663a3473e4",
type = "zip",
)
go_repository(
name = "com_github_kevinburke_handlers",
importpath = "github.com/kevinburke/handlers",
urls = ["https://codeload.github.com/kevinburke/handlers/zip/06d9199656d509cc3b7fd0febd7013f54d1c5492"],
strip_prefix = "handlers-06d9199656d509cc3b7fd0febd7013f54d1c5492",
type = "zip",
)
go_repository(
name = "com_github_inconshreveable_log15",
importpath = "github.com/inconshreveable/log15",
urls = ["https://codeload.github.com/inconshreveable/log15/zip/74a0988b5f804e8ce9ff74fca4f16980776dff29"],
strip_prefix = "log15-74a0988b5f804e8ce9ff74fca4f16980776dff29",
type = "zip",
)
go_repository(
name = "com_github_kevinburke_go_uuid",
importpath = "github.com/kevinburke/go.uuid",
commit = "24443c65ec63d9e040fd4cedf0f1048b5d3544f7",
)
go_repository(
name = "com_github_golang_protobuf",
importpath = "github.com/golang/protobuf",
urls = ["https://codeload.github.com/golang/protobuf/zip/0a4f71a498b7c4812f64969510bcb4eca251e33a"],
strip_prefix = "protobuf-0a4f71a498b7c4812f64969510bcb4eca251e33a",
type = "zip",
)
go_repository(
name = "in_gopkg_mgo_v2",
importpath = "gopkg.in/mgo.v2",
commit = "3f83fa5005286a7fe593b055f0d7771a7dce4655",
)