2019-06-20 18:36:40 -05:00
|
|
|
workspace(name = "com_github_anuvu_zot")
|
|
|
|
|
2020-05-11 17:13:24 -05:00
|
|
|
go_version = "1.14.4"
|
2019-08-28 16:05:16 -05:00
|
|
|
|
|
|
|
go_os = "linux"
|
|
|
|
|
|
|
|
go_arch = "amd64"
|
|
|
|
|
2019-06-20 18:36:40 -05:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
|
2020-05-11 17:13:24 -05:00
|
|
|
go_rules_version = "v0.23.3"
|
2019-06-20 18:36:40 -05:00
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "io_bazel_rules_go",
|
2020-05-11 17:13:24 -05:00
|
|
|
sha256 = "a8d6b1b354d371a646d2f7927319974e0f9e52f73a2452d2b3877118169eb6bb",
|
2019-08-28 16:05:16 -05:00
|
|
|
urls = [
|
2020-05-11 17:13:24 -05:00
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/{}/rules_go-{}.tar.gz".format(go_rules_version, go_rules_version),
|
2019-08-28 16:05:16 -05:00
|
|
|
"https://github.com/bazelbuild/rules_go/releases/download/{}/rules_go-{}.tar.gz".format(go_rules_version, go_rules_version),
|
|
|
|
],
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
2020-05-11 17:13:24 -05:00
|
|
|
gazelle_version = "v0.21.0"
|
2019-06-20 18:36:40 -05:00
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "bazel_gazelle",
|
2020-05-11 17:13:24 -05:00
|
|
|
sha256 = "bfd86b3cbe855d6c16c6fce60d76bd51f5c8dbc9cfcaef7a2bb5c1aafd0710e8",
|
2019-06-20 18:36:40 -05:00
|
|
|
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/{}/bazel-gazelle-{}.tar.gz".format(gazelle_version, gazelle_version)],
|
|
|
|
)
|
|
|
|
|
2019-08-28 16:05:16 -05:00
|
|
|
buildtools_version = "0.25.1"
|
2019-06-20 18:36:40 -05:00
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "com_github_bazelbuild_buildtools",
|
2019-08-28 16:05:16 -05:00
|
|
|
sha256 = "0a0920151acf18c51866331944d12db9023707a6861e78225366f5711efc845b",
|
2019-06-20 18:36:40 -05:00
|
|
|
strip_prefix = "buildtools-{}".format(buildtools_version),
|
|
|
|
urls = ["https://github.com/bazelbuild/buildtools/archive/{}.tar.gz".format(buildtools_version)],
|
|
|
|
)
|
|
|
|
|
|
|
|
git_repository(
|
|
|
|
name = "com_github_atlassian_bazel_tools",
|
|
|
|
commit = "6fbc36c639a8f376182bb0057dd557eb2440d4ed",
|
|
|
|
remote = "https://github.com/atlassian/bazel-tools.git",
|
|
|
|
)
|
|
|
|
|
2020-05-11 17:13:24 -05:00
|
|
|
skylib_version = "1.0.2"
|
2019-06-20 18:36:40 -05:00
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "bazel_skylib",
|
2020-05-11 17:13:24 -05:00
|
|
|
sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44",
|
|
|
|
urls = [
|
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/{}/bazel-skylib-{}.tar.gz".format(skylib_version, skylib_version),
|
|
|
|
"https://github.com/bazelbuild/bazel-skylib/releases/download/{}/bazel-skylib-{}.tar.gz".format(skylib_version, skylib_version),
|
|
|
|
],
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
load("@bazel_skylib//lib:versions.bzl", "versions")
|
|
|
|
|
|
|
|
versions.check(minimum_bazel_version = "0.26.1")
|
|
|
|
|
2019-08-28 16:05:16 -05:00
|
|
|
load("@io_bazel_rules_go//go:deps.bzl", "go_download_sdk", "go_register_toolchains", "go_rules_dependencies")
|
|
|
|
|
|
|
|
go_download_sdk(
|
|
|
|
name = "go_sdk",
|
|
|
|
goos = go_os,
|
|
|
|
goarch = go_arch,
|
|
|
|
version = go_version,
|
|
|
|
)
|
2019-06-20 18:36:40 -05:00
|
|
|
|
|
|
|
go_rules_dependencies()
|
|
|
|
|
|
|
|
go_register_toolchains(nogo = "@//:nogo")
|
|
|
|
|
|
|
|
load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies")
|
|
|
|
load("@com_github_atlassian_bazel_tools//buildozer:deps.bzl", "buildozer_dependencies")
|
|
|
|
load("@com_github_atlassian_bazel_tools//goimports:deps.bzl", "goimports_dependencies")
|
|
|
|
load("@com_github_atlassian_bazel_tools//golangcilint:deps.bzl", "golangcilint_dependencies")
|
|
|
|
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
|
|
|
|
|
|
|
|
gazelle_dependencies()
|
|
|
|
|
|
|
|
goimports_dependencies()
|
|
|
|
|
|
|
|
buildifier_dependencies()
|
|
|
|
|
|
|
|
buildozer_dependencies()
|
|
|
|
|
|
|
|
golangcilint_dependencies()
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "co_honnef_go_tools",
|
|
|
|
importpath = "honnef.co/go/tools",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:/hemPrYIhOhy8zYrNj+069zDB68us2sMGsfkFJO0iZs=",
|
|
|
|
version = "v0.0.0-20190523083050-ea95bdfd59fc",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_alecthomas_template",
|
|
|
|
importpath = "github.com/alecthomas/template",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=",
|
|
|
|
version = "v0.0.0-20190718012654-fb15b899a751",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_alecthomas_units",
|
|
|
|
importpath = "github.com/alecthomas/units",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:qet1QNfXsQxTZqLG4oE62mJzwPIB8+Tee4RNCL9ulrY=",
|
|
|
|
version = "v0.0.0-20151022065526-2efee857e7cf",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_armon_consul_api",
|
|
|
|
importpath = "github.com/armon/consul-api",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=",
|
|
|
|
version = "v0.0.0-20180202201655-eb2c6b5be1b6",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_beorn7_perks",
|
|
|
|
importpath = "github.com/beorn7/perks",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:HWo1m869IqiPhD389kmkxeTalrjNbbJTC8LXupb+sl0=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_burntsushi_toml",
|
|
|
|
importpath = "github.com/BurntSushi/toml",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
|
|
|
|
version = "v0.3.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_cespare_xxhash",
|
|
|
|
importpath = "github.com/cespare/xxhash",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=",
|
|
|
|
version = "v1.1.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
2020-01-24 16:32:38 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_chartmuseum_auth",
|
|
|
|
importpath = "github.com/chartmuseum/auth",
|
2020-01-31 17:46:03 -05:00
|
|
|
sum = "h1:CkCJPO/daho9iN9t6ztK4cJRjHkQoom5/n5ndAS3OyM=",
|
|
|
|
version = "v0.4.0",
|
2020-01-24 16:32:38 -05:00
|
|
|
)
|
|
|
|
|
2019-06-20 18:36:40 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_client9_misspell",
|
|
|
|
importpath = "github.com/client9/misspell",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=",
|
|
|
|
version = "v0.3.4",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_coreos_bbolt",
|
|
|
|
importpath = "github.com/coreos/bbolt",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:wZwiHHUieZCquLkDL0B8UhzreNWsPHooDAG3q34zk0s=",
|
|
|
|
version = "v1.3.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_coreos_etcd",
|
|
|
|
importpath = "github.com/coreos/etcd",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:jFneRYjIvLMLhDLCzuTuU4rSJUjRplcJQ7pD7MnhC04=",
|
|
|
|
version = "v3.3.10+incompatible",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_coreos_go_semver",
|
|
|
|
importpath = "github.com/coreos/go-semver",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:3Jm3tLmsgAYcjC+4Up7hJrFBPr+n7rAqYeSw/SZazuY=",
|
|
|
|
version = "v0.2.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_coreos_go_systemd",
|
|
|
|
importpath = "github.com/coreos/go-systemd",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
|
|
|
|
version = "v0.0.0-20190321100706-95778dfbb74e",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_coreos_pkg",
|
|
|
|
importpath = "github.com/coreos/pkg",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=",
|
|
|
|
version = "v0.0.0-20180928190104-399ea9e2e55f",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_cpuguy83_go_md2man",
|
|
|
|
importpath = "github.com/cpuguy83/go-md2man",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=",
|
|
|
|
version = "v1.0.10",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_davecgh_go_spew",
|
|
|
|
importpath = "github.com/davecgh/go-spew",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
|
|
|
|
version = "v1.1.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_dgrijalva_jwt_go",
|
|
|
|
importpath = "github.com/dgrijalva/jwt-go",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
|
|
|
|
version = "v3.2.0+incompatible",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_dgryski_go_sip13",
|
|
|
|
importpath = "github.com/dgryski/go-sip13",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:RMLoZVzv4GliuWafOuPuQDKSm1SJph7uCRnnS61JAn4=",
|
|
|
|
version = "v0.0.0-20181026042036-e10d5fee7954",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_fsnotify_fsnotify",
|
|
|
|
importpath = "github.com/fsnotify/fsnotify",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=",
|
|
|
|
version = "v1.4.7",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_ghodss_yaml",
|
|
|
|
importpath = "github.com/ghodss/yaml",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gin_contrib_sse",
|
|
|
|
importpath = "github.com/gin-contrib/sse",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=",
|
|
|
|
version = "v0.1.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gin_gonic_gin",
|
|
|
|
importpath = "github.com/gin-gonic/gin",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:3tMoCCfM7ppqsR0ptz/wi1impNpT7/9wQtMZ8lr1mCQ=",
|
|
|
|
version = "v1.4.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_kit_kit",
|
|
|
|
importpath = "github.com/go-kit/kit",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:Wz+5lgoB0kkuqLEc6NVmwRknTKP6dTGbSqvhZtBI/j0=",
|
|
|
|
version = "v0.8.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_logfmt_logfmt",
|
|
|
|
importpath = "github.com/go-logfmt/logfmt",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA=",
|
|
|
|
version = "v0.4.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_openapi_jsonpointer",
|
|
|
|
importpath = "github.com/go-openapi/jsonpointer",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:nH6xp8XdXHx8dqveo0ZuJBluCO2qGrPbDNZ0dwoRHP0=",
|
|
|
|
version = "v0.17.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_openapi_jsonreference",
|
|
|
|
importpath = "github.com/go-openapi/jsonreference",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:BqWKpV1dFd+AuiKlgtddwVIFQsuMpxfBDBHGfM2yNpk=",
|
|
|
|
version = "v0.19.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_openapi_spec",
|
|
|
|
importpath = "github.com/go-openapi/spec",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:A4SZ6IWh3lnjH0rG0Z5lkxazMGBECtrZcbyYQi+64k4=",
|
|
|
|
version = "v0.19.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_openapi_swag",
|
|
|
|
importpath = "github.com/go-openapi/swag",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:iqrgMg7Q7SvtbWLlltPrkMs0UBJI6oTSs79JFRUi880=",
|
|
|
|
version = "v0.17.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_stack_stack",
|
|
|
|
importpath = "github.com/go-stack/stack",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
|
|
|
|
version = "v1.8.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gofrs_uuid",
|
|
|
|
importpath = "github.com/gofrs/uuid",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE=",
|
|
|
|
version = "v3.2.0+incompatible",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gogo_protobuf",
|
|
|
|
importpath = "github.com/gogo/protobuf",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE=",
|
|
|
|
version = "v1.2.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_golang_glog",
|
|
|
|
importpath = "github.com/golang/glog",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=",
|
|
|
|
version = "v0.0.0-20160126235308-23def4e6c14b",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_golang_groupcache",
|
|
|
|
importpath = "github.com/golang/groupcache",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:veQD95Isof8w9/WXiA+pa3tz3fJXkt5B7QaRBrM62gk=",
|
|
|
|
version = "v0.0.0-20190129154638-5b532d6fd5ef",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_golang_mock",
|
|
|
|
importpath = "github.com/golang/mock",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:G5FRp8JnTd7RQH5kemVNlMeyXQAztQ3mOWV95KxsXH8=",
|
|
|
|
version = "v1.1.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_golang_protobuf",
|
|
|
|
importpath = "github.com/golang/protobuf",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0=",
|
|
|
|
version = "v1.4.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_google_btree",
|
|
|
|
importpath = "github.com/google/btree",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_google_go_cmp",
|
|
|
|
importpath = "github.com/google/go-cmp",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:/QaMHBdZ26BB3SSst0Iwl10Epc+xhTquomWX0oZEB6w=",
|
|
|
|
version = "v0.5.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gopherjs_gopherjs",
|
|
|
|
importpath = "github.com/gopherjs/gopherjs",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=",
|
|
|
|
version = "v0.0.0-20181017120253-0766667cb4d1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gorilla_websocket",
|
|
|
|
importpath = "github.com/gorilla/websocket",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=",
|
|
|
|
version = "v1.4.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_grpc_ecosystem_go_grpc_middleware",
|
|
|
|
importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:Iju5GlWwrvL6UBg4zJJt3btmonfrMlCDdsejg4CZE7c=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_grpc_ecosystem_go_grpc_prometheus",
|
|
|
|
importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
|
|
|
|
version = "v1.2.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_grpc_ecosystem_grpc_gateway",
|
|
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:bM6ZAFZmc/wPFaRDi0d5L7hGEZEx/2u+Tmr2evNHDiI=",
|
|
|
|
version = "v1.9.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_hashicorp_hcl",
|
|
|
|
importpath = "github.com/hashicorp/hcl",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_inconshreveable_mousetrap",
|
|
|
|
importpath = "github.com/inconshreveable/mousetrap",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_jonboulle_clockwork",
|
|
|
|
importpath = "github.com/jonboulle/clockwork",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
|
|
|
|
version = "v0.1.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_json_iterator_go",
|
|
|
|
importpath = "github.com/json-iterator/go",
|
2020-03-06 15:23:20 -05:00
|
|
|
sum = "h1:9yzud/Ht36ygwatGx56VwCZtlI/2AD15T1X2sjSuGns=",
|
|
|
|
version = "v1.1.9",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_jtolds_gls",
|
|
|
|
importpath = "github.com/jtolds/gls",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=",
|
|
|
|
version = "v4.20.0+incompatible",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_julienschmidt_httprouter",
|
|
|
|
importpath = "github.com/julienschmidt/httprouter",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=",
|
|
|
|
version = "v1.2.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_kisielk_errcheck",
|
|
|
|
importpath = "github.com/kisielk/errcheck",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:ZqfnKyx9KGpRcW04j5nnPDgRgoXUeLh2YFBeFzphcA0=",
|
|
|
|
version = "v1.1.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_kisielk_gotool",
|
|
|
|
importpath = "github.com/kisielk/gotool",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_konsorten_go_windows_terminal_sequences",
|
|
|
|
importpath = "github.com/konsorten/go-windows-terminal-sequences",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=",
|
|
|
|
version = "v1.0.3",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_kr_logfmt",
|
|
|
|
importpath = "github.com/kr/logfmt",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=",
|
|
|
|
version = "v0.0.0-20140226030751-b84e30acd515",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_kr_pretty",
|
|
|
|
importpath = "github.com/kr/pretty",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs=",
|
|
|
|
version = "v0.2.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_kr_pty",
|
|
|
|
importpath = "github.com/kr/pty",
|
2020-06-16 20:52:40 -05:00
|
|
|
sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=",
|
|
|
|
version = "v1.1.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_kr_text",
|
|
|
|
importpath = "github.com/kr/text",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=",
|
|
|
|
version = "v0.2.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_magiconair_properties",
|
|
|
|
importpath = "github.com/magiconair/properties",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=",
|
|
|
|
version = "v1.8.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mailru_easyjson",
|
|
|
|
importpath = "github.com/mailru/easyjson",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:2gxZ0XQIU/5z3Z3bUBu+FXuk2pFbkN6tcwi/pjyaDic=",
|
|
|
|
version = "v0.0.0-20180823135443-60711f1a8329",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mattn_go_isatty",
|
|
|
|
importpath = "github.com/mattn/go-isatty",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY=",
|
|
|
|
version = "v0.0.12",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_matttproud_golang_protobuf_extensions",
|
|
|
|
importpath = "github.com/matttproud/golang_protobuf_extensions",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
|
|
|
|
version = "v1.0.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mitchellh_go_homedir",
|
|
|
|
importpath = "github.com/mitchellh/go-homedir",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=",
|
|
|
|
version = "v1.1.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mitchellh_mapstructure",
|
|
|
|
importpath = "github.com/mitchellh/mapstructure",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
|
|
|
|
version = "v1.1.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_modern_go_concurrent",
|
|
|
|
importpath = "github.com/modern-go/concurrent",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
|
|
|
|
version = "v0.0.0-20180306012644-bacd9c7ef1dd",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_modern_go_reflect2",
|
|
|
|
importpath = "github.com/modern-go/reflect2",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=",
|
|
|
|
version = "v1.0.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mwitkow_go_conntrack",
|
|
|
|
importpath = "github.com/mwitkow/go-conntrack",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc=",
|
|
|
|
version = "v0.0.0-20161129095857-cc309e4a2223",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_oklog_ulid",
|
|
|
|
importpath = "github.com/oklog/ulid",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4=",
|
|
|
|
version = "v1.3.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_oneofone_xxhash",
|
|
|
|
importpath = "github.com/OneOfOne/xxhash",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=",
|
|
|
|
version = "v1.2.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_opencontainers_distribution_spec",
|
|
|
|
importpath = "github.com/opencontainers/distribution-spec",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:xMzwhweo1gjvEo74mQjGTLau0TD3ACyTEC1310NbuSQ=",
|
|
|
|
version = "v1.0.0-rc0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_opencontainers_go_digest",
|
|
|
|
importpath = "github.com/opencontainers/go-digest",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=",
|
|
|
|
version = "v1.0.0-rc1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_opencontainers_image_spec",
|
|
|
|
importpath = "github.com/opencontainers/image-spec",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
|
|
|
|
version = "v1.0.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_pelletier_go_toml",
|
|
|
|
importpath = "github.com/pelletier/go-toml",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=",
|
|
|
|
version = "v1.2.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_pkg_errors",
|
|
|
|
importpath = "github.com/pkg/errors",
|
2020-03-06 15:23:20 -05:00
|
|
|
sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
|
|
|
|
version = "v0.9.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_pmezard_go_difflib",
|
|
|
|
importpath = "github.com/pmezard/go-difflib",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_prometheus_client_golang",
|
|
|
|
importpath = "github.com/prometheus/client_golang",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:9iH4JKXLzFbOAdtqv/a+j8aewx2Y8lAjAydhbaScPF8=",
|
|
|
|
version = "v0.9.3",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_prometheus_client_model",
|
|
|
|
importpath = "github.com/prometheus/client_model",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM=",
|
|
|
|
version = "v0.0.0-20190812154241-14fe0d1b01d4",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_prometheus_common",
|
|
|
|
importpath = "github.com/prometheus/common",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:7etb9YClo3a6HjLzfl6rIQaU+FDfi0VSX39io3aQ+DM=",
|
|
|
|
version = "v0.4.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_prometheus_procfs",
|
|
|
|
importpath = "github.com/prometheus/procfs",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:sofwID9zm4tzrgykg80hfFph1mryUeLRsUfoocVVmRY=",
|
|
|
|
version = "v0.0.0-20190507164030-5867b95ac084",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_prometheus_tsdb",
|
|
|
|
importpath = "github.com/prometheus/tsdb",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:YZcsG11NqnK4czYLrWd9mpEuAJIHVQLwdrleYfszMAA=",
|
|
|
|
version = "v0.7.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_puerkitobio_purell",
|
|
|
|
importpath = "github.com/PuerkitoBio/purell",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:rmGxhojJlM0tuKtfdvliR84CFHljx9ag64t2xmVkjK4=",
|
|
|
|
version = "v1.1.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_puerkitobio_urlesc",
|
|
|
|
importpath = "github.com/PuerkitoBio/urlesc",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=",
|
|
|
|
version = "v0.0.0-20170810143723-de5bf2ad4578",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_rogpeppe_fastuuid",
|
|
|
|
importpath = "github.com/rogpeppe/fastuuid",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:INyGLmTCMGFr6OVIb977ghJvABML2CMVjPoRfNDdYDo=",
|
|
|
|
version = "v1.1.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_rs_xid",
|
|
|
|
importpath = "github.com/rs/xid",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:mhH9Nq+C1fY2l1XIpgxIiUOfNpRBYH1kKcr+qfKgjRc=",
|
|
|
|
version = "v1.2.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_rs_zerolog",
|
|
|
|
importpath = "github.com/rs/zerolog",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:RMRHFw2+wF7LO0QqtELQwo8hqSmqISyCJeFeAAuWcRo=",
|
|
|
|
version = "v1.17.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_russross_blackfriday",
|
|
|
|
importpath = "github.com/russross/blackfriday",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
|
|
|
|
version = "v1.5.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_sirupsen_logrus",
|
|
|
|
importpath = "github.com/sirupsen/logrus",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=",
|
|
|
|
version = "v1.6.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_smartystreets_assertions",
|
|
|
|
importpath = "github.com/smartystreets/assertions",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:UVQPSSmc3qtTi+zPPkCXvZX9VvW/xT/NsRvKfwY81a8=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_smartystreets_goconvey",
|
|
|
|
importpath = "github.com/smartystreets/goconvey",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=",
|
|
|
|
version = "v1.6.4",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_soheilhy_cmux",
|
|
|
|
importpath = "github.com/soheilhy/cmux",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
|
|
|
|
version = "v0.1.4",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_spaolacci_murmur3",
|
|
|
|
importpath = "github.com/spaolacci/murmur3",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ=",
|
|
|
|
version = "v0.0.0-20180118202830-f09979ecbc72",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_spf13_afero",
|
|
|
|
importpath = "github.com/spf13/afero",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI=",
|
|
|
|
version = "v1.1.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_spf13_cast",
|
|
|
|
importpath = "github.com/spf13/cast",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=",
|
|
|
|
version = "v1.3.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_spf13_cobra",
|
|
|
|
importpath = "github.com/spf13/cobra",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s=",
|
|
|
|
version = "v0.0.5",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_spf13_jwalterweatherman",
|
|
|
|
importpath = "github.com/spf13/jwalterweatherman",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
|
|
|
|
version = "v1.0.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_spf13_pflag",
|
|
|
|
importpath = "github.com/spf13/pflag",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=",
|
|
|
|
version = "v1.0.3",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_spf13_viper",
|
|
|
|
importpath = "github.com/spf13/viper",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:VPZzIkznI1YhVMRi6vNFLHSwhnhReBfgTxIPccpfdZk=",
|
|
|
|
version = "v1.6.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_stretchr_objx",
|
|
|
|
importpath = "github.com/stretchr/objx",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:2vfRuCMp5sSVIDSqO8oNnWJq7mPa6KVP3iPIwFBuy8A=",
|
|
|
|
version = "v0.1.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_stretchr_testify",
|
|
|
|
importpath = "github.com/stretchr/testify",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=",
|
|
|
|
version = "v1.6.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_swaggo_gin_swagger",
|
|
|
|
importpath = "github.com/swaggo/gin-swagger",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:YskZXEiv51fjOMTsXrOetAjrMDfFaXD79PEoQBOe2W0=",
|
|
|
|
version = "v1.2.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_swaggo_swag",
|
|
|
|
importpath = "github.com/swaggo/swag",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:N+uVPGP4H2hXoss2pt5dctoSUPKKRInr6qcTMOm0usI=",
|
|
|
|
version = "v1.6.3",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_tmc_grpc_websocket_proxy",
|
|
|
|
importpath = "github.com/tmc/grpc-websocket-proxy",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=",
|
|
|
|
version = "v0.0.0-20190109142713-0ad062ec5ee5",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_ugorji_go",
|
|
|
|
importpath = "github.com/ugorji/go",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:jyJKFOSEbdOc2HODrf2qcCkYOdq7zzXqA9bhW5oV4fM=",
|
|
|
|
version = "v1.1.5-pre",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_ugorji_go_codec",
|
|
|
|
importpath = "github.com/ugorji/go/codec",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:5YV9PsFAN+ndcCtTM7s60no7nY7eTG3LPtxhSwuxzCs=",
|
|
|
|
version = "v1.1.5-pre",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_urfave_cli",
|
|
|
|
importpath = "github.com/urfave/cli",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:u7tSpNPPswAFymm8IehJhy4uJMlUuU/GmqSkvJ1InXA=",
|
|
|
|
version = "v1.22.4",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_xiang90_probing",
|
|
|
|
importpath = "github.com/xiang90/probing",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
|
|
|
|
version = "v0.0.0-20190116061207-43a291ad63a2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_xordataexchange_crypt",
|
|
|
|
importpath = "github.com/xordataexchange/crypt",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=",
|
|
|
|
version = "v0.0.3-0.20170626215501-b2862e3d0a77",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_zenazn_goji",
|
|
|
|
importpath = "github.com/zenazn/goji",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:RSQQAbXGArQ0dIDEq+PI6WqN6if+5KHu6x2Cx/GXLTQ=",
|
|
|
|
version = "v0.9.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_google_cloud_go",
|
|
|
|
importpath = "cloud.google.com/go",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:e0WKqKTd5BnrG8aKH3J3h+QvEIQtSUcf2n5UZ5ZgLtQ=",
|
|
|
|
version = "v0.26.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_alecthomas_kingpin_v2",
|
|
|
|
importpath = "gopkg.in/alecthomas/kingpin.v2",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=",
|
|
|
|
version = "v2.2.6",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_check_v1",
|
|
|
|
importpath = "gopkg.in/check.v1",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU=",
|
|
|
|
version = "v1.0.0-20200227125254-8fa46927fb4f",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_go_playground_assert_v1",
|
|
|
|
importpath = "gopkg.in/go-playground/assert.v1",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:xoYuJVE7KT85PYWrN730RguIQO0ePzVRfFMXadIrXTM=",
|
|
|
|
version = "v1.2.1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_go_playground_validator_v8",
|
|
|
|
importpath = "gopkg.in/go-playground/validator.v8",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:lFB4DoMU6B626w8ny76MV7VX6W2VHct2GVOI3xgiMrQ=",
|
|
|
|
version = "v8.18.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_resty_v1",
|
|
|
|
importpath = "gopkg.in/resty.v1",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI=",
|
|
|
|
version = "v1.12.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_yaml_v2",
|
|
|
|
importpath = "gopkg.in/yaml.v2",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I=",
|
|
|
|
version = "v2.2.4",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "io_etcd_go_bbolt",
|
|
|
|
importpath = "go.etcd.io/bbolt",
|
2020-02-17 16:57:15 -05:00
|
|
|
sum = "h1:hi1bXHMVrlQh6WwxAy+qZCV/SYIlqo+Ushwdpa4tAKg=",
|
|
|
|
version = "v1.3.4",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_google_appengine",
|
|
|
|
importpath = "google.golang.org/appengine",
|
2020-06-16 20:52:40 -05:00
|
|
|
sum = "h1:/wp5JvzpHIxhs/dumFmF7BXTf3Z+dd4uXta4kVyO508=",
|
|
|
|
version = "v1.4.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_google_genproto",
|
|
|
|
importpath = "google.golang.org/genproto",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=",
|
|
|
|
version = "v0.0.0-20200526211855-cb27e3aa2013",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_google_grpc",
|
|
|
|
importpath = "google.golang.org/grpc",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:rRYRFMVgRv6E0D70Skyfsr28tDXIuuPZyWGMPdMcnXg=",
|
|
|
|
version = "v1.27.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_crypto",
|
|
|
|
importpath = "golang.org/x/crypto",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:vEg9joUBmeBcK9iSJftGNf3coIG4HqZElCPehJsfAYM=",
|
|
|
|
version = "v0.0.0-20200604202706-70a84ac30bf9",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_lint",
|
|
|
|
importpath = "golang.org/x/lint",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:XQyxROzUlZH+WIQwySDgnISgOivlhjIEwaQaJEJrrN0=",
|
|
|
|
version = "v0.0.0-20190313153728-d0100b6bd8b3",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_net",
|
|
|
|
importpath = "golang.org/x/net",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:pNX+40auqi2JqRfOP1akLGtYcn15TUbkhwuCO3foqqM=",
|
|
|
|
version = "v0.0.0-20200602114024-627f9648deb9",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_oauth2",
|
|
|
|
importpath = "golang.org/x/oauth2",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:vEDujvNQGv4jgYKudGeI/+DAX4Jffq6hpD55MmoEvKs=",
|
|
|
|
version = "v0.0.0-20180821212333-d2e6202438be",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_sync",
|
|
|
|
importpath = "golang.org/x/sync",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU=",
|
|
|
|
version = "v0.0.0-20190423024810-112230192c58",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_sys",
|
|
|
|
importpath = "golang.org/x/sys",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:ogLJMz+qpzav7lGMh10LMvAkM/fAoGlaiiHYiFYdm80=",
|
|
|
|
version = "v0.0.0-20200615200032-f1bc736245b1",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_text",
|
|
|
|
importpath = "golang.org/x/text",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=",
|
|
|
|
version = "v0.3.2",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_time",
|
|
|
|
importpath = "golang.org/x/time",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:SvFZT6jyqRaOeXpc5h/JSfZenJ2O330aBsf7JfSUXmQ=",
|
|
|
|
version = "v0.0.0-20190308202827-9d24e82272b4",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_tools",
|
|
|
|
importpath = "golang.org/x/tools",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:4cFkmztxtMslUX2SctSl+blCyXfpzhGOy9LhKAqSMA4=",
|
|
|
|
version = "v0.0.0-20190828213141-aed303cbaa74",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_uber_go_atomic",
|
|
|
|
importpath = "go.uber.org/atomic",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=",
|
|
|
|
version = "v1.4.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_uber_go_multierr",
|
|
|
|
importpath = "go.uber.org/multierr",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
|
|
|
|
version = "v1.1.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_uber_go_zap",
|
|
|
|
importpath = "go.uber.org/zap",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=",
|
|
|
|
version = "v1.10.0",
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
2019-07-10 00:23:59 -05:00
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gorilla_mux",
|
|
|
|
importpath = "github.com/gorilla/mux",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:gnP5JzjVOuiZD07fKKToCAOjS0yOpj/qPETTXCCS6hw=",
|
|
|
|
version = "v1.7.3",
|
2019-07-10 00:23:59 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_kylebanks_depth",
|
|
|
|
importpath = "github.com/KyleBanks/depth",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:5h8fQADFrWtarTdtDudMmGsC7GPbOAu6RVB3ffsVFHc=",
|
|
|
|
version = "v1.2.1",
|
2019-07-10 00:23:59 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_swaggo_files",
|
|
|
|
importpath = "github.com/swaggo/files",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:PyYN9JH5jY9j6av01SpfRMb+1DWg/i3MbGOKPxJ2wjM=",
|
|
|
|
version = "v0.0.0-20190704085106-630677cd5c14",
|
2019-07-10 00:23:59 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_swaggo_http_swagger",
|
|
|
|
importpath = "github.com/swaggo/http-swagger",
|
2019-09-17 17:45:28 -05:00
|
|
|
sum = "h1:m5sYJ43teIUlESuKRFQRRm7kqi6ExiYwVKfoXNuRgHU=",
|
|
|
|
version = "v0.0.0-20190614090009-c2865af9083e",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_chi_chi",
|
|
|
|
importpath = "github.com/go-chi/chi",
|
|
|
|
sum = "h1:maB6vn6FqCxrpz4FqWdh4+lwpyZIQS7YEAUcHlgXVRs=",
|
|
|
|
version = "v4.0.2+incompatible",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_xerrors",
|
|
|
|
importpath = "golang.org/x/xerrors",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=",
|
|
|
|
version = "v0.0.0-20191204190536-9bdfabe68543",
|
2019-07-10 00:23:59 -05:00
|
|
|
)
|
2019-08-15 11:34:54 -05:00
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_boombuler_barcode",
|
|
|
|
importpath = "github.com/boombuler/barcode",
|
|
|
|
sum = "h1:biVzkmvwrH8WK8raXaxBx6fRVTlJILwEwQGL1I/ByEI=",
|
|
|
|
version = "v1.0.1-0.20190219062509-6c824513bacc",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_docopt_docopt_go",
|
|
|
|
importpath = "github.com/docopt/docopt-go",
|
|
|
|
sum = "h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ=",
|
|
|
|
version = "v0.0.0-20180111231733-ee0de3bc6815",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_geertjohan_yubigo",
|
|
|
|
importpath = "github.com/GeertJohan/yubigo",
|
|
|
|
sum = "h1:KA/G9j1p6mBmMihAZwmpnS6t8WsToyVlvF2v5VgJIcY=",
|
|
|
|
version = "v0.0.0-20190829090426-2d4089dc8789",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_glauth_glauth",
|
|
|
|
importpath = "github.com/glauth/glauth",
|
|
|
|
sum = "h1:2Rl5vTPWlchM4P+VCUtHbD7U3wFcoLYZiTwYad2QCOM=",
|
|
|
|
version = "v1.1.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_jtblin_go_ldap_client",
|
|
|
|
importpath = "github.com/jtblin/go-ldap-client",
|
|
|
|
sum = "h1:XDpFOMOZq0u0Ar4F0p/wklqQXp/AMV1pTF5T5bDoUfQ=",
|
|
|
|
version = "v0.0.0-20170223121919-b73f66626b33",
|
|
|
|
)
|
|
|
|
|
2020-01-24 16:32:38 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_mitchellh_mapstructure",
|
|
|
|
importpath = "github.com/mitchellh/mapstructure",
|
|
|
|
sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
|
|
|
|
version = "v1.1.2",
|
|
|
|
)
|
|
|
|
|
2019-08-15 11:34:54 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_nmcclain_asn1_ber",
|
|
|
|
importpath = "github.com/nmcclain/asn1-ber",
|
|
|
|
sum = "h1:D9EvfGQvlkKaDr2CRKN++7HbSXbefUNDrPq60T+g24s=",
|
|
|
|
version = "v0.0.0-20170104154839-2661553a0484",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_nmcclain_ldap",
|
|
|
|
importpath = "github.com/nmcclain/ldap",
|
2019-12-11 15:16:37 -05:00
|
|
|
sum = "h1:NNis9uuNpG5h97Dvxxo53Scg02qBg+3Nfabg6zjFGu8=",
|
|
|
|
version = "v0.0.0-20191021200707-3b3b69a7e9e3",
|
2019-08-15 11:34:54 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_op_go_logging",
|
|
|
|
importpath = "github.com/op/go-logging",
|
|
|
|
sum = "h1:lDH9UUVJtmYCjyT0CI4q8xvlXPxeZ0gYCVvWbmPlp88=",
|
|
|
|
version = "v0.0.0-20160315200505-970db520ece7",
|
|
|
|
)
|
|
|
|
|
2020-01-24 16:32:38 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_opencontainers_go_digest",
|
|
|
|
importpath = "github.com/opencontainers/go-digest",
|
|
|
|
sum = "h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=",
|
|
|
|
version = "v1.0.0-rc1",
|
|
|
|
)
|
|
|
|
|
2019-12-13 15:57:51 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_phayes_freeport",
|
|
|
|
importpath = "github.com/phayes/freeport",
|
|
|
|
sum = "h1:JhzVVoYvbOACxoUmOs6V/G4D5nPVUW73rKvXxP4XUJc=",
|
|
|
|
version = "v0.0.0-20180830031419-95f893ade6f2",
|
|
|
|
)
|
|
|
|
|
2019-08-15 11:34:54 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_pquerna_otp",
|
|
|
|
importpath = "github.com/pquerna/otp",
|
|
|
|
sum = "h1:/A3+Jn+cagqayeR3iHs/L62m5ue7710D35zl1zJ1kok=",
|
|
|
|
version = "v1.2.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_samuel_go_ldap",
|
|
|
|
importpath = "github.com/samuel/go-ldap",
|
|
|
|
sum = "h1:1iey3/nAwh5WYP9DGAH6vZGyBhCbRZ0fkX33LO138Fg=",
|
|
|
|
version = "v0.0.0-20150819063227-09b1a56d2755",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_vjeantet_ldapserver",
|
|
|
|
importpath = "github.com/vjeantet/ldapserver",
|
|
|
|
sum = "h1:VWE8ZC9ER1YIfx0V0QgZGdG4UB/nGeaSmKxesfVuheo=",
|
|
|
|
version = "v0.0.0-20170919170217-479fece7c5f1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_amz_v1",
|
|
|
|
importpath = "gopkg.in/amz.v1",
|
|
|
|
sum = "h1:FMrsB0OTjHsPDA1NM7AhRmmZzkBPu3iGdxK/5MFfBmk=",
|
|
|
|
version = "v1.0.0-20150111123259-ad23e96a31d2",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_asn1_ber_v1",
|
|
|
|
importpath = "gopkg.in/asn1-ber.v1",
|
|
|
|
sum = "h1:TxyelI5cVkbREznMhfzycHdkp5cLA7DpE+GKjSslYhM=",
|
|
|
|
version = "v1.0.0-20181015200546-f715ec2f112d",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_ldap_v2",
|
|
|
|
importpath = "gopkg.in/ldap.v2",
|
|
|
|
sum = "h1:wiu0okdNfjlBzg6UWvd1Hn8Y+Ux17/u/4nlk4CQr6tU=",
|
|
|
|
version = "v2.5.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_getlantern_deepcopy",
|
|
|
|
importpath = "github.com/getlantern/deepcopy",
|
|
|
|
sum = "h1:yU/FENpkHYISWsQrbr3pcZOBj0EuRjPzNc1+dTCLu44=",
|
|
|
|
version = "v0.0.0-20160317154340-7f45deb8130a",
|
|
|
|
)
|
2019-11-25 17:33:58 -05:00
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gorilla_handlers",
|
|
|
|
importpath = "github.com/gorilla/handlers",
|
|
|
|
sum = "h1:0QniY0USkHQ1RGCLfKxeNHK9bkDHGRYGNDFBCS+YARg=",
|
|
|
|
version = "v1.4.2",
|
|
|
|
)
|
2019-12-11 15:16:37 -05:00
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_gin_contrib_gzip",
|
|
|
|
importpath = "github.com/gin-contrib/gzip",
|
|
|
|
sum = "h1:ezvKOL6jH+jlzdHNE4h9h8q8uMpDQjyl0NN0Jd7jozc=",
|
|
|
|
version = "v0.0.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_asn1_ber_asn1_ber",
|
|
|
|
importpath = "github.com/go-asn1-ber/asn1-ber",
|
|
|
|
sum = "h1:gvPdv/Hr++TRFCl0UbPFHC54P9N9jgsRPnmnr419Uck=",
|
|
|
|
version = "v1.3.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_ldap_ldap_v3",
|
|
|
|
importpath = "github.com/go-ldap/ldap/v3",
|
|
|
|
sum = "h1:RIgdpHXJpsUqUK5WXwKyVsESrGFqo5BRWPk3RR4/ogQ=",
|
|
|
|
version = "v3.1.3",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_google_gofuzz",
|
|
|
|
importpath = "github.com/google/gofuzz",
|
|
|
|
sum = "h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw=",
|
|
|
|
version = "v1.0.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_subosito_gotenv",
|
|
|
|
importpath = "github.com/subosito/gotenv",
|
|
|
|
sum = "h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=",
|
|
|
|
version = "v1.2.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_ini_v1",
|
|
|
|
importpath = "gopkg.in/ini.v1",
|
|
|
|
sum = "h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno=",
|
|
|
|
version = "v1.51.0",
|
|
|
|
)
|
2020-03-06 15:23:20 -05:00
|
|
|
|
2020-02-17 16:57:15 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_boltdb_bolt",
|
|
|
|
importpath = "github.com/boltdb/bolt",
|
|
|
|
sum = "h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4=",
|
|
|
|
version = "v1.3.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_etcd_io_bbolt",
|
|
|
|
importpath = "github.com/etcd-io/bbolt",
|
|
|
|
sum = "h1:gSJmxrs37LgTqR/oyJBWok6k6SvXEUerFTbltIhXkBM=",
|
|
|
|
version = "v1.3.3",
|
|
|
|
)
|
|
|
|
|
2020-03-06 15:23:20 -05:00
|
|
|
go_repository(
|
|
|
|
name = "com_github_apex_log",
|
|
|
|
importpath = "github.com/apex/log",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:jYWeNt9kWJOf1ifht8UjsCQ00eiPnFrUzCBCiiJMw/g=",
|
|
|
|
version = "v1.4.0",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_aphistic_golf",
|
|
|
|
importpath = "github.com/aphistic/golf",
|
|
|
|
sum = "h1:2KLQMJ8msqoPHIPDufkxVcoTtcmE5+1sL9950m4R9Pk=",
|
|
|
|
version = "v0.0.0-20180712155816-02c07f170c5a",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_aphistic_sweet",
|
|
|
|
importpath = "github.com/aphistic/sweet",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:I4z+fAUqvKfvZV/CHi5dV0QuwbmIvYYFDjG0Ss5QpAs=",
|
|
|
|
version = "v0.2.0",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_aws_aws_sdk_go",
|
|
|
|
importpath = "github.com/aws/aws-sdk-go",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:kmy4Gvdlyez1fV4kw5RYxZzWKVyuHZHgPWeU/YvRsV4=",
|
|
|
|
version = "v1.20.6",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_aybabtme_rgbterm",
|
|
|
|
importpath = "github.com/aybabtme/rgbterm",
|
|
|
|
sum = "h1:WWB576BN5zNSZc/M9d/10pqEx5VHNhaQ/yOVAkmj5Yo=",
|
|
|
|
version = "v0.0.0-20170906152045-cc83f3b3ce59",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_cpuguy83_go_md2man_v2",
|
|
|
|
importpath = "github.com/cpuguy83/go-md2man/v2",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=",
|
|
|
|
version = "v2.0.0",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_creack_pty",
|
|
|
|
importpath = "github.com/creack/pty",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:uDmaGzcdjhF4i/plgjmEsriH11Y0o7RKapEf/LDaM3w=",
|
|
|
|
version = "v1.1.9",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_cyphar_filepath_securejoin",
|
|
|
|
importpath = "github.com/cyphar/filepath-securejoin",
|
|
|
|
sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=",
|
|
|
|
version = "v0.2.2",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_docker_go_units",
|
|
|
|
importpath = "github.com/docker/go-units",
|
|
|
|
sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
|
|
|
|
version = "v0.4.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_fatih_color",
|
|
|
|
importpath = "github.com/fatih/color",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:8xPHl4/q1VyqGIPif1F+1V3Y3lSmrq01EabUW3CoW5s=",
|
|
|
|
version = "v1.9.0",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_google_uuid",
|
|
|
|
importpath = "github.com/google/uuid",
|
|
|
|
sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
|
|
|
|
version = "v1.1.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_hpcloud_tail",
|
|
|
|
importpath = "github.com/hpcloud/tail",
|
|
|
|
sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=",
|
|
|
|
version = "v1.0.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_jmespath_go_jmespath",
|
|
|
|
importpath = "github.com/jmespath/go-jmespath",
|
|
|
|
sum = "h1:pmfjZENx5imkbgOkpRUYLnmbU7UEFbjtDA2hxJ1ichM=",
|
|
|
|
version = "v0.0.0-20180206201540-c2b33e8439af",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_jpillora_backoff",
|
|
|
|
importpath = "github.com/jpillora/backoff",
|
|
|
|
sum = "h1:K//n/AqR5HjG3qxbrBCL4vJPW0MVFSs9CPK1OOJdRME=",
|
|
|
|
version = "v0.0.0-20180909062703-3050d21c67d7",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_klauspost_compress",
|
|
|
|
importpath = "github.com/klauspost/compress",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:pPRt1Z78crspaHISkpSSHjDlx+Tt9suHe519dsI0vF4=",
|
|
|
|
version = "v1.10.9",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_klauspost_cpuid",
|
|
|
|
importpath = "github.com/klauspost/cpuid",
|
|
|
|
sum = "h1:vJi+O/nMdFt0vqm8NZBI6wzALWdA2X+egi0ogNyrC/w=",
|
|
|
|
version = "v1.2.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_klauspost_pgzip",
|
|
|
|
importpath = "github.com/klauspost/pgzip",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:TQ7CNpYKovDOmqzRHKxJh0BeaBI7UdQZYc6p7pMQh1A=",
|
|
|
|
version = "v1.2.4",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mattn_go_colorable",
|
|
|
|
importpath = "github.com/mattn/go-colorable",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:6Su7aK7lXmJ/U79bYtBjLNaha4Fs1Rg9plHpcH+vvnE=",
|
|
|
|
version = "v0.1.6",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mgutz_ansi",
|
|
|
|
importpath = "github.com/mgutz/ansi",
|
|
|
|
sum = "h1:j7+1HpAFS1zy5+Q4qx1fWh90gTKwiN4QCGoY9TWyyO4=",
|
|
|
|
version = "v0.0.0-20170206155736-9520e82c474b",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mohae_deepcopy",
|
|
|
|
importpath = "github.com/mohae/deepcopy",
|
|
|
|
sum = "h1:RWengNIwukTxcDr9M+97sNutRR1RKhG96O6jWumTTnw=",
|
|
|
|
version = "v0.0.0-20170929034955-c48cc78d4826",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_onsi_ginkgo",
|
|
|
|
importpath = "github.com/onsi/ginkgo",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:Ix8l273rp3QzYgXSR+c8d1fTG7UPgYkOSELPhiY/YGw=",
|
|
|
|
version = "v1.6.0",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_onsi_gomega",
|
|
|
|
importpath = "github.com/onsi/gomega",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:izbySO9zDPmjJ8rDjLvkA2zJHIo+HkYXHnf7eN7SSyo=",
|
|
|
|
version = "v1.5.0",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_opencontainers_runtime_spec",
|
|
|
|
importpath = "github.com/opencontainers/runtime-spec",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:UfAcuLBJB9Coz72x1hgl8O5RVzTdNiaglX6v2DM6FI0=",
|
|
|
|
version = "v1.0.2",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_rootless_containers_proto",
|
|
|
|
importpath = "github.com/rootless-containers/proto",
|
|
|
|
sum = "h1:gS1JOMEtk1YDYHCzBAf/url+olMJbac7MTrgSeP6zh4=",
|
|
|
|
version = "v0.1.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_russross_blackfriday_v2",
|
|
|
|
importpath = "github.com/russross/blackfriday/v2",
|
|
|
|
sum = "h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=",
|
|
|
|
version = "v2.0.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_sergi_go_diff",
|
|
|
|
importpath = "github.com/sergi/go-diff",
|
|
|
|
sum = "h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ=",
|
|
|
|
version = "v1.0.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_shurcool_sanitized_anchor_name",
|
|
|
|
importpath = "github.com/shurcooL/sanitized_anchor_name",
|
|
|
|
sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=",
|
|
|
|
version = "v1.0.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_smartystreets_go_aws_auth",
|
|
|
|
importpath = "github.com/smartystreets/go-aws-auth",
|
|
|
|
sum = "h1:hp2CYQUINdZMHdvTdXtPOY2ainKl4IoMcpAXEf2xj3Q=",
|
|
|
|
version = "v0.0.0-20180515143844-0c1422d1fdb9",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_smartystreets_gunit",
|
|
|
|
importpath = "github.com/smartystreets/gunit",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:RyPDUFcJbvtXlhJPk7v+wnxZRY2EUokhEYl2EJOPToI=",
|
|
|
|
version = "v1.0.0",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_tj_assert",
|
|
|
|
importpath = "github.com/tj/assert",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:Df/BlaZ20mq6kuai7f5z2TvPFiwC3xaWJSDQNiIS3Rk=",
|
|
|
|
version = "v0.0.3",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_tj_go_elastic",
|
|
|
|
importpath = "github.com/tj/go-elastic",
|
|
|
|
sum = "h1:eGaGNxrtoZf/mBURsnNQKDR7u50Klgcf2eFDQEnc8Bc=",
|
|
|
|
version = "v0.0.0-20171221160941-36157cbbebc2",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_tj_go_kinesis",
|
|
|
|
importpath = "github.com/tj/go-kinesis",
|
|
|
|
sum = "h1:m74UWYy+HBs+jMFR9mdZU6shPewugMyH5+GV6LNgW8w=",
|
|
|
|
version = "v0.0.0-20171128231115-08b17f58cb1b",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_tj_go_spin",
|
|
|
|
importpath = "github.com/tj/go-spin",
|
|
|
|
sum = "h1:lhdWZsvImxvZ3q1C5OIB7d72DuOwP4O2NdBg9PyzNds=",
|
|
|
|
version = "v1.1.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_vbatts_go_mtree",
|
|
|
|
importpath = "github.com/vbatts/go-mtree",
|
2020-06-25 19:04:32 -05:00
|
|
|
sum = "h1:dM+5XZdqH0j9CSZeerhoN/tAySdwnmevaZHO1XGW2Vc=",
|
|
|
|
version = "v0.5.0",
|
2020-03-06 15:23:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_fsnotify_v1",
|
|
|
|
importpath = "gopkg.in/fsnotify.v1",
|
|
|
|
sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=",
|
|
|
|
version = "v1.4.7",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_tomb_v1",
|
|
|
|
importpath = "gopkg.in/tomb.v1",
|
|
|
|
sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=",
|
|
|
|
version = "v1.0.0-20141024135613-dd632973f1e7",
|
|
|
|
)
|
2020-06-25 19:04:32 -05:00
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_apex_logs",
|
|
|
|
importpath = "github.com/apex/logs",
|
|
|
|
sum = "h1:38kpVK7Mw7yB9qrXQRXgdHcRQlmN8eORePFonYDuJsk=",
|
|
|
|
version = "v0.0.7",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_census_instrumentation_opencensus_proto",
|
|
|
|
importpath = "github.com/census-instrumentation/opencensus-proto",
|
|
|
|
sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=",
|
|
|
|
version = "v0.2.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_envoyproxy_go_control_plane",
|
|
|
|
importpath = "github.com/envoyproxy/go-control-plane",
|
|
|
|
sum = "h1:4cmBvAEBNJaGARUEs3/suWRyfyBfhf7I60WBZq+bv2w=",
|
|
|
|
version = "v0.9.1-0.20191026205805-5f8ba28d4473",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_envoyproxy_protoc_gen_validate",
|
|
|
|
importpath = "github.com/envoyproxy/protoc-gen-validate",
|
|
|
|
sum = "h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=",
|
|
|
|
version = "v0.1.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_niemeyer_pretty",
|
|
|
|
importpath = "github.com/niemeyer/pretty",
|
|
|
|
sum = "h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=",
|
|
|
|
version = "v0.0.0-20200227124842-a10e7caefd8e",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_opencontainers_umoci",
|
|
|
|
importpath = "github.com/opencontainers/umoci",
|
|
|
|
sum = "h1:nUULYM+jSLLJCVN2gd4wldm8/yuVMahC36UXna3jEqI=",
|
|
|
|
version = "v0.4.6",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "in_gopkg_yaml_v3",
|
|
|
|
importpath = "gopkg.in/yaml.v3",
|
|
|
|
sum = "h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ=",
|
|
|
|
version = "v3.0.0-20200615113413-eeeca48fe776",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_google_protobuf",
|
|
|
|
importpath = "google.golang.org/protobuf",
|
|
|
|
sum = "h1:UhZDfRO8JRQru4/+LlLE0BRKGF8L+PICnvYZmx/fEGA=",
|
|
|
|
version = "v1.24.0",
|
|
|
|
)
|
2020-06-16 20:52:40 -05:00
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_briandowns_spinner",
|
|
|
|
importpath = "github.com/briandowns/spinner",
|
|
|
|
sum = "h1:OixPqDEcX3juo5AjQZAnFPbeUA0jvkp2qzB5gOZJ/L0=",
|
|
|
|
version = "v1.11.1",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_coreos_go_etcd",
|
|
|
|
importpath = "github.com/coreos/go-etcd",
|
|
|
|
sum = "h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=",
|
|
|
|
version = "v2.0.0+incompatible",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_dustin_go_humanize",
|
|
|
|
importpath = "github.com/dustin/go-humanize",
|
|
|
|
sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
|
|
|
|
version = "v1.0.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_go_resty_resty_v2",
|
|
|
|
importpath = "github.com/go-resty/resty/v2",
|
|
|
|
sum = "h1:JOOeAvjSlapTT92p8xiS19Zxev1neGikoHsXJeOq8So=",
|
|
|
|
version = "v2.3.0",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_mattn_go_runewidth",
|
|
|
|
importpath = "github.com/mattn/go-runewidth",
|
|
|
|
sum = "h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=",
|
|
|
|
version = "v0.0.7",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "com_github_olekukonko_tablewriter",
|
|
|
|
importpath = "github.com/olekukonko/tablewriter",
|
|
|
|
sum = "h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8=",
|
|
|
|
version = "v0.0.4",
|
|
|
|
)
|
|
|
|
|
|
|
|
go_repository(
|
|
|
|
name = "org_golang_x_exp",
|
|
|
|
importpath = "golang.org/x/exp",
|
|
|
|
sum = "h1:c2HOrn5iMezYjSlGPncknSEr/8x5LELb/ilJbXi9DEA=",
|
|
|
|
version = "v0.0.0-20190121172915-509febef88a4",
|
|
|
|
)
|