mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
832 lines
18 KiB
Text
832 lines
18 KiB
Text
workspace(name = "com_github_anuvu_zot")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
go_rules_version = "0.18.6"
|
|
|
|
http_archive(
|
|
name = "io_bazel_rules_go",
|
|
sha256 = "f04d2373bcaf8aa09bccb08a98a57e721306c8f6043a2a0ee610fd6853dcde3d",
|
|
urls = ["https://github.com/bazelbuild/rules_go/releases/download/{}/rules_go-{}.tar.gz".format(go_rules_version, go_rules_version)],
|
|
)
|
|
|
|
gazelle_version = "0.17.0"
|
|
|
|
http_archive(
|
|
name = "bazel_gazelle",
|
|
sha256 = "3c681998538231a2d24d0c07ed5a7658cb72bfb5fd4bf9911157c0e9ac6a2687",
|
|
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/{}/bazel-gazelle-{}.tar.gz".format(gazelle_version, gazelle_version)],
|
|
)
|
|
|
|
buildtools_version = "0.26.0"
|
|
|
|
http_archive(
|
|
name = "com_github_bazelbuild_buildtools",
|
|
sha256 = "86592d703ecbe0c5cbb5139333a63268cf58d7efd2c459c8be8e69e77d135e29",
|
|
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",
|
|
)
|
|
|
|
skylib_version = "0.8.0"
|
|
|
|
http_archive(
|
|
name = "bazel_skylib",
|
|
sha256 = "2ea8a5ed2b448baf4a6855d3ce049c4c452a6470b1efd1504fdb7c1c134d220a",
|
|
strip_prefix = "bazel-skylib-{}".format(skylib_version),
|
|
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/{}.tar.gz".format(skylib_version)],
|
|
)
|
|
|
|
load("@bazel_skylib//lib:versions.bzl", "versions")
|
|
|
|
versions.check(minimum_bazel_version = "0.26.1")
|
|
|
|
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
|
|
|
|
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",
|
|
commit = "c2f93a96b099",
|
|
importpath = "honnef.co/go/tools",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_alecthomas_template",
|
|
commit = "a0175ee3bccc",
|
|
importpath = "github.com/alecthomas/template",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_alecthomas_units",
|
|
commit = "2efee857e7cf",
|
|
importpath = "github.com/alecthomas/units",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_armon_consul_api",
|
|
commit = "eb2c6b5be1b6",
|
|
importpath = "github.com/armon/consul-api",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_beorn7_perks",
|
|
importpath = "github.com/beorn7/perks",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_burntsushi_toml",
|
|
importpath = "github.com/BurntSushi/toml",
|
|
tag = "v0.3.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_cespare_xxhash",
|
|
importpath = "github.com/cespare/xxhash",
|
|
tag = "v1.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_client9_misspell",
|
|
importpath = "github.com/client9/misspell",
|
|
tag = "v0.3.4",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_coreos_bbolt",
|
|
importpath = "github.com/coreos/bbolt",
|
|
tag = "v1.3.2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_coreos_etcd",
|
|
importpath = "github.com/coreos/etcd",
|
|
tag = "v3.3.10",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_coreos_go_semver",
|
|
importpath = "github.com/coreos/go-semver",
|
|
tag = "v0.2.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_coreos_go_systemd",
|
|
commit = "95778dfbb74e",
|
|
importpath = "github.com/coreos/go-systemd",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_coreos_pkg",
|
|
commit = "399ea9e2e55f",
|
|
importpath = "github.com/coreos/pkg",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_cpuguy83_go_md2man",
|
|
importpath = "github.com/cpuguy83/go-md2man",
|
|
tag = "v1.0.10",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_davecgh_go_spew",
|
|
importpath = "github.com/davecgh/go-spew",
|
|
tag = "v1.1.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_dgrijalva_jwt_go",
|
|
importpath = "github.com/dgrijalva/jwt-go",
|
|
tag = "v3.2.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_dgryski_go_sip13",
|
|
commit = "e10d5fee7954",
|
|
importpath = "github.com/dgryski/go-sip13",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_fsnotify_fsnotify",
|
|
importpath = "github.com/fsnotify/fsnotify",
|
|
tag = "v1.4.7",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_ghodss_yaml",
|
|
importpath = "github.com/ghodss/yaml",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_gin_contrib_sse",
|
|
commit = "5545eab6dad3",
|
|
importpath = "github.com/gin-contrib/sse",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_gin_gonic_gin",
|
|
importpath = "github.com/gin-gonic/gin",
|
|
tag = "v1.4.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_go_kit_kit",
|
|
importpath = "github.com/go-kit/kit",
|
|
tag = "v0.8.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_go_logfmt_logfmt",
|
|
importpath = "github.com/go-logfmt/logfmt",
|
|
tag = "v0.4.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_go_openapi_jsonpointer",
|
|
importpath = "github.com/go-openapi/jsonpointer",
|
|
tag = "v0.17.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_go_openapi_jsonreference",
|
|
importpath = "github.com/go-openapi/jsonreference",
|
|
tag = "v0.19.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_go_openapi_spec",
|
|
importpath = "github.com/go-openapi/spec",
|
|
tag = "v0.19.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_go_openapi_swag",
|
|
importpath = "github.com/go-openapi/swag",
|
|
tag = "v0.17.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_go_stack_stack",
|
|
importpath = "github.com/go-stack/stack",
|
|
tag = "v1.8.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_gofrs_uuid",
|
|
importpath = "github.com/gofrs/uuid",
|
|
tag = "v3.2.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_gogo_protobuf",
|
|
importpath = "github.com/gogo/protobuf",
|
|
tag = "v1.2.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_golang_glog",
|
|
commit = "23def4e6c14b",
|
|
importpath = "github.com/golang/glog",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_golang_groupcache",
|
|
commit = "5b532d6fd5ef",
|
|
importpath = "github.com/golang/groupcache",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_golang_mock",
|
|
importpath = "github.com/golang/mock",
|
|
tag = "v1.1.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_golang_protobuf",
|
|
importpath = "github.com/golang/protobuf",
|
|
tag = "v1.3.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_google_btree",
|
|
importpath = "github.com/google/btree",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_google_go_cmp",
|
|
importpath = "github.com/google/go-cmp",
|
|
tag = "v0.2.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_gopherjs_gopherjs",
|
|
commit = "0766667cb4d1",
|
|
importpath = "github.com/gopherjs/gopherjs",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_gorilla_websocket",
|
|
importpath = "github.com/gorilla/websocket",
|
|
tag = "v1.4.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_grpc_ecosystem_go_grpc_middleware",
|
|
importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_grpc_ecosystem_go_grpc_prometheus",
|
|
importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
|
|
tag = "v1.2.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_grpc_ecosystem_grpc_gateway",
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway",
|
|
tag = "v1.9.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_hashicorp_hcl",
|
|
importpath = "github.com/hashicorp/hcl",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_inconshreveable_mousetrap",
|
|
importpath = "github.com/inconshreveable/mousetrap",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_jonboulle_clockwork",
|
|
importpath = "github.com/jonboulle/clockwork",
|
|
tag = "v0.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_json_iterator_go",
|
|
importpath = "github.com/json-iterator/go",
|
|
tag = "v1.1.6",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_jtolds_gls",
|
|
importpath = "github.com/jtolds/gls",
|
|
tag = "v4.20.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_julienschmidt_httprouter",
|
|
importpath = "github.com/julienschmidt/httprouter",
|
|
tag = "v1.2.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_kisielk_errcheck",
|
|
importpath = "github.com/kisielk/errcheck",
|
|
tag = "v1.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_kisielk_gotool",
|
|
importpath = "github.com/kisielk/gotool",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_konsorten_go_windows_terminal_sequences",
|
|
importpath = "github.com/konsorten/go-windows-terminal-sequences",
|
|
tag = "v1.0.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_kr_logfmt",
|
|
commit = "b84e30acd515",
|
|
importpath = "github.com/kr/logfmt",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_kr_pretty",
|
|
importpath = "github.com/kr/pretty",
|
|
tag = "v0.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_kr_pty",
|
|
importpath = "github.com/kr/pty",
|
|
tag = "v1.1.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_kr_text",
|
|
importpath = "github.com/kr/text",
|
|
tag = "v0.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_magiconair_properties",
|
|
importpath = "github.com/magiconair/properties",
|
|
tag = "v1.8.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_mailru_easyjson",
|
|
commit = "60711f1a8329",
|
|
importpath = "github.com/mailru/easyjson",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_mattn_go_isatty",
|
|
importpath = "github.com/mattn/go-isatty",
|
|
tag = "v0.0.7",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_matttproud_golang_protobuf_extensions",
|
|
importpath = "github.com/matttproud/golang_protobuf_extensions",
|
|
tag = "v1.0.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_mitchellh_go_homedir",
|
|
importpath = "github.com/mitchellh/go-homedir",
|
|
tag = "v1.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_mitchellh_mapstructure",
|
|
importpath = "github.com/mitchellh/mapstructure",
|
|
tag = "v1.1.2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_modern_go_concurrent",
|
|
commit = "bacd9c7ef1dd",
|
|
importpath = "github.com/modern-go/concurrent",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_modern_go_reflect2",
|
|
importpath = "github.com/modern-go/reflect2",
|
|
tag = "v1.0.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_mwitkow_go_conntrack",
|
|
commit = "cc309e4a2223",
|
|
importpath = "github.com/mwitkow/go-conntrack",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_oklog_ulid",
|
|
importpath = "github.com/oklog/ulid",
|
|
tag = "v1.3.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_oneofone_xxhash",
|
|
importpath = "github.com/OneOfOne/xxhash",
|
|
tag = "v1.2.2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_opencontainers_distribution_spec",
|
|
importpath = "github.com/opencontainers/distribution-spec",
|
|
tag = "v1.0.0-rc0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_opencontainers_go_digest",
|
|
importpath = "github.com/opencontainers/go-digest",
|
|
tag = "v1.0.0-rc1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_opencontainers_image_spec",
|
|
importpath = "github.com/opencontainers/image-spec",
|
|
tag = "v1.0.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_pelletier_go_toml",
|
|
importpath = "github.com/pelletier/go-toml",
|
|
tag = "v1.2.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_pkg_errors",
|
|
importpath = "github.com/pkg/errors",
|
|
tag = "v0.8.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_pmezard_go_difflib",
|
|
importpath = "github.com/pmezard/go-difflib",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_prometheus_client_golang",
|
|
importpath = "github.com/prometheus/client_golang",
|
|
tag = "v0.9.3",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_prometheus_client_model",
|
|
commit = "fd36f4220a90",
|
|
importpath = "github.com/prometheus/client_model",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_prometheus_common",
|
|
importpath = "github.com/prometheus/common",
|
|
tag = "v0.4.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_prometheus_procfs",
|
|
commit = "5867b95ac084",
|
|
importpath = "github.com/prometheus/procfs",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_prometheus_tsdb",
|
|
importpath = "github.com/prometheus/tsdb",
|
|
tag = "v0.7.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_puerkitobio_purell",
|
|
importpath = "github.com/PuerkitoBio/purell",
|
|
tag = "v1.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_puerkitobio_urlesc",
|
|
commit = "de5bf2ad4578",
|
|
importpath = "github.com/PuerkitoBio/urlesc",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_rogpeppe_fastuuid",
|
|
commit = "6724a57986af",
|
|
importpath = "github.com/rogpeppe/fastuuid",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_rs_xid",
|
|
importpath = "github.com/rs/xid",
|
|
tag = "v1.2.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_rs_zerolog",
|
|
importpath = "github.com/rs/zerolog",
|
|
tag = "v1.14.3",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_russross_blackfriday",
|
|
importpath = "github.com/russross/blackfriday",
|
|
tag = "v1.5.2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_sirupsen_logrus",
|
|
importpath = "github.com/sirupsen/logrus",
|
|
tag = "v1.2.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_smartystreets_assertions",
|
|
commit = "b2de0cb4f26d",
|
|
importpath = "github.com/smartystreets/assertions",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_smartystreets_goconvey",
|
|
commit = "68dc04aab96a",
|
|
importpath = "github.com/smartystreets/goconvey",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_soheilhy_cmux",
|
|
importpath = "github.com/soheilhy/cmux",
|
|
tag = "v0.1.4",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_spaolacci_murmur3",
|
|
commit = "f09979ecbc72",
|
|
importpath = "github.com/spaolacci/murmur3",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_spf13_afero",
|
|
importpath = "github.com/spf13/afero",
|
|
tag = "v1.1.2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_spf13_cast",
|
|
importpath = "github.com/spf13/cast",
|
|
tag = "v1.3.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_spf13_cobra",
|
|
importpath = "github.com/spf13/cobra",
|
|
tag = "v0.0.5",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_spf13_jwalterweatherman",
|
|
importpath = "github.com/spf13/jwalterweatherman",
|
|
tag = "v1.0.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_spf13_pflag",
|
|
importpath = "github.com/spf13/pflag",
|
|
tag = "v1.0.3",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_spf13_viper",
|
|
importpath = "github.com/spf13/viper",
|
|
tag = "v1.4.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_stretchr_objx",
|
|
importpath = "github.com/stretchr/objx",
|
|
tag = "v0.1.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_stretchr_testify",
|
|
importpath = "github.com/stretchr/testify",
|
|
tag = "v1.3.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_swaggo_gin_swagger",
|
|
importpath = "github.com/swaggo/gin-swagger",
|
|
tag = "v1.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_swaggo_swag",
|
|
importpath = "github.com/swaggo/swag",
|
|
tag = "v1.5.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_tmc_grpc_websocket_proxy",
|
|
commit = "0ad062ec5ee5",
|
|
importpath = "github.com/tmc/grpc-websocket-proxy",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_ugorji_go",
|
|
importpath = "github.com/ugorji/go",
|
|
tag = "v1.1.5-pre",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_ugorji_go_codec",
|
|
importpath = "github.com/ugorji/go/codec",
|
|
tag = "v1.1.5-pre",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_urfave_cli",
|
|
importpath = "github.com/urfave/cli",
|
|
tag = "v1.20.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_xiang90_probing",
|
|
commit = "43a291ad63a2",
|
|
importpath = "github.com/xiang90/probing",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_xordataexchange_crypt",
|
|
commit = "b2862e3d0a77",
|
|
importpath = "github.com/xordataexchange/crypt",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_zenazn_goji",
|
|
importpath = "github.com/zenazn/goji",
|
|
tag = "v0.9.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_google_cloud_go",
|
|
importpath = "cloud.google.com/go",
|
|
tag = "v0.26.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "in_gopkg_alecthomas_kingpin_v2",
|
|
importpath = "gopkg.in/alecthomas/kingpin.v2",
|
|
tag = "v2.2.6",
|
|
)
|
|
|
|
go_repository(
|
|
name = "in_gopkg_check_v1",
|
|
commit = "788fd7840127",
|
|
importpath = "gopkg.in/check.v1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "in_gopkg_go_playground_assert_v1",
|
|
importpath = "gopkg.in/go-playground/assert.v1",
|
|
tag = "v1.2.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "in_gopkg_go_playground_validator_v8",
|
|
importpath = "gopkg.in/go-playground/validator.v8",
|
|
tag = "v8.18.2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "in_gopkg_resty_v1",
|
|
importpath = "gopkg.in/resty.v1",
|
|
tag = "v1.12.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "in_gopkg_yaml_v2",
|
|
importpath = "gopkg.in/yaml.v2",
|
|
tag = "v2.2.2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "io_etcd_go_bbolt",
|
|
importpath = "go.etcd.io/bbolt",
|
|
tag = "v1.3.2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_google_appengine",
|
|
importpath = "google.golang.org/appengine",
|
|
tag = "v1.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_google_genproto",
|
|
commit = "c66870c02cf8",
|
|
importpath = "google.golang.org/genproto",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_google_grpc",
|
|
importpath = "google.golang.org/grpc",
|
|
tag = "v1.21.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_crypto",
|
|
commit = "ea8f1a30c443",
|
|
importpath = "golang.org/x/crypto",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_lint",
|
|
commit = "d0100b6bd8b3",
|
|
importpath = "golang.org/x/lint",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_net",
|
|
commit = "f3200d17e092",
|
|
importpath = "golang.org/x/net",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_oauth2",
|
|
commit = "d2e6202438be",
|
|
importpath = "golang.org/x/oauth2",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_sync",
|
|
commit = "112230192c58",
|
|
importpath = "golang.org/x/sync",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_sys",
|
|
commit = "97732733099d",
|
|
importpath = "golang.org/x/sys",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_text",
|
|
importpath = "golang.org/x/text",
|
|
tag = "v0.3.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_time",
|
|
commit = "9d24e82272b4",
|
|
importpath = "golang.org/x/time",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_golang_x_tools",
|
|
commit = "4d9ae51c2468",
|
|
importpath = "golang.org/x/tools",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_uber_go_atomic",
|
|
importpath = "go.uber.org/atomic",
|
|
tag = "v1.4.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_uber_go_multierr",
|
|
importpath = "go.uber.org/multierr",
|
|
tag = "v1.1.0",
|
|
)
|
|
|
|
go_repository(
|
|
name = "org_uber_go_zap",
|
|
importpath = "go.uber.org/zap",
|
|
tag = "v1.10.0",
|
|
)
|