github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/WORKSPACE (about)

     1  load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
     2  load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
     3  
     4  # Root certificates.
     5  #
     6  # Note that the sha256 hash is ommitted here intentionally. This should not be
     7  # used in any part of the build other than as certificates present in images.
     8  http_file(
     9      name = "google_root_pem",
    10      urls = [
    11          "https://pki.goog/roots.pem",
    12      ],
    13  )
    14  
    15  # Bazel/starlark utilities.
    16  http_archive(
    17      name = "bazel_skylib",
    18      sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c",
    19      urls = [
    20          "https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz",
    21          "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz",
    22      ],
    23  )
    24  
    25  load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
    26  
    27  bazel_skylib_workspace()
    28  
    29  # Load go bazel rules and gazelle.
    30  #
    31  # Note that this repository actually patches some other Go repositories as it
    32  # loads it, in order to limit visibility. We hack this process by patching the
    33  # patch used by the Go rules, turning the trick against itself.
    34  
    35  http_archive(
    36      name = "io_bazel_rules_go",
    37      patch_args = ["-p1"],
    38      patches = [
    39          # Ensure we don't destroy the facts visibility.
    40          "//tools:rules_go_visibility.patch",
    41          # Newer versions of the rules_go rules will automatically strip test
    42          # binaries of symbols, which we don't want.
    43          "//tools:rules_go_symbols.patch",
    44      ],
    45      sha256 = "69de5c704a05ff37862f7e0f5534d4f479418afc21806c887db544a316f3cb6b",
    46      urls = [
    47          "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.27.0/rules_go-v0.27.0.tar.gz",
    48          "https://github.com/bazelbuild/rules_go/releases/download/v0.27.0/rules_go-v0.27.0.tar.gz",
    49      ],
    50  )
    51  
    52  http_archive(
    53      name = "bazel_gazelle",
    54      patch_args = ["-p1"],
    55      patches = [
    56          # Fix permissions for facts for go_library, not just tool library.
    57          # This is actually a no-op with the hacky patch above, but should
    58          # slightly future proof this mechanism.
    59          "//tools:bazel_gazelle_generate.patch",
    60      ],
    61      sha256 = "62ca106be173579c0a167deb23358fdfe71ffa1e4cfdddf5582af26520f1c66f",
    62      urls = [
    63          "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.23.0/bazel-gazelle-v0.23.0.tar.gz",
    64          "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.23.0/bazel-gazelle-v0.23.0.tar.gz",
    65      ],
    66  )
    67  
    68  load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
    69  
    70  go_rules_dependencies()
    71  
    72  go_register_toolchains(go_version = "1.16.2")
    73  
    74  load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
    75  
    76  gazelle_dependencies()
    77  
    78  # Some repository below has a transitive dependency on this repository. This
    79  # declaration must precede any later declaration that transitively depends on
    80  # an older version, since only the first declaration is considered.
    81  go_repository(
    82      name = "org_golang_x_sys",
    83      importpath = "golang.org/x/sys",
    84      sum = "h1:+39ahH47SWi1PhMRAHfIrm8f69HRZ5K2koXH6dmO8TQ=",
    85      version = "v0.0.0-20210314195730-07df6a141424",
    86  )
    87  
    88  # Load C++ rules.
    89  http_archive(
    90      name = "rules_cc",
    91      sha256 = "67412176974bfce3f4cf8bdaff39784a72ed709fc58def599d1f68710b58d68b",
    92      strip_prefix = "rules_cc-b7fe9697c0c76ab2fd431a891dbb9a6a32ed7c3e",
    93      urls = [
    94          "https://mirror.bazel.build/github.com/bazelbuild/rules_cc/archive/b7fe9697c0c76ab2fd431a891dbb9a6a32ed7c3e.zip",
    95          "https://github.com/bazelbuild/rules_cc/archive/b7fe9697c0c76ab2fd431a891dbb9a6a32ed7c3e.zip",
    96      ],
    97  )
    98  
    99  # Load C++ cross-compilation toolchains.
   100  http_archive(
   101      name = "coral_crosstool",
   102      sha256 = "088ef98b19a45d7224be13636487e3af57b1564880b67df7be8b3b7eee4a1bfc",
   103      strip_prefix = "crosstool-142e930ac6bf1295ff3ba7ba2b5b6324dfb42839",
   104      urls = [
   105          "https://github.com/google-coral/crosstool/archive/142e930ac6bf1295ff3ba7ba2b5b6324dfb42839.tar.gz",
   106      ],
   107  )
   108  
   109  load("@coral_crosstool//:configure.bzl", "cc_crosstool")
   110  
   111  cc_crosstool(name = "crosstool")
   112  
   113  # Load protobuf dependencies.
   114  http_archive(
   115      name = "rules_proto",
   116      sha256 = "2a20fd8af3cad3fbab9fd3aec4a137621e0c31f858af213a7ae0f997723fc4a9",
   117      strip_prefix = "rules_proto-a0761ed101b939e19d83b2da5f59034bffc19c12",
   118      urls = [
   119          "https://mirror.bazel.build/github.com/bazelbuild/rules_proto/archive/a0761ed101b939e19d83b2da5f59034bffc19c12.tar.gz",
   120          "https://github.com/bazelbuild/rules_proto/archive/a0761ed101b939e19d83b2da5f59034bffc19c12.tar.gz",
   121      ],
   122  )
   123  
   124  load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
   125  
   126  go_repository(
   127      name = "com_github_go_gl_glfw",
   128      importpath = "github.com/go-gl/glfw",
   129      sum = "h1:QbL/5oDUmRBzO9/Z7Seo6zf912W/a6Sr4Eu0G/3Jho0=",
   130      version = "v0.0.0-20190409004039-e6da0acd62b1",
   131  )
   132  
   133  go_repository(
   134      name = "com_github_google_go_github_v35",
   135      importpath = "github.com/google/go-github/v35",
   136      sum = "h1:s/soW8jauhjUC3rh8JI0FePuocj0DEI9DNBg/bVplE8=",
   137      version = "v35.2.0",
   138  )
   139  
   140  go_repository(
   141      name = "com_github_google_martian_v3",
   142      importpath = "github.com/google/martian/v3",
   143      sum = "h1:wCKgOCHuUEVfsaQLpPSJb7VdYCdTVZQAuOdYm1yc/60=",
   144      version = "v3.1.0",
   145  )
   146  
   147  go_repository(
   148      name = "io_rsc_quote_v3",
   149      importpath = "rsc.io/quote/v3",
   150      sum = "h1:9JKUTTIUgS6kzR9mK1YuGKv6Nl+DijDNIc0ghT58FaY=",
   151      version = "v3.1.0",
   152  )
   153  
   154  go_repository(
   155      name = "io_rsc_sampler",
   156      importpath = "rsc.io/sampler",
   157      sum = "h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=",
   158      version = "v1.3.0",
   159  )
   160  
   161  go_repository(
   162      name = "org_golang_x_term",
   163      importpath = "golang.org/x/term",
   164      sum = "h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E=",
   165      version = "v0.0.0-20201126162022-7de9c90e9dd1",
   166  )
   167  
   168  go_repository(
   169      name = "com_github_hashicorp_errwrap",
   170      importpath = "github.com/hashicorp/errwrap",
   171      sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=",
   172      version = "v1.0.0",
   173  )
   174  
   175  go_repository(
   176      name = "com_github_hashicorp_go_multierror",
   177      importpath = "github.com/hashicorp/go-multierror",
   178      sum = "h1:B9UzwGQJehnUY1yNrnwREHc3fGbC2xefo8g4TbElacI=",
   179      version = "v1.1.0",
   180  )
   181  
   182  go_repository(
   183      name = "com_github_alecthomas_template",
   184      importpath = "github.com/alecthomas/template",
   185      sum = "h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=",
   186      version = "v0.0.0-20190718012654-fb15b899a751",
   187  )
   188  
   189  go_repository(
   190      name = "com_github_alecthomas_units",
   191      importpath = "github.com/alecthomas/units",
   192      sum = "h1:Hs82Z41s6SdL1CELW+XaDYmOH4hkBN4/N9og/AsOv7E=",
   193      version = "v0.0.0-20190717042225-c3de453c63f4",
   194  )
   195  
   196  go_repository(
   197      name = "com_github_alexflint_go_filemutex",
   198      importpath = "github.com/alexflint/go-filemutex",
   199      sum = "h1:AMzIhMUqU3jMrZiTuW0zkYeKlKDAFD+DG20IoO421/Y=",
   200      version = "v0.0.0-20171022225611-72bdc8eae2ae",
   201  )
   202  
   203  go_repository(
   204      name = "com_github_antihax_optional",
   205      importpath = "github.com/antihax/optional",
   206      sum = "h1:xK2lYat7ZLaVVcIuj82J8kIro4V6kDe0AUDFboUCwcg=",
   207      version = "v1.0.0",
   208  )
   209  
   210  go_repository(
   211      name = "com_github_armon_consul_api",
   212      importpath = "github.com/armon/consul-api",
   213      sum = "h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=",
   214      version = "v0.0.0-20180202201655-eb2c6b5be1b6",
   215  )
   216  
   217  go_repository(
   218      name = "com_github_asaskevich_govalidator",
   219      importpath = "github.com/asaskevich/govalidator",
   220      sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=",
   221      version = "v0.0.0-20190424111038-f61b66f89f4a",
   222  )
   223  
   224  go_repository(
   225      name = "com_github_aws_aws_sdk_go",
   226      importpath = "github.com/aws/aws-sdk-go",
   227      sum = "h1:m45+Ru/wA+73cOZXiEGLDH2d9uLN3iHqMc0/z4noDXE=",
   228      version = "v1.15.11",
   229  )
   230  
   231  go_repository(
   232      name = "com_github_azure_azure_sdk_for_go",
   233      importpath = "github.com/Azure/azure-sdk-for-go",
   234      sum = "h1:KnPIugL51v3N3WwvaSmZbxukD1WuWXOiE9fRdu32f2I=",
   235      version = "v16.2.1+incompatible",
   236  )
   237  
   238  go_repository(
   239      name = "com_github_azure_go_ansiterm",
   240      importpath = "github.com/Azure/go-ansiterm",
   241      sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=",
   242      version = "v0.0.0-20170929234023-d6e3b3328b78",
   243  )
   244  
   245  go_repository(
   246      name = "com_github_azure_go_autorest",
   247      importpath = "github.com/Azure/go-autorest",
   248      sum = "h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs=",
   249      version = "v14.2.0+incompatible",
   250  )
   251  
   252  go_repository(
   253      name = "com_github_beorn7_perks",
   254      importpath = "github.com/beorn7/perks",
   255      sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
   256      version = "v1.0.1",
   257  )
   258  
   259  go_repository(
   260      name = "com_github_bgentry_speakeasy",
   261      importpath = "github.com/bgentry/speakeasy",
   262      sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
   263      version = "v0.1.0",
   264  )
   265  
   266  go_repository(
   267      name = "com_github_bitly_go_simplejson",
   268      importpath = "github.com/bitly/go-simplejson",
   269      sum = "h1:6IH+V8/tVMab511d5bn4M7EwGXZf9Hj6i2xSwkNEM+Y=",
   270      version = "v0.5.0",
   271  )
   272  
   273  go_repository(
   274      name = "com_github_blang_semver",
   275      importpath = "github.com/blang/semver",
   276      sum = "h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=",
   277      version = "v3.5.1+incompatible",
   278  )
   279  
   280  go_repository(
   281      name = "com_github_bmizerany_assert",
   282      importpath = "github.com/bmizerany/assert",
   283      sum = "h1:DDGfHa7BWjL4YnC6+E63dPcxHo2sUxDIu8g3QgEJdRY=",
   284      version = "v0.0.0-20160611221934-b7ed37b82869",
   285  )
   286  
   287  go_repository(
   288      name = "com_github_bshuster_repo_logrus_logstash_hook",
   289      importpath = "github.com/bshuster-repo/logrus-logstash-hook",
   290      sum = "h1:pgAtgj+A31JBVtEHu2uHuEx0n+2ukqUJnS2vVe5pQNA=",
   291      version = "v0.4.1",
   292  )
   293  
   294  go_repository(
   295      name = "com_github_buger_jsonparser",
   296      importpath = "github.com/buger/jsonparser",
   297      sum = "h1:y853v6rXx+zefEcjET3JuKAqvhj+FKflQijjeaSv2iA=",
   298      version = "v0.0.0-20180808090653-f4dd9f5a6b44",
   299  )
   300  
   301  go_repository(
   302      name = "com_github_bugsnag_bugsnag_go",
   303      importpath = "github.com/bugsnag/bugsnag-go",
   304      sum = "h1:rFt+Y/IK1aEZkEHchZRSq9OQbsSzIT/OrI8YFFmRIng=",
   305      version = "v0.0.0-20141110184014-b1d153021fcd",
   306  )
   307  
   308  go_repository(
   309      name = "com_github_bugsnag_osext",
   310      importpath = "github.com/bugsnag/osext",
   311      sum = "h1:otBG+dV+YK+Soembjv71DPz3uX/V/6MMlSyD9JBQ6kQ=",
   312      version = "v0.0.0-20130617224835-0dd3f918b21b",
   313  )
   314  
   315  go_repository(
   316      name = "com_github_bugsnag_panicwrap",
   317      importpath = "github.com/bugsnag/panicwrap",
   318      sum = "h1:nvj0OLI3YqYXer/kZD8Ri1aaunCxIEsOst1BVJswV0o=",
   319      version = "v0.0.0-20151223152923-e2c28503fcd0",
   320  )
   321  
   322  go_repository(
   323      name = "com_github_cespare_xxhash",
   324      importpath = "github.com/cespare/xxhash",
   325      sum = "h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=",
   326      version = "v1.1.0",
   327  )
   328  
   329  go_repository(
   330      name = "com_github_cespare_xxhash_v2",
   331      importpath = "github.com/cespare/xxhash/v2",
   332      sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=",
   333      version = "v2.1.1",
   334  )
   335  
   336  go_repository(
   337      name = "com_github_checkpoint_restore_go_criu_v4",
   338      importpath = "github.com/checkpoint-restore/go-criu/v4",
   339      sum = "h1:WW2B2uxx9KWF6bGlHqhm8Okiafwwx7Y2kcpn8lCpjgo=",
   340      version = "v4.1.0",
   341  )
   342  
   343  go_repository(
   344      name = "com_github_cncf_xds_go",
   345      importpath = "github.com/cncf/xds/go",
   346      sum = "h1:OZmjad4L3H8ncOIR8rnb5MREYqG8ixi5+WbeUsquF0c=",
   347      version = "v0.0.0-20210312221358-fbca930ec8ed",
   348  )
   349  
   350  go_repository(
   351      name = "com_github_cockroachdb_datadriven",
   352      importpath = "github.com/cockroachdb/datadriven",
   353      sum = "h1:OaNxuTZr7kxeODyLWsRMC+OD03aFUH+mW6r2d+MWa5Y=",
   354      version = "v0.0.0-20190809214429-80d97fb3cbaa",
   355  )
   356  
   357  go_repository(
   358      name = "com_github_containerd_btrfs",
   359      importpath = "github.com/containerd/btrfs",
   360      sum = "h1:osn1exbzdub9L5SouXO5swW4ea/xVdJZ3wokxN5GrnA=",
   361      version = "v1.0.0",
   362  )
   363  
   364  go_repository(
   365      name = "com_github_containerd_go_cni",
   366      importpath = "github.com/containerd/go-cni",
   367      sum = "h1:YbJAhpTevL2v6u8JC1NhCYRwf+3Vzxcc5vGnYoJ7VeE=",
   368      version = "v1.0.2",
   369  )
   370  
   371  go_repository(
   372      name = "com_github_containerd_imgcrypt",
   373      importpath = "github.com/containerd/imgcrypt",
   374      sum = "h1:31GdXSmR2bZRPuZ/5lgkXivzNSejJQPsVOq82qqzP/M=",
   375      version = "v1.0.3",
   376  )
   377  
   378  go_repository(
   379      name = "com_github_containernetworking_cni",
   380      importpath = "github.com/containernetworking/cni",
   381      sum = "h1:7zpDnQ3T3s4ucOuJ/ZCLrYBxzkg0AELFfII3Epo9TmI=",
   382      version = "v0.8.1",
   383  )
   384  
   385  go_repository(
   386      name = "com_github_containernetworking_plugins",
   387      importpath = "github.com/containernetworking/plugins",
   388      sum = "h1:bU7QieuAp+sACI2vCzESJ3FoT860urYP+lThyZkb/2M=",
   389      version = "v0.8.7",
   390  )
   391  
   392  go_repository(
   393      name = "com_github_containers_ocicrypt",
   394      importpath = "github.com/containers/ocicrypt",
   395      sum = "h1:vYgl+RZ9Q3DPMuTfxmN+qp0X2Bj52uuY2vnt6GzVe1c=",
   396      version = "v1.0.3",
   397  )
   398  
   399  go_repository(
   400      name = "com_github_coreos_bbolt",
   401      importpath = "github.com/coreos/bbolt",
   402      sum = "h1:wZwiHHUieZCquLkDL0B8UhzreNWsPHooDAG3q34zk0s=",
   403      version = "v1.3.2",
   404  )
   405  
   406  go_repository(
   407      name = "com_github_coreos_etcd",
   408      importpath = "github.com/coreos/etcd",
   409      sum = "h1:jFneRYjIvLMLhDLCzuTuU4rSJUjRplcJQ7pD7MnhC04=",
   410      version = "v3.3.10+incompatible",
   411  )
   412  
   413  go_repository(
   414      name = "com_github_coreos_go_iptables",
   415      importpath = "github.com/coreos/go-iptables",
   416      sum = "h1:mw6SAibtHKZcNzAsOxjoHIG0gy5YFHhypWSSNc6EjbQ=",
   417      version = "v0.5.0",
   418  )
   419  
   420  go_repository(
   421      name = "com_github_coreos_go_oidc",
   422      importpath = "github.com/coreos/go-oidc",
   423      sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=",
   424      version = "v2.1.0+incompatible",
   425  )
   426  
   427  go_repository(
   428      name = "com_github_coreos_go_semver",
   429      importpath = "github.com/coreos/go-semver",
   430      sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
   431      version = "v0.3.0",
   432  )
   433  
   434  go_repository(
   435      name = "com_github_coreos_go_systemd",
   436      importpath = "github.com/coreos/go-systemd",
   437      sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
   438      version = "v0.0.0-20190321100706-95778dfbb74e",
   439  )
   440  
   441  go_repository(
   442      name = "com_github_coreos_pkg",
   443      importpath = "github.com/coreos/pkg",
   444      sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=",
   445      version = "v0.0.0-20180928190104-399ea9e2e55f",
   446  )
   447  
   448  go_repository(
   449      name = "com_github_creack_pty",
   450      importpath = "github.com/creack/pty",
   451      sum = "h1:6pwm8kMQKCmgUg0ZHTm5+/YvRK0s3THD/28+T6/kk4A=",
   452      version = "v1.1.7",
   453  )
   454  
   455  go_repository(
   456      name = "com_github_cyphar_filepath_securejoin",
   457      importpath = "github.com/cyphar/filepath-securejoin",
   458      sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=",
   459      version = "v0.2.2",
   460  )
   461  
   462  go_repository(
   463      name = "com_github_d2g_dhcp4",
   464      importpath = "github.com/d2g/dhcp4",
   465      sum = "h1:Xo2rK1pzOm0jO6abTPIQwbAmqBIOj132otexc1mmzFc=",
   466      version = "v0.0.0-20170904100407-a1d1b6c41b1c",
   467  )
   468  
   469  go_repository(
   470      name = "com_github_d2g_dhcp4client",
   471      importpath = "github.com/d2g/dhcp4client",
   472      sum = "h1:suYBsYZIkSlUMEz4TAYCczKf62IA2UWC+O8+KtdOhCo=",
   473      version = "v1.0.0",
   474  )
   475  
   476  go_repository(
   477      name = "com_github_d2g_dhcp4server",
   478      importpath = "github.com/d2g/dhcp4server",
   479      sum = "h1:+CpLbZIeUn94m02LdEKPcgErLJ347NUwxPKs5u8ieiY=",
   480      version = "v0.0.0-20181031114812-7d4a0a7f59a5",
   481  )
   482  
   483  go_repository(
   484      name = "com_github_d2g_hardwareaddr",
   485      importpath = "github.com/d2g/hardwareaddr",
   486      sum = "h1:itqmmf1PFpC4n5JW+j4BU7X4MTfVurhYRTjODoPb2Y8=",
   487      version = "v0.0.0-20190221164911-e7d9fbe030e4",
   488  )
   489  
   490  go_repository(
   491      name = "com_github_denverdino_aliyungo",
   492      importpath = "github.com/denverdino/aliyungo",
   493      sum = "h1:p6poVbjHDkKa+wtC8frBMwQtT3BmqGYBjzMwJ63tuR4=",
   494      version = "v0.0.0-20190125010748-a747050bb1ba",
   495  )
   496  
   497  go_repository(
   498      name = "com_github_dgryski_go_sip13",
   499      importpath = "github.com/dgryski/go-sip13",
   500      sum = "h1:RMLoZVzv4GliuWafOuPuQDKSm1SJph7uCRnnS61JAn4=",
   501      version = "v0.0.0-20181026042036-e10d5fee7954",
   502  )
   503  
   504  go_repository(
   505      name = "com_github_dnaeon_go_vcr",
   506      importpath = "github.com/dnaeon/go-vcr",
   507      sum = "h1:r8L/HqC0Hje5AXMu1ooW8oyQyOFv4GxqpL0nRP7SLLY=",
   508      version = "v1.0.1",
   509  )
   510  
   511  go_repository(
   512      name = "com_github_docker_go_metrics",
   513      importpath = "github.com/docker/go-metrics",
   514      sum = "h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=",
   515      version = "v0.0.1",
   516  )
   517  
   518  go_repository(
   519      name = "com_github_docker_libtrust",
   520      importpath = "github.com/docker/libtrust",
   521      sum = "h1:ZClxb8laGDf5arXfYcAtECDFgAgHklGI8CxgjHnXKJ4=",
   522      version = "v0.0.0-20150114040149-fa567046d9b1",
   523  )
   524  
   525  go_repository(
   526      name = "com_github_docopt_docopt_go",
   527      importpath = "github.com/docopt/docopt-go",
   528      sum = "h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ=",
   529      version = "v0.0.0-20180111231733-ee0de3bc6815",
   530  )
   531  
   532  go_repository(
   533      name = "com_github_fatih_color",
   534      importpath = "github.com/fatih/color",
   535      sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
   536      version = "v1.7.0",
   537  )
   538  
   539  go_repository(
   540      name = "com_github_form3tech_oss_jwt_go",
   541      importpath = "github.com/form3tech-oss/jwt-go",
   542      sum = "h1:TcekIExNqud5crz4xD2pavyTgWiPvpYe4Xau31I0PRk=",
   543      version = "v3.2.2+incompatible",
   544  )
   545  
   546  go_repository(
   547      name = "com_github_frankban_quicktest",
   548      importpath = "github.com/frankban/quicktest",
   549      sum = "h1:8sXhOn0uLys67V8EsXLc6eszDs8VXWxL3iRvebPhedY=",
   550      version = "v1.11.3",
   551  )
   552  
   553  go_repository(
   554      name = "com_github_fullsailor_pkcs7",
   555      importpath = "github.com/fullsailor/pkcs7",
   556      sum = "h1:RDBNVkRviHZtvDvId8XSGPu3rmpmSe+wKRcEWNgsfWU=",
   557      version = "v0.0.0-20190404230743-d7302db945fa",
   558  )
   559  
   560  go_repository(
   561      name = "com_github_garyburd_redigo",
   562      importpath = "github.com/garyburd/redigo",
   563      sum = "h1:LofdAjjjqCSXMwLGgOgnE+rdPuvX9DxCqaHwKy7i/ko=",
   564      version = "v0.0.0-20150301180006-535138d7bcd7",
   565  )
   566  
   567  go_repository(
   568      name = "com_github_go_ini_ini",
   569      importpath = "github.com/go-ini/ini",
   570      sum = "h1:Mujh4R/dH6YL8bxuISne3xX2+qcQ9p0IxKAP6ExWoUo=",
   571      version = "v1.25.4",
   572  )
   573  
   574  go_repository(
   575      name = "com_github_go_kit_kit",
   576      importpath = "github.com/go-kit/kit",
   577      sum = "h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk=",
   578      version = "v0.9.0",
   579  )
   580  
   581  go_repository(
   582      name = "com_github_go_logfmt_logfmt",
   583      importpath = "github.com/go-logfmt/logfmt",
   584      sum = "h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA=",
   585      version = "v0.4.0",
   586  )
   587  
   588  go_repository(
   589      name = "com_github_go_stack_stack",
   590      importpath = "github.com/go-stack/stack",
   591      sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
   592      version = "v1.8.0",
   593  )
   594  
   595  go_repository(
   596      name = "com_github_godbus_dbus",
   597      importpath = "github.com/godbus/dbus",
   598      sum = "h1:BWhy2j3IXJhjCbC68FptL43tDKIq8FladmaTs3Xs7Z8=",
   599      version = "v0.0.0-20190422162347-ade71ed3457e",
   600  )
   601  
   602  go_repository(
   603      name = "com_github_gopherjs_gopherjs",
   604      importpath = "github.com/gopherjs/gopherjs",
   605      sum = "h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=",
   606      version = "v0.0.0-20181017120253-0766667cb4d1",
   607  )
   608  
   609  go_repository(
   610      name = "com_github_gorilla_handlers",
   611      importpath = "github.com/gorilla/handlers",
   612      sum = "h1:893HsJqtxp9z1SF76gg6hY70hRY1wVlTSnC/h1yUDCo=",
   613      version = "v0.0.0-20150720190736-60c7bfde3e33",
   614  )
   615  
   616  go_repository(
   617      name = "com_github_gorilla_mux",
   618      importpath = "github.com/gorilla/mux",
   619      sum = "h1:zoNxOV7WjqXptQOVngLmcSQgXmgk4NMz1HibBchjl/I=",
   620      version = "v1.7.2",
   621  )
   622  
   623  go_repository(
   624      name = "com_github_gorilla_websocket",
   625      importpath = "github.com/gorilla/websocket",
   626      sum = "h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=",
   627      version = "v1.4.2",
   628  )
   629  
   630  go_repository(
   631      name = "com_github_grpc_ecosystem_go_grpc_middleware",
   632      importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
   633      sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=",
   634      version = "v1.0.1-0.20190118093823-f849b5445de4",
   635  )
   636  
   637  go_repository(
   638      name = "com_github_grpc_ecosystem_go_grpc_prometheus",
   639      importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
   640      sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
   641      version = "v1.2.0",
   642  )
   643  
   644  go_repository(
   645      name = "com_github_grpc_ecosystem_grpc_gateway",
   646      importpath = "github.com/grpc-ecosystem/grpc-gateway",
   647      sum = "h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo=",
   648      version = "v1.16.0",
   649  )
   650  
   651  go_repository(
   652      name = "com_github_hashicorp_hcl",
   653      importpath = "github.com/hashicorp/hcl",
   654      sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
   655      version = "v1.0.0",
   656  )
   657  
   658  go_repository(
   659      name = "com_github_j_keck_arping",
   660      importpath = "github.com/j-keck/arping",
   661      sum = "h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=",
   662      version = "v0.0.0-20160618110441-2cf9dc699c56",
   663  )
   664  
   665  go_repository(
   666      name = "com_github_jmespath_go_jmespath",
   667      importpath = "github.com/jmespath/go-jmespath",
   668      sum = "h1:SMvOWPJCES2GdFracYbBQh93GXac8fq7HeN6JnpduB8=",
   669      version = "v0.0.0-20160803190731-bd40a432e4c7",
   670  )
   671  
   672  go_repository(
   673      name = "com_github_jonboulle_clockwork",
   674      importpath = "github.com/jonboulle/clockwork",
   675      sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
   676      version = "v0.1.0",
   677  )
   678  
   679  go_repository(
   680      name = "com_github_jtolds_gls",
   681      importpath = "github.com/jtolds/gls",
   682      sum = "h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=",
   683      version = "v4.20.0+incompatible",
   684  )
   685  
   686  go_repository(
   687      name = "com_github_julienschmidt_httprouter",
   688      importpath = "github.com/julienschmidt/httprouter",
   689      sum = "h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=",
   690      version = "v1.2.0",
   691  )
   692  
   693  go_repository(
   694      name = "com_github_klauspost_compress",
   695      importpath = "github.com/klauspost/compress",
   696      sum = "h1:eSvu8Tmq6j2psUJqJrLcWH6K3w5Dwc+qipbaA6eVEN4=",
   697      version = "v1.11.13",
   698  )
   699  
   700  go_repository(
   701      name = "com_github_kr_logfmt",
   702      importpath = "github.com/kr/logfmt",
   703      sum = "h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=",
   704      version = "v0.0.0-20140226030751-b84e30acd515",
   705  )
   706  
   707  go_repository(
   708      name = "com_github_magiconair_properties",
   709      importpath = "github.com/magiconair/properties",
   710      sum = "h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=",
   711      version = "v1.8.0",
   712  )
   713  
   714  go_repository(
   715      name = "com_github_marstr_guid",
   716      importpath = "github.com/marstr/guid",
   717      sum = "h1:/M4H/1G4avsieL6BbUwCOBzulmoeKVP5ux/3mQNnbyI=",
   718      version = "v1.1.0",
   719  )
   720  
   721  go_repository(
   722      name = "com_github_mattn_go_colorable",
   723      importpath = "github.com/mattn/go-colorable",
   724      sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
   725      version = "v0.0.9",
   726  )
   727  
   728  go_repository(
   729      name = "com_github_mattn_go_isatty",
   730      importpath = "github.com/mattn/go-isatty",
   731      sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
   732      version = "v0.0.4",
   733  )
   734  
   735  go_repository(
   736      name = "com_github_mattn_go_runewidth",
   737      importpath = "github.com/mattn/go-runewidth",
   738      sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
   739      version = "v0.0.2",
   740  )
   741  
   742  go_repository(
   743      name = "com_github_mattn_go_shellwords",
   744      importpath = "github.com/mattn/go-shellwords",
   745      sum = "h1:K/VxK7SZ+cvuPgFSLKi5QPI9Vr/ipOf4C1gN+ntueUk=",
   746      version = "v1.0.3",
   747  )
   748  
   749  go_repository(
   750      name = "com_github_matttproud_golang_protobuf_extensions",
   751      importpath = "github.com/matttproud/golang_protobuf_extensions",
   752      sum = "h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=",
   753      version = "v1.0.2-0.20181231171920-c182affec369",
   754  )
   755  
   756  go_repository(
   757      name = "com_github_miekg_pkcs11",
   758      importpath = "github.com/miekg/pkcs11",
   759      sum = "h1:iMwmD7I5225wv84WxIG/bmxz9AXjWvTWIbM/TYHvWtw=",
   760      version = "v1.0.3",
   761  )
   762  
   763  go_repository(
   764      name = "com_github_mistifyio_go_zfs",
   765      importpath = "github.com/mistifyio/go-zfs",
   766      sum = "h1:aKW/4cBs+yK6gpqU3K/oIwk9Q/XICqd3zOX/UFuvqmk=",
   767      version = "v2.1.2-0.20190413222219-f784269be439+incompatible",
   768  )
   769  
   770  go_repository(
   771      name = "com_github_mitchellh_go_homedir",
   772      importpath = "github.com/mitchellh/go-homedir",
   773      sum = "h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=",
   774      version = "v1.1.0",
   775  )
   776  
   777  go_repository(
   778      name = "com_github_mitchellh_mapstructure",
   779      importpath = "github.com/mitchellh/mapstructure",
   780      sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
   781      version = "v1.1.2",
   782  )
   783  
   784  go_repository(
   785      name = "com_github_mitchellh_osext",
   786      importpath = "github.com/mitchellh/osext",
   787      sum = "h1:2+myh5ml7lgEU/51gbeLHfKGNfgEQQIWrlbdaOsidbQ=",
   788      version = "v0.0.0-20151018003038-5e2d6d41470f",
   789  )
   790  
   791  go_repository(
   792      name = "com_github_moby_locker",
   793      importpath = "github.com/moby/locker",
   794      sum = "h1:fOXqR41zeveg4fFODix+1Ch4mj/gT0NE1XJbp/epuBg=",
   795      version = "v1.0.1",
   796  )
   797  
   798  go_repository(
   799      name = "com_github_moby_sys_mountinfo",
   800      importpath = "github.com/moby/sys/mountinfo",
   801      sum = "h1:1O+1cHA1aujwEwwVMa2Xm2l+gIpUHyd3+D+d7LZh1kM=",
   802      version = "v0.4.1",
   803  )
   804  
   805  go_repository(
   806      name = "com_github_moby_sys_symlink",
   807      importpath = "github.com/moby/sys/symlink",
   808      sum = "h1:MTFZ74KtNI6qQQpuBxU+uKCim4WtOMokr03hCfJcazE=",
   809      version = "v0.1.0",
   810  )
   811  
   812  go_repository(
   813      name = "com_github_moby_term",
   814      importpath = "github.com/moby/term",
   815      sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=",
   816      version = "v0.0.0-20200312100748-672ec06f55cd",
   817  )
   818  
   819  go_repository(
   820      name = "com_github_mrunalp_fileutils",
   821      importpath = "github.com/mrunalp/fileutils",
   822      sum = "h1:NKzVxiH7eSk+OQ4M+ZYW1K6h27RUV3MI6NUTsHhU6Z4=",
   823      version = "v0.5.0",
   824  )
   825  
   826  go_repository(
   827      name = "com_github_mwitkow_go_conntrack",
   828      importpath = "github.com/mwitkow/go-conntrack",
   829      sum = "h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc=",
   830      version = "v0.0.0-20161129095857-cc309e4a2223",
   831  )
   832  
   833  go_repository(
   834      name = "com_github_ncw_swift",
   835      importpath = "github.com/ncw/swift",
   836      sum = "h1:4DQRPj35Y41WogBxyhOXlrI37nzGlyEcsforeudyYPQ=",
   837      version = "v1.0.47",
   838  )
   839  
   840  go_repository(
   841      name = "com_github_nxadm_tail",
   842      importpath = "github.com/nxadm/tail",
   843      sum = "h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78=",
   844      version = "v1.4.4",
   845  )
   846  
   847  go_repository(
   848      name = "com_github_oklog_ulid",
   849      importpath = "github.com/oklog/ulid",
   850      sum = "h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4=",
   851      version = "v1.3.1",
   852  )
   853  
   854  go_repository(
   855      name = "com_github_olekukonko_tablewriter",
   856      importpath = "github.com/olekukonko/tablewriter",
   857      sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
   858      version = "v0.0.0-20170122224234-a0225b3f23b5",
   859  )
   860  
   861  go_repository(
   862      name = "com_github_oneofone_xxhash",
   863      importpath = "github.com/OneOfOne/xxhash",
   864      sum = "h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=",
   865      version = "v1.2.2",
   866  )
   867  
   868  go_repository(
   869      name = "com_github_opencontainers_runtime_tools",
   870      importpath = "github.com/opencontainers/runtime-tools",
   871      sum = "h1:H7DMc6FAjgwZZi8BRqjrAAHWoqEr5e5L6pS4V0ezet4=",
   872      version = "v0.0.0-20181011054405-1d69bd0f9c39",
   873  )
   874  
   875  go_repository(
   876      name = "com_github_opencontainers_selinux",
   877      importpath = "github.com/opencontainers/selinux",
   878      sum = "h1:+77ba4ar4jsCbL1GLbFL8fFM57w6suPfSS9PDLDY7KM=",
   879      version = "v1.8.0",
   880  )
   881  
   882  go_repository(
   883      name = "com_github_pelletier_go_toml",
   884      importpath = "github.com/pelletier/go-toml",
   885      sum = "h1:1Nf83orprkJyknT6h7zbuEGUEjcyVlCxSUGTENmNCRM=",
   886      version = "v1.8.1",
   887  )
   888  
   889  go_repository(
   890      name = "com_github_pquerna_cachecontrol",
   891      importpath = "github.com/pquerna/cachecontrol",
   892      sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=",
   893      version = "v0.0.0-20171018203845-0dec1b30a021",
   894  )
   895  
   896  go_repository(
   897      name = "com_github_prometheus_client_golang",
   898      importpath = "github.com/prometheus/client_golang",
   899      sum = "h1:NTGy1Ja9pByO+xAeH/qiWnLrKtr3hJPNjaVUwnjpdpA=",
   900      version = "v1.7.1",
   901  )
   902  
   903  go_repository(
   904      name = "com_github_prometheus_common",
   905      importpath = "github.com/prometheus/common",
   906      sum = "h1:RyRA7RzGXQZiW+tGMr7sxa85G1z0yOpM1qq5c8lNawc=",
   907      version = "v0.10.0",
   908  )
   909  
   910  go_repository(
   911      name = "com_github_prometheus_tsdb",
   912      importpath = "github.com/prometheus/tsdb",
   913      sum = "h1:YZcsG11NqnK4czYLrWd9mpEuAJIHVQLwdrleYfszMAA=",
   914      version = "v0.7.1",
   915  )
   916  
   917  go_repository(
   918      name = "com_github_rogpeppe_fastuuid",
   919      importpath = "github.com/rogpeppe/fastuuid",
   920      sum = "h1:Ppwyp6VYCF1nvBTXL3trRso7mXMlRrw9ooo375wvi2s=",
   921      version = "v1.2.0",
   922  )
   923  
   924  go_repository(
   925      name = "com_github_safchain_ethtool",
   926      importpath = "github.com/safchain/ethtool",
   927      sum = "h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=",
   928      version = "v0.0.0-20190326074333-42ed695e3de8",
   929  )
   930  
   931  go_repository(
   932      name = "com_github_satori_go_uuid",
   933      importpath = "github.com/satori/go.uuid",
   934      sum = "h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww=",
   935      version = "v1.2.0",
   936  )
   937  
   938  go_repository(
   939      name = "com_github_seccomp_libseccomp_golang",
   940      importpath = "github.com/seccomp/libseccomp-golang",
   941      sum = "h1:NJjM5DNFOs0s3kYE1WUOr6G8V97sdt46rlXTMfXGWBo=",
   942      version = "v0.9.1",
   943  )
   944  
   945  go_repository(
   946      name = "com_github_shopify_logrus_bugsnag",
   947      importpath = "github.com/Shopify/logrus-bugsnag",
   948      sum = "h1:UrqY+r/OJnIp5u0s1SbQ8dVfLCZJsnvazdBP5hS4iRs=",
   949      version = "v0.0.0-20171204204709-577dee27f20d",
   950  )
   951  
   952  go_repository(
   953      name = "com_github_smartystreets_assertions",
   954      importpath = "github.com/smartystreets/assertions",
   955      sum = "h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=",
   956      version = "v0.0.0-20180927180507-b2de0cb4f26d",
   957  )
   958  
   959  go_repository(
   960      name = "com_github_smartystreets_goconvey",
   961      importpath = "github.com/smartystreets/goconvey",
   962      sum = "h1:pa8hGb/2YqsZKovtsgrwcDH1RZhVbTKCjLp47XpqCDs=",
   963      version = "v0.0.0-20190330032615-68dc04aab96a",
   964  )
   965  
   966  go_repository(
   967      name = "com_github_soheilhy_cmux",
   968      importpath = "github.com/soheilhy/cmux",
   969      sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
   970      version = "v0.1.4",
   971  )
   972  
   973  go_repository(
   974      name = "com_github_spaolacci_murmur3",
   975      importpath = "github.com/spaolacci/murmur3",
   976      sum = "h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ=",
   977      version = "v0.0.0-20180118202830-f09979ecbc72",
   978  )
   979  
   980  go_repository(
   981      name = "com_github_spf13_cast",
   982      importpath = "github.com/spf13/cast",
   983      sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=",
   984      version = "v1.3.0",
   985  )
   986  
   987  go_repository(
   988      name = "com_github_spf13_jwalterweatherman",
   989      importpath = "github.com/spf13/jwalterweatherman",
   990      sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
   991      version = "v1.0.0",
   992  )
   993  
   994  go_repository(
   995      name = "com_github_spf13_viper",
   996      importpath = "github.com/spf13/viper",
   997      sum = "h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU=",
   998      version = "v1.4.0",
   999  )
  1000  
  1001  go_repository(
  1002      name = "com_github_stefanberger_go_pkcs11uri",
  1003      importpath = "github.com/stefanberger/go-pkcs11uri",
  1004      sum = "h1:lIOOHPEbXzO3vnmx2gok1Tfs31Q8GQqKLc8vVqyQq/I=",
  1005      version = "v0.0.0-20201008174630-78d3cae3a980",
  1006  )
  1007  
  1008  go_repository(
  1009      name = "com_github_tchap_go_patricia",
  1010      importpath = "github.com/tchap/go-patricia",
  1011      sum = "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=",
  1012      version = "v2.2.6+incompatible",
  1013  )
  1014  
  1015  go_repository(
  1016      name = "com_github_tmc_grpc_websocket_proxy",
  1017      importpath = "github.com/tmc/grpc-websocket-proxy",
  1018      sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=",
  1019      version = "v0.0.0-20190109142713-0ad062ec5ee5",
  1020  )
  1021  
  1022  go_repository(
  1023      name = "com_github_ugorji_go",
  1024      importpath = "github.com/ugorji/go",
  1025      sum = "h1:j4s+tAvLfL3bZyefP2SEWmhBzmuIlH/eqNuPdFPgngw=",
  1026      version = "v1.1.4",
  1027  )
  1028  
  1029  go_repository(
  1030      name = "com_github_willf_bitset",
  1031      importpath = "github.com/willf/bitset",
  1032      sum = "h1:N7Z7E9UvjW+sGsEl7k/SJrvY2reP1A07MrGuCjIOjRE=",
  1033      version = "v1.1.11",
  1034  )
  1035  
  1036  go_repository(
  1037      name = "com_github_xiang90_probing",
  1038      importpath = "github.com/xiang90/probing",
  1039      sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
  1040      version = "v0.0.0-20190116061207-43a291ad63a2",
  1041  )
  1042  
  1043  go_repository(
  1044      name = "com_github_xordataexchange_crypt",
  1045      importpath = "github.com/xordataexchange/crypt",
  1046      sum = "h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=",
  1047      version = "v0.0.3-0.20170626215501-b2862e3d0a77",
  1048  )
  1049  
  1050  go_repository(
  1051      name = "com_github_yvasiyarov_go_metrics",
  1052      importpath = "github.com/yvasiyarov/go-metrics",
  1053      sum = "h1:+lm10QQTNSBd8DVTNGHx7o/IKu9HYDvLMffDhbyLccI=",
  1054      version = "v0.0.0-20140926110328-57bccd1ccd43",
  1055  )
  1056  
  1057  go_repository(
  1058      name = "com_github_yvasiyarov_gorelic",
  1059      importpath = "github.com/yvasiyarov/gorelic",
  1060      sum = "h1:hlE8//ciYMztlGpl/VA+Zm1AcTPHYkHJPbHqE6WJUXE=",
  1061      version = "v0.0.0-20141212073537-a9bba5b9ab50",
  1062  )
  1063  
  1064  go_repository(
  1065      name = "com_github_yvasiyarov_newrelic_platform_go",
  1066      importpath = "github.com/yvasiyarov/newrelic_platform_go",
  1067      sum = "h1:ERexzlUfuTvpE74urLSbIQW0Z/6hF9t8U4NsJLaioAY=",
  1068      version = "v0.0.0-20140908184405-b21fdbd4370f",
  1069  )
  1070  
  1071  go_repository(
  1072      name = "in_gopkg_airbrake_gobrake_v2",
  1073      importpath = "gopkg.in/airbrake/gobrake.v2",
  1074      sum = "h1:7z2uVWwn7oVeeugY1DtlPAy5H+KYgB1KeKTnqjNatLo=",
  1075      version = "v2.0.9",
  1076  )
  1077  
  1078  go_repository(
  1079      name = "in_gopkg_alecthomas_kingpin_v2",
  1080      importpath = "gopkg.in/alecthomas/kingpin.v2",
  1081      sum = "h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=",
  1082      version = "v2.2.6",
  1083  )
  1084  
  1085  go_repository(
  1086      name = "in_gopkg_cheggaaa_pb_v1",
  1087      importpath = "gopkg.in/cheggaaa/pb.v1",
  1088      sum = "h1:Ev7yu1/f6+d+b3pi5vPdRPc6nNtP1umSfcWiEfRqv6I=",
  1089      version = "v1.0.25",
  1090  )
  1091  
  1092  go_repository(
  1093      name = "in_gopkg_gemnasium_logrus_airbrake_hook_v2",
  1094      importpath = "gopkg.in/gemnasium/logrus-airbrake-hook.v2",
  1095      sum = "h1:OAj3g0cR6Dx/R07QgQe8wkA9RNjB2u4i700xBkIT4e0=",
  1096      version = "v2.1.2",
  1097  )
  1098  
  1099  go_repository(
  1100      name = "in_gopkg_natefinch_lumberjack_v2",
  1101      importpath = "gopkg.in/natefinch/lumberjack.v2",
  1102      sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=",
  1103      version = "v2.0.0",
  1104  )
  1105  
  1106  go_repository(
  1107      name = "in_gopkg_resty_v1",
  1108      importpath = "gopkg.in/resty.v1",
  1109      sum = "h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI=",
  1110      version = "v1.12.0",
  1111  )
  1112  
  1113  go_repository(
  1114      name = "in_gopkg_square_go_jose_v2",
  1115      importpath = "gopkg.in/square/go-jose.v2",
  1116      sum = "h1:7odma5RETjNHWJnR32wx8t+Io4djHE1PqxCFx3iiZ2w=",
  1117      version = "v2.5.1",
  1118  )
  1119  
  1120  go_repository(
  1121      name = "in_gopkg_yaml_v3",
  1122      importpath = "gopkg.in/yaml.v3",
  1123      sum = "h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=",
  1124      version = "v3.0.0-20200313102051-9f266ea9e77c",
  1125  )
  1126  
  1127  go_repository(
  1128      name = "io_etcd_go_bbolt",
  1129      importpath = "go.etcd.io/bbolt",
  1130      sum = "h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=",
  1131      version = "v1.3.5",
  1132  )
  1133  
  1134  go_repository(
  1135      name = "io_etcd_go_etcd",
  1136      importpath = "go.etcd.io/etcd",
  1137      sum = "h1:1JFLBqwIgdyHN1ZtgjTBwO+blA6gVOmZurpiMEsETKo=",
  1138      version = "v0.5.0-alpha.5.0.20200910180754-dd1b699fc489",
  1139  )
  1140  
  1141  go_repository(
  1142      name = "io_k8s_component_base",
  1143      importpath = "k8s.io/component-base",
  1144      sum = "h1:wHmQb3b/QCTODA/MGih9x7XZQmhdDlA8AxJnAID6T2A=",
  1145      version = "v0.16.13",
  1146  )
  1147  
  1148  go_repository(
  1149      name = "io_k8s_cri_api",
  1150      importpath = "k8s.io/cri-api",
  1151      sum = "h1:iXX0K2pRrbR8yXbZtDK/bSnmg/uSqIFiVJK1x4LUOMc=",
  1152      version = "v0.20.6",
  1153  )
  1154  
  1155  go_repository(
  1156      name = "io_k8s_klog_v2",
  1157      importpath = "k8s.io/klog/v2",
  1158      sum = "h1:7+X0fUguPyrKEC4WjH8iGDg3laWgMo5tMnRTIGTTxGQ=",
  1159      version = "v2.4.0",
  1160  )
  1161  
  1162  go_repository(
  1163      name = "io_k8s_kubernetes",
  1164      importpath = "k8s.io/kubernetes",
  1165      sum = "h1:qTfB+u5M92k2fCCCVP2iuhgwwSOv1EkAkvQY1tQODD8=",
  1166      version = "v1.13.0",
  1167  )
  1168  
  1169  go_repository(
  1170      name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client",
  1171      importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
  1172      sum = "h1:4uqm9Mv+w2MmBYD+F4qf/v6tDFUdPOk29C095RbU5mY=",
  1173      version = "v0.0.15",
  1174  )
  1175  
  1176  go_repository(
  1177      name = "io_k8s_sigs_structured_merge_diff_v4",
  1178      importpath = "sigs.k8s.io/structured-merge-diff/v4",
  1179      sum = "h1:4oyYo8NREp49LBBhKxEqCulFjg26rawYKrnCmg+Sr6c=",
  1180      version = "v4.0.3",
  1181  )
  1182  
  1183  go_repository(
  1184      name = "io_opentelemetry_go_proto_otlp",
  1185      importpath = "go.opentelemetry.io/proto/otlp",
  1186      sum = "h1:rwOQPCuKAKmwGKq2aVNnYIibI6wnV7EvzgfTCzcdGg8=",
  1187      version = "v0.7.0",
  1188  )
  1189  
  1190  go_repository(
  1191      name = "org_golang_google_cloud",
  1192      importpath = "google.golang.org/cloud",
  1193      sum = "h1:Cpp2P6TPjujNoC5M2KHY6g7wfyLYfIWRZaSdIKfDasA=",
  1194      version = "v0.0.0-20151119220103-975617b05ea8",
  1195  )
  1196  
  1197  go_repository(
  1198      name = "org_mozilla_go_pkcs7",
  1199      importpath = "go.mozilla.org/pkcs7",
  1200      sum = "h1:A/5uWzF44DlIgdm/PQFwfMkW0JX+cIcQi/SwLAmZP5M=",
  1201      version = "v0.0.0-20200128120323-432b2356ecb1",
  1202  )
  1203  
  1204  go_repository(
  1205      name = "org_uber_go_zap",
  1206      importpath = "go.uber.org/zap",
  1207      sum = "h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=",
  1208      version = "v1.10.0",
  1209  )
  1210  
  1211  go_repository(
  1212      name = "tools_gotest_v3",
  1213      importpath = "gotest.tools/v3",
  1214      sum = "h1:4AuOwCGf4lLR9u3YOe2awrHygurzhO/HeQ6laiA6Sx0=",
  1215      version = "v3.0.3",
  1216  )
  1217  
  1218  go_repository(
  1219      name = "com_github_bazelbuild_rules_go",
  1220      importpath = "github.com/bazelbuild/rules_go",
  1221      sum = "h1:KViqR7qKXwz+LrNdIauCDU21kneCk+4DnYjpvlJwH50=",
  1222      version = "v0.27.0",
  1223  )
  1224  
  1225  rules_proto_dependencies()
  1226  
  1227  rules_proto_toolchains()
  1228  
  1229  # Load bazel_toolchain to support Remote Build Execution.
  1230  # See releases at https://releases.bazel.build/bazel-toolchains.html
  1231  http_archive(
  1232      name = "bazel_toolchains",
  1233      sha256 = "1adf5db506a7e3c465a26988514cfc3971af6d5b3c2218925cd6e71ee443fc3f",
  1234      strip_prefix = "bazel-toolchains-4.0.0",
  1235      urls = [
  1236          "https://github.com/bazelbuild/bazel-toolchains/releases/download/4.0.0/bazel-toolchains-4.0.0.tar.gz",
  1237          "https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/4.0.0/bazel-toolchains-4.0.0.tar.gz",
  1238      ],
  1239  )
  1240  
  1241  # Creates a default toolchain config for RBE.
  1242  load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
  1243  
  1244  rbe_autoconfig(name = "rbe_default")
  1245  
  1246  http_archive(
  1247      name = "rules_pkg",
  1248      sha256 = "6b5969a7acd7b60c02f816773b06fcf32fbe8ba0c7919ccdc2df4f8fb923804a",
  1249      url = "https://github.com/bazelbuild/rules_pkg/releases/download/0.3.0/rules_pkg-0.3.0.tar.gz",
  1250  )
  1251  
  1252  load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")
  1253  
  1254  rules_pkg_dependencies()
  1255  
  1256  # System Call test dependencies.
  1257  # grpc also has a dependency on abseil but as this is before grpc dependency 
  1258  # declaration, it will take precedence over grpc's one
  1259  # Version LTS 20210324.2
  1260  http_archive(
  1261      name = "com_google_absl",
  1262      sha256 = "1764491a199eb9325b177126547f03d244f86b4ff28f16f206c7b3e7e4f777ec",
  1263      strip_prefix = "abseil-cpp-278e0a071885a22dcd2fd1b5576cc44757299343",
  1264      urls = [
  1265          "https://mirror.bazel.build/github.com/abseil/abseil-cpp/archive/278e0a071885a22dcd2fd1b5576cc44757299343.tar.gz",
  1266          "https://github.com/abseil/abseil-cpp/archive/278e0a071885a22dcd2fd1b5576cc44757299343.tar.gz"
  1267      ],
  1268  )
  1269  
  1270  # Load C++ grpc rules.
  1271  http_archive(
  1272      name = "com_github_grpc_grpc",
  1273      sha256 = "2fcb7f1ab160d6fd3aaade64520be3e5446fc4c6fa7ba6581afdc4e26094bd81",
  1274      strip_prefix = "grpc-1.26.0",
  1275      urls = [
  1276          "https://github.com/grpc/grpc/archive/v1.26.0.tar.gz",
  1277      ],
  1278  )
  1279  
  1280  load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
  1281  
  1282  grpc_deps()
  1283  
  1284  load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps")
  1285  
  1286  grpc_extra_deps()
  1287  
  1288  
  1289  http_archive(
  1290      name = "com_google_googletest",
  1291      sha256 = "0a10bea96d8670e5eef948d79d824162b1577bb7889539e49ec786bfc3e48912",
  1292      strip_prefix = "googletest-565f1b848215b77c3732bca345fe76a0431d8b34",
  1293      urls = [
  1294          "https://mirror.bazel.build/github.com/google/googletest/archive/565f1b848215b77c3732bca345fe76a0431d8b34.tar.gz",
  1295          "https://github.com/google/googletest/archive/565f1b848215b77c3732bca345fe76a0431d8b34.tar.gz",
  1296      ],
  1297  )
  1298  
  1299  http_archive(
  1300      name = "com_google_benchmark",
  1301      sha256 = "3c6a165b6ecc948967a1ead710d4a181d7b0fbcaa183ef7ea84604994966221a",
  1302      strip_prefix = "benchmark-1.5.0",
  1303      urls = [
  1304          "https://mirror.bazel.build/github.com/google/benchmark/archive/v1.5.0.tar.gz",
  1305          "https://github.com/google/benchmark/archive/v1.5.0.tar.gz",
  1306      ],
  1307  )
  1308  
  1309  # Schemas for testing.
  1310  http_file(
  1311      name = "buildkite_pipeline_schema",
  1312      sha256 = "3369c58038b4d55c08928affafb653716eb1e7b3cabb4a391aef979dd921f4e1",
  1313      urls = ["https://raw.githubusercontent.com/buildkite/pipeline-schema/f7a0894074d194bcf19eec5411fec0528f7f4180/schema.json"],
  1314  )
  1315  
  1316  http_file(
  1317      name = "github_workflow_schema",
  1318      sha256 = "60603d1095b11d136e04a8b95be83a23ad8044169e46f82f925c320c1cf47a49",
  1319      urls = ["https://raw.githubusercontent.com/SchemaStore/schemastore/27612065234778feaac216ce14dd47846fe0a2dd/src/schemas/json/github-workflow.json"],
  1320  )
  1321  
  1322  # External Go repositories.
  1323  #
  1324  # Unfortunately, gazelle will automatically parse go modules in the
  1325  # repositories and generate new go_repository stanzas. These may not respect
  1326  # pins that we have in go.mod or below. So order actually matters here.
  1327  
  1328  go_repository(
  1329      name = "com_github_sirupsen_logrus",
  1330      importpath = "github.com/sirupsen/logrus",
  1331      sum = "h1:ShrD1U9pZB12TX0cVy0DtePoCH97K8EtX+mg7ZARUtM=",
  1332      version = "v1.7.0",
  1333  )
  1334  
  1335  go_repository(
  1336      name = "com_github_containerd_containerd",
  1337      build_file_proto_mode = "disable",
  1338      importpath = "github.com/containerd/containerd",
  1339      sum = "h1:K2U/F4jGAMBqeUssfgJRbFuomLcS2Fxo1vR3UM/Mbh8=",
  1340      version = "v1.3.9",
  1341  )
  1342  
  1343  go_repository(
  1344      name = "com_github_cenkalti_backoff",
  1345      importpath = "github.com/cenkalti/backoff",
  1346      sum = "h1:8eZxmY1yvxGHzdzTEhI09npjMVGzNAdrqzruTX6jcK4=",
  1347      version = "v1.1.1-0.20190506075156-2146c9339422",
  1348  )
  1349  
  1350  go_repository(
  1351      name = "com_github_gofrs_flock",
  1352      importpath = "github.com/gofrs/flock",
  1353      sum = "h1:MSdYClljsF3PbENUUEx85nkWfJSGfzYI9yEBZOJz6CY=",
  1354      version = "v0.8.0",
  1355  )
  1356  
  1357  go_repository(
  1358      name = "com_github_golang_mock",
  1359      importpath = "github.com/golang/mock",
  1360      sum = "h1:jlYHihg//f7RRwuPfptm04yp4s7O6Kw8EZiVYIGcH0g=",
  1361      version = "v1.5.0",
  1362  )
  1363  
  1364  go_repository(
  1365      name = "com_github_google_subcommands",
  1366      importpath = "github.com/google/subcommands",
  1367      sum = "h1:8nlgEAjIalk6uj/CGKCdOO8CQqTeysvcW4RFZ6HbkGM=",
  1368      version = "v1.0.2-0.20190508160503-636abe8753b8",
  1369  )
  1370  
  1371  go_repository(
  1372      name = "com_github_google_uuid",
  1373      importpath = "github.com/google/uuid",
  1374      sum = "h1:qJYtXnJRWmpe7m/3XlyhrsLrEURqHRM2kxzoxXqyUDs=",
  1375      version = "v1.2.0",
  1376  )
  1377  
  1378  go_repository(
  1379      name = "com_github_kr_pretty",
  1380      importpath = "github.com/kr/pretty",
  1381      sum = "h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=",
  1382      version = "v0.2.1",
  1383  )
  1384  
  1385  go_repository(
  1386      name = "com_github_kr_pty",
  1387      importpath = "github.com/kr/pty",
  1388      sum = "h1:zc0R6cOw98cMengLA0fvU55mqbnN7sd/tBMLzSejp+M=",
  1389      version = "v1.1.4-0.20190131011033-7dc38fb350b1",
  1390  )
  1391  
  1392  go_repository(
  1393      name = "com_github_kr_text",
  1394      importpath = "github.com/kr/text",
  1395      sum = "h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=",
  1396      version = "v0.1.0",
  1397  )
  1398  
  1399  go_repository(
  1400      name = "com_github_mohae_deepcopy",
  1401      importpath = "github.com/mohae/deepcopy",
  1402      sum = "h1:Sha2bQdoWE5YQPTlJOL31rmce94/tYi113SlFo1xQ2c=",
  1403      version = "v0.0.0-20170308212314-bb9b5e7adda9",
  1404  )
  1405  
  1406  go_repository(
  1407      name = "com_github_syndtr_gocapability",
  1408      importpath = "github.com/syndtr/gocapability",
  1409      sum = "h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=",
  1410      version = "v0.0.0-20180916011248-d98352740cb2",
  1411  )
  1412  
  1413  go_repository(
  1414      name = "com_github_vishvananda_netlink",
  1415      importpath = "github.com/vishvananda/netlink",
  1416      sum = "h1:7SWt9pGCMaw+N1ZhRsaLKaYNviFhxambdoaoYlDqz1w=",
  1417      version = "v1.0.1-0.20190930145447-2ec5bdc52b86",
  1418  )
  1419  
  1420  go_repository(
  1421      name = "org_golang_google_grpc",
  1422      build_file_proto_mode = "disable",
  1423      importpath = "google.golang.org/grpc",
  1424      sum = "h1:c+E5hkHV2oYLLcjZ0Uulu4thvOFKB0a9TWvowIWqgu4=",
  1425      version = "v1.39.0-dev.0.20210518002758-2713b77e8526",
  1426  )
  1427  
  1428  go_repository(
  1429      name = "in_gopkg_check_v1",
  1430      importpath = "gopkg.in/check.v1",
  1431      sum = "h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=",
  1432      version = "v1.0.0-20190902080502-41f04d3bba15",
  1433  )
  1434  
  1435  go_repository(
  1436      name = "org_golang_x_crypto",
  1437      importpath = "golang.org/x/crypto",
  1438      sum = "h1:/ZScEX8SfEmUGRHs0gxpqteO5nfNW6axyZbBdw9A12g=",
  1439      version = "v0.0.0-20210220033148-5ea612d1eb83",
  1440  )
  1441  
  1442  go_repository(
  1443      name = "org_golang_x_mod",
  1444      importpath = "golang.org/x/mod",
  1445      sum = "h1:Kvvh58BN8Y9/lBi7hTekvtMpm07eUZ0ck5pRHpsMWrY=",
  1446      version = "v0.4.1",
  1447  )
  1448  
  1449  go_repository(
  1450      name = "org_golang_x_net",
  1451      importpath = "golang.org/x/net",
  1452      sum = "h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw=",
  1453      version = "v0.0.0-20210226172049-e18ecbb05110",
  1454  )
  1455  
  1456  go_repository(
  1457      name = "org_golang_x_sync",
  1458      importpath = "golang.org/x/sync",
  1459      sum = "h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=",
  1460      version = "v0.0.0-20210220032951-036812b2e83c",
  1461  )
  1462  
  1463  go_repository(
  1464      name = "org_golang_x_text",
  1465      importpath = "golang.org/x/text",
  1466      sum = "h1:i6eZZ+zk0SOf0xgBpEpPD18qWcJda6q1sxt3S0kzyUQ=",
  1467      version = "v0.3.5",
  1468  )
  1469  
  1470  go_repository(
  1471      name = "org_golang_x_time",
  1472      importpath = "golang.org/x/time",
  1473      sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=",
  1474      version = "v0.0.0-20191024005414-555d28b269f0",
  1475  )
  1476  
  1477  go_repository(
  1478      name = "org_golang_x_tools",
  1479      importpath = "golang.org/x/tools",
  1480      sum = "h1:po9/4sTYwZU9lPhi1tOrb4hCv3qrhiQ77LZfGa2OjwY=",
  1481      version = "v0.1.0",
  1482  )
  1483  
  1484  go_repository(
  1485      name = "org_golang_x_xerrors",
  1486      importpath = "golang.org/x/xerrors",
  1487      sum = "h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=",
  1488      version = "v0.0.0-20200804184101-5ec99f83aff1",
  1489  )
  1490  
  1491  go_repository(
  1492      name = "com_github_google_btree",
  1493      importpath = "github.com/google/btree",
  1494      sum = "h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4=",
  1495      version = "v1.0.1",
  1496  )
  1497  
  1498  go_repository(
  1499      name = "com_github_golang_protobuf",
  1500      importpath = "github.com/golang/protobuf",
  1501      sum = "h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4=",
  1502      version = "v1.5.0",
  1503  )
  1504  
  1505  go_repository(
  1506      name = "org_golang_x_oauth2",
  1507      importpath = "golang.org/x/oauth2",
  1508      sum = "h1:0Ja1LBD+yisY6RWM/BH7TJVXWsSjs2VwBSmvSX4HdBc=",
  1509      version = "v0.0.0-20210402161424-2e8d93401602",
  1510  )
  1511  
  1512  go_repository(
  1513      name = "com_github_docker_docker",
  1514      importpath = "github.com/docker/docker",
  1515      sum = "h1:5AkIsnQpeL7eaqsM+Vl4Xbj5eIZFpPZZzXtNyfzzK/w=",
  1516      version = "v1.4.2-0.20191028175130-9e7d5ac5ea55",
  1517  )
  1518  
  1519  go_repository(
  1520      name = "com_github_docker_go_connections",
  1521      importpath = "github.com/docker/go-connections",
  1522      sum = "h1:3lOnM9cSzgGwx8VfK/NGOW5fLQ0GjIlCkaktF+n1M6o=",
  1523      version = "v0.3.0",
  1524  )
  1525  
  1526  go_repository(
  1527      name = "com_github_pkg_errors",
  1528      importpath = "github.com/pkg/errors",
  1529      sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
  1530      version = "v0.9.1",
  1531  )
  1532  
  1533  go_repository(
  1534      name = "com_github_docker_go_units",
  1535      importpath = "github.com/docker/go-units",
  1536      sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
  1537      version = "v0.4.0",
  1538  )
  1539  
  1540  go_repository(
  1541      name = "com_github_opencontainers_go_digest",
  1542      importpath = "github.com/opencontainers/go-digest",
  1543      sum = "h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=",
  1544      version = "v1.0.0",
  1545  )
  1546  
  1547  go_repository(
  1548      name = "com_github_docker_distribution",
  1549      importpath = "github.com/docker/distribution",
  1550      sum = "h1:dvc1KSkIYTVjZgHf/CTC2diTYC8PzhaA5sFISRfNVrE=",
  1551      version = "v2.7.1-0.20190205005809-0d3efadf0154+incompatible",
  1552  )
  1553  
  1554  go_repository(
  1555      name = "com_github_davecgh_go_spew",
  1556      importpath = "github.com/davecgh/go-spew",
  1557      sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
  1558      version = "v1.1.1",
  1559  )
  1560  
  1561  go_repository(
  1562      name = "com_github_konsorten_go_windows_terminal_sequences",
  1563      importpath = "github.com/konsorten/go-windows-terminal-sequences",
  1564      sum = "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=",
  1565      version = "v1.0.3",
  1566  )
  1567  
  1568  go_repository(
  1569      name = "com_github_pmezard_go_difflib",
  1570      importpath = "github.com/pmezard/go-difflib",
  1571      sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=",
  1572      version = "v1.0.0",
  1573  )
  1574  
  1575  go_repository(
  1576      name = "com_github_stretchr_testify",
  1577      importpath = "github.com/stretchr/testify",
  1578      sum = "h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=",
  1579      version = "v1.6.1",
  1580  )
  1581  
  1582  go_repository(
  1583      name = "com_github_opencontainers_image_spec",
  1584      importpath = "github.com/opencontainers/image-spec",
  1585      sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
  1586      version = "v1.0.1",
  1587  )
  1588  
  1589  go_repository(
  1590      name = "com_github_microsoft_go_winio",
  1591      importpath = "github.com/Microsoft/go-winio",
  1592      sum = "h1:Elr9Wn+sGKPlkaBvwu4mTrxtmOp3F3yV9qhaHbXGjwU=",
  1593      version = "v0.5.0",
  1594  )
  1595  
  1596  go_repository(
  1597      name = "com_github_stretchr_objx",
  1598      importpath = "github.com/stretchr/objx",
  1599      sum = "h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=",
  1600      version = "v0.2.0",
  1601  )
  1602  
  1603  go_repository(
  1604      name = "org_uber_go_atomic",
  1605      importpath = "go.uber.org/atomic",
  1606      sum = "h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw=",
  1607      version = "v1.7.0",
  1608  )
  1609  
  1610  go_repository(
  1611      name = "org_uber_go_multierr",
  1612      importpath = "go.uber.org/multierr",
  1613      sum = "h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4=",
  1614      version = "v1.6.0",
  1615  )
  1616  
  1617  go_repository(
  1618      name = "com_google_cloud_go",
  1619      importpath = "cloud.google.com/go",
  1620      sum = "h1:oqqswrt4x6b9OGBnNqdssxBl1xf0rSUNjU2BR4BZar0=",
  1621      version = "v0.79.0",
  1622  )
  1623  
  1624  go_repository(
  1625      name = "io_opencensus_go",
  1626      importpath = "go.opencensus.io",
  1627      sum = "h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=",
  1628      version = "v0.23.0",
  1629  )
  1630  
  1631  go_repository(
  1632      name = "co_honnef_go_tools",
  1633      importpath = "honnef.co/go/tools",
  1634      sum = "h1:EVDuO03OCZwpV2t/tLLxPmPiomagMoBOgfPt0FM+4IY=",
  1635      version = "v0.1.1",
  1636  )
  1637  
  1638  go_repository(
  1639      name = "com_github_burntsushi_toml",
  1640      importpath = "github.com/BurntSushi/toml",
  1641      sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
  1642      version = "v0.3.1",
  1643  )
  1644  
  1645  go_repository(
  1646      name = "com_github_census_instrumentation_opencensus_proto",
  1647      importpath = "github.com/census-instrumentation/opencensus-proto",
  1648      sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=",
  1649      version = "v0.2.1",
  1650  )
  1651  
  1652  go_repository(
  1653      name = "com_github_client9_misspell",
  1654      importpath = "github.com/client9/misspell",
  1655      sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=",
  1656      version = "v0.3.4",
  1657  )
  1658  
  1659  go_repository(
  1660      name = "com_github_cncf_udpa_go",
  1661      importpath = "github.com/cncf/udpa/go",
  1662      sum = "h1:cqQfy1jclcSy/FwLjemeg3SR1yaINm74aQyupQ0Bl8M=",
  1663      version = "v0.0.0-20201120205902-5459f2c99403",
  1664  )
  1665  
  1666  go_repository(
  1667      name = "com_github_containerd_cgroups",
  1668      build_file_proto_mode = "disable",
  1669      importpath = "github.com/containerd/cgroups",
  1670      sum = "h1:7grrpcfCtbZLsjtB0DgMuzs1umsJmpzaHMZ6cO6iAWw=",
  1671      version = "v0.0.0-20201119153540-4cbc285b3327",
  1672  )
  1673  
  1674  go_repository(
  1675      name = "com_github_containerd_console",
  1676      importpath = "github.com/containerd/console",
  1677      sum = "h1:u7SFAJyRqWcG6ogaMAx3KjSTy1e3hT9QxqX7Jco7dRc=",
  1678      version = "v1.0.1",
  1679  )
  1680  
  1681  go_repository(
  1682      name = "com_github_containerd_continuity",
  1683      importpath = "github.com/containerd/continuity",
  1684      sum = "h1:UFRRY5JemiAhPZrr/uE0n8fMTLcZsUvySPr1+D7pgr8=",
  1685      version = "v0.1.0",
  1686  )
  1687  
  1688  go_repository(
  1689      name = "com_github_containerd_fifo",
  1690      importpath = "github.com/containerd/fifo",
  1691      sum = "h1:lsjC5ENBl+Zgf38+B0ymougXFp0BaubeIVETltYZTQw=",
  1692      version = "v0.0.0-20191213151349-ff969a566b00",
  1693  )
  1694  
  1695  go_repository(
  1696      name = "com_github_containerd_go_runc",
  1697      importpath = "github.com/containerd/go-runc",
  1698      sum = "h1:PRTagVMbJcCezLcHXe8UJvR1oBzp2lG3CEumeFOLOds=",
  1699      version = "v0.0.0-20200220073739-7016d3ce2328",
  1700  )
  1701  
  1702  go_repository(
  1703      name = "com_github_containerd_ttrpc",
  1704      importpath = "github.com/containerd/ttrpc",
  1705      sum = "h1:2/O3oTZN36q2xRolk0a2WWGgh7/Vf/liElg5hFYLX9U=",
  1706      version = "v1.0.2",
  1707  )
  1708  
  1709  go_repository(
  1710      name = "com_github_docker_go_events",
  1711      importpath = "github.com/docker/go-events",
  1712      sum = "h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8=",
  1713      version = "v0.0.0-20190806004212-e31b211e4f1c",
  1714  )
  1715  
  1716  go_repository(
  1717      name = "com_github_dustin_go_humanize",
  1718      importpath = "github.com/dustin/go-humanize",
  1719      sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
  1720      version = "v1.0.0",
  1721  )
  1722  
  1723  go_repository(
  1724      name = "com_github_envoyproxy_go_control_plane",
  1725      importpath = "github.com/envoyproxy/go-control-plane",
  1726      sum = "h1:dulLQAYQFYtG5MTplgNGHWuV2D+OBD+Z8lmDBmbLg+s=",
  1727      version = "v0.9.9-0.20210512163311-63b5d3c536b0",
  1728  )
  1729  
  1730  go_repository(
  1731      name = "com_github_envoyproxy_protoc_gen_validate",
  1732      importpath = "github.com/envoyproxy/protoc-gen-validate",
  1733      sum = "h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=",
  1734      version = "v0.1.0",
  1735  )
  1736  
  1737  go_repository(
  1738      name = "com_github_gogo_googleapis",
  1739      importpath = "github.com/gogo/googleapis",
  1740      sum = "h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0=",
  1741      version = "v1.4.1",
  1742  )
  1743  
  1744  go_repository(
  1745      name = "com_github_gogo_protobuf",
  1746      importpath = "github.com/gogo/protobuf",
  1747      sum = "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=",
  1748      version = "v1.3.2",
  1749  )
  1750  
  1751  go_repository(
  1752      name = "com_github_golang_glog",
  1753      importpath = "github.com/golang/glog",
  1754      sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=",
  1755      version = "v0.0.0-20160126235308-23def4e6c14b",
  1756  )
  1757  
  1758  go_repository(
  1759      name = "com_github_google_go_cmp",
  1760      importpath = "github.com/google/go-cmp",
  1761      sum = "h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=",
  1762      version = "v0.5.5",
  1763  )
  1764  
  1765  go_repository(
  1766      name = "com_github_google_go_querystring",
  1767      importpath = "github.com/google/go-querystring",
  1768      sum = "h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=",
  1769      version = "v1.0.0",
  1770  )
  1771  
  1772  go_repository(
  1773      name = "com_github_hashicorp_golang_lru",
  1774      importpath = "github.com/hashicorp/golang-lru",
  1775      sum = "h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU=",
  1776      version = "v0.5.1",
  1777  )
  1778  
  1779  go_repository(
  1780      name = "com_github_inconshreveable_mousetrap",
  1781      importpath = "github.com/inconshreveable/mousetrap",
  1782      sum = "h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=",
  1783      version = "v1.0.0",
  1784  )
  1785  
  1786  go_repository(
  1787      name = "com_github_kisielk_errcheck",
  1788      importpath = "github.com/kisielk/errcheck",
  1789      sum = "h1:e8esj/e4R+SAOwFwN+n3zr0nYeCyeweozKfO23MvHzY=",
  1790      version = "v1.5.0",
  1791  )
  1792  
  1793  go_repository(
  1794      name = "com_github_kisielk_gotool",
  1795      importpath = "github.com/kisielk/gotool",
  1796      sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=",
  1797      version = "v1.0.0",
  1798  )
  1799  
  1800  go_repository(
  1801      name = "com_github_microsoft_hcsshim",
  1802      importpath = "github.com/Microsoft/hcsshim",
  1803      sum = "h1:lbPVK25c1cu5xTLITwpUcxoA9vKrKErASPYygvouJns=",
  1804      version = "v0.8.14",
  1805  )
  1806  
  1807  go_repository(
  1808      name = "com_github_opencontainers_runc",
  1809      importpath = "github.com/opencontainers/runc",
  1810      sum = "h1:4+xo8mtWixbHoEm451+WJNUrq12o2/tDsyK9Vgc/NcA=",
  1811      version = "v1.0.0-rc90",
  1812  )
  1813  
  1814  go_repository(
  1815      name = "com_github_opencontainers_runtime_spec",
  1816      importpath = "github.com/opencontainers/runtime-spec",
  1817      sum = "h1:UfAcuLBJB9Coz72x1hgl8O5RVzTdNiaglX6v2DM6FI0=",
  1818      version = "v1.0.2",
  1819  )
  1820  
  1821  go_repository(
  1822      name = "com_github_pborman_uuid",
  1823      importpath = "github.com/pborman/uuid",
  1824      sum = "h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g=",
  1825      version = "v1.2.0",
  1826  )
  1827  
  1828  go_repository(
  1829      name = "com_github_prometheus_client_model",
  1830      importpath = "github.com/prometheus/client_model",
  1831      sum = "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=",
  1832      version = "v0.2.0",
  1833  )
  1834  
  1835  go_repository(
  1836      name = "com_github_prometheus_procfs",
  1837      importpath = "github.com/prometheus/procfs",
  1838      sum = "h1:mxy4L2jP6qMonqmq+aTtOx1ifVWUgG/TAmntgbh3xv4=",
  1839      version = "v0.6.0",
  1840  )
  1841  
  1842  go_repository(
  1843      name = "com_github_spf13_cobra",
  1844      importpath = "github.com/spf13/cobra",
  1845      sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=",
  1846      version = "v1.0.0",
  1847  )
  1848  
  1849  go_repository(
  1850      name = "com_github_spf13_pflag",
  1851      importpath = "github.com/spf13/pflag",
  1852      sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=",
  1853      version = "v1.0.5",
  1854  )
  1855  
  1856  go_repository(
  1857      name = "com_github_urfave_cli",
  1858      importpath = "github.com/urfave/cli",
  1859      sum = "h1:gsqYFH8bb9ekPA12kRo0hfjngWQjkJPlN9R0N78BoUo=",
  1860      version = "v1.22.2",
  1861  )
  1862  
  1863  go_repository(
  1864      name = "com_github_yuin_goldmark",
  1865      importpath = "github.com/yuin/goldmark",
  1866      sum = "h1:ruQGxdhGHe7FWOJPT0mKs5+pD2Xs1Bm/kdGlHO04FmM=",
  1867      version = "v1.2.1",
  1868  )
  1869  
  1870  go_repository(
  1871      name = "in_gopkg_yaml_v2",
  1872      importpath = "gopkg.in/yaml.v2",
  1873      sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=",
  1874      version = "v2.2.8",
  1875  )
  1876  
  1877  go_repository(
  1878      name = "org_bazil_fuse",
  1879      importpath = "bazil.org/fuse",
  1880      sum = "h1:SC+c6A1qTFstO9qmB86mPV2IpYme/2ZoEQ0hrP+wo+Q=",
  1881      version = "v0.0.0-20160811212531-371fbbdaa898",
  1882  )
  1883  
  1884  go_repository(
  1885      name = "org_golang_google_appengine",
  1886      importpath = "google.golang.org/appengine",
  1887      sum = "h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=",
  1888      version = "v1.6.7",
  1889  )
  1890  
  1891  go_repository(
  1892      name = "org_golang_google_genproto",
  1893      importpath = "google.golang.org/genproto",
  1894      sum = "h1:YRBxgxUW6GFi+AKsn8WGA9k1SZohK+gGuEqdeT5aoNQ=",
  1895      version = "v0.0.0-20210312152112-fc591d9ea70f",
  1896  )
  1897  
  1898  go_repository(
  1899      name = "org_golang_google_protobuf",
  1900      importpath = "google.golang.org/protobuf",
  1901      sum = "h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk=",
  1902      version = "v1.26.0",
  1903  )
  1904  
  1905  go_repository(
  1906      name = "org_golang_x_exp",
  1907      importpath = "golang.org/x/exp",
  1908      sum = "h1:QE6XYQK6naiK1EPAe1g/ILLxN5RBoH5xkJk3CqlMI/Y=",
  1909      version = "v0.0.0-20200224162631-6cc2880d07d6",
  1910  )
  1911  
  1912  go_repository(
  1913      name = "org_golang_x_lint",
  1914      importpath = "golang.org/x/lint",
  1915      sum = "h1:2M3HP5CCK1Si9FQhwnzYhXdG6DXeebvUHFpre8QvbyI=",
  1916      version = "v0.0.0-20201208152925-83fdc39ff7b5",
  1917  )
  1918  
  1919  go_repository(
  1920      name = "tools_gotest",
  1921      importpath = "gotest.tools",
  1922      sum = "h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=",
  1923      version = "v2.2.0+incompatible",
  1924  )
  1925  
  1926  go_repository(
  1927      name = "com_github_burntsushi_xgb",
  1928      importpath = "github.com/BurntSushi/xgb",
  1929      sum = "h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=",
  1930      version = "v0.0.0-20160522181843-27f122750802",
  1931  )
  1932  
  1933  go_repository(
  1934      name = "com_github_chzyer_logex",
  1935      importpath = "github.com/chzyer/logex",
  1936      sum = "h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=",
  1937      version = "v1.1.10",
  1938  )
  1939  
  1940  go_repository(
  1941      name = "com_github_chzyer_readline",
  1942      importpath = "github.com/chzyer/readline",
  1943      sum = "h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=",
  1944      version = "v0.0.0-20180603132655-2972be24d48e",
  1945  )
  1946  
  1947  go_repository(
  1948      name = "com_github_chzyer_test",
  1949      importpath = "github.com/chzyer/test",
  1950      sum = "h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=",
  1951      version = "v0.0.0-20180213035817-a1ea475d72b1",
  1952  )
  1953  
  1954  go_repository(
  1955      name = "com_github_go_gl_glfw_v3_3_glfw",
  1956      importpath = "github.com/go-gl/glfw/v3.3/glfw",
  1957      sum = "h1:WtGNWLvXpe6ZudgnXrq0barxBImvnnJoMEhXAzcbM0I=",
  1958      version = "v0.0.0-20200222043503-6f7a984d4dc4",
  1959  )
  1960  
  1961  go_repository(
  1962      name = "com_github_golang_groupcache",
  1963      importpath = "github.com/golang/groupcache",
  1964      sum = "h1:1r7pUrabqp18hOBcwBwiTsbnFeTZHV9eER/QT5JVZxY=",
  1965      version = "v0.0.0-20200121045136-8c9f03a8e57e",
  1966  )
  1967  
  1968  go_repository(
  1969      name = "com_github_google_martian",
  1970      importpath = "github.com/google/martian",
  1971      sum = "h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no=",
  1972      version = "v2.1.0+incompatible",
  1973  )
  1974  
  1975  go_repository(
  1976      name = "com_github_google_pprof",
  1977      importpath = "github.com/google/pprof",
  1978      sum = "h1:l2YRhr+YLzmSp7KJMswRVk/lO5SwoFIcCLzJsVj+YPc=",
  1979      version = "v0.0.0-20210423192551-a2663126120b",
  1980  )
  1981  
  1982  go_repository(
  1983      name = "com_github_google_renameio",
  1984      importpath = "github.com/google/renameio",
  1985      sum = "h1:GOZbcHa3HfsPKPlmyPyN2KEohoMXOhdMbHrvbpl2QaA=",
  1986      version = "v0.1.0",
  1987  )
  1988  
  1989  go_repository(
  1990      name = "com_github_googleapis_gax_go_v2",
  1991      importpath = "github.com/googleapis/gax-go/v2",
  1992      sum = "h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM=",
  1993      version = "v2.0.5",
  1994  )
  1995  
  1996  go_repository(
  1997      name = "com_github_ianlancetaylor_demangle",
  1998      importpath = "github.com/ianlancetaylor/demangle",
  1999      sum = "h1:mV02weKRL81bEnm8A0HT1/CAelMQDBuQIfLw8n+d6xI=",
  2000      version = "v0.0.0-20200824232613-28f6c0f3b639",
  2001  )
  2002  
  2003  go_repository(
  2004      name = "com_github_jstemmer_go_junit_report",
  2005      importpath = "github.com/jstemmer/go-junit-report",
  2006      sum = "h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o=",
  2007      version = "v0.9.1",
  2008  )
  2009  
  2010  go_repository(
  2011      name = "com_github_rogpeppe_go_internal",
  2012      importpath = "github.com/rogpeppe/go-internal",
  2013      sum = "h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk=",
  2014      version = "v1.3.0",
  2015  )
  2016  
  2017  go_repository(
  2018      name = "com_shuralyov_dmitri_gpu_mtl",
  2019      importpath = "dmitri.shuralyov.com/gpu/mtl",
  2020      sum = "h1:VpgP7xuJadIUuKccphEpTJnWhS2jkQyMt6Y7pJCD7fY=",
  2021      version = "v0.0.0-20190408044501-666a987793e9",
  2022  )
  2023  
  2024  go_repository(
  2025      name = "in_gopkg_errgo_v2",
  2026      importpath = "gopkg.in/errgo.v2",
  2027      sum = "h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=",
  2028      version = "v2.1.0",
  2029  )
  2030  
  2031  go_repository(
  2032      name = "io_rsc_binaryregexp",
  2033      importpath = "rsc.io/binaryregexp",
  2034      sum = "h1:HfqmD5MEmC0zvwBuF187nq9mdnXjXsSivRiXN7SmRkE=",
  2035      version = "v0.2.0",
  2036  )
  2037  
  2038  go_repository(
  2039      name = "org_golang_google_api",
  2040      importpath = "google.golang.org/api",
  2041      sum = "h1:uqATLkpxiBrhrvFoebXUjvyzE9nQf+pVyy0Z0IHE+fc=",
  2042      version = "v0.42.0",
  2043  )
  2044  
  2045  go_repository(
  2046      name = "org_golang_x_image",
  2047      importpath = "golang.org/x/image",
  2048      sum = "h1:+qEpEAPhDZ1o0x3tHzZTQDArnOixOzGD9HUJfcg0mb4=",
  2049      version = "v0.0.0-20190802002840-cff245a6509b",
  2050  )
  2051  
  2052  go_repository(
  2053      name = "org_golang_x_mobile",
  2054      importpath = "golang.org/x/mobile",
  2055      sum = "h1:4+4C/Iv2U4fMZBiMCc98MG1In4gJY5YRhtpDNeDeHWs=",
  2056      version = "v0.0.0-20190719004257-d2bd2a29d028",
  2057  )
  2058  
  2059  go_repository(
  2060      name = "com_github_containerd_typeurl",
  2061      importpath = "github.com/containerd/typeurl",
  2062      sum = "h1:HovfQDS/K3Mr7eyS0QJLxE1CbVUhjZCl6g3OhFJgP1o=",
  2063      version = "v0.0.0-20200205145503-b45ef1f1f737",
  2064  )
  2065  
  2066  go_repository(
  2067      name = "com_github_vishvananda_netns",
  2068      importpath = "github.com/vishvananda/netns",
  2069      sum = "h1:p4VB7kIXpOQvVn1ZaTIVp+3vuYAXFe3OJEvjbUYJLaA=",
  2070      version = "v0.0.0-20210104183010-2eb08e3e575f",
  2071  )
  2072  
  2073  go_repository(
  2074      name = "com_google_cloud_go_bigquery",
  2075      importpath = "cloud.google.com/go/bigquery",
  2076      sum = "h1:PQcPefKFdaIzjQFbiyOgAqyx8q5djaE7x9Sqe712DPA=",
  2077      version = "v1.8.0",
  2078  )
  2079  
  2080  go_repository(
  2081      name = "com_google_cloud_go_datastore",
  2082      importpath = "cloud.google.com/go/datastore",
  2083      sum = "h1:/May9ojXjRkPBNVrq+oWLqmWCkr4OU5uRY29bu0mRyQ=",
  2084      version = "v1.1.0",
  2085  )
  2086  
  2087  go_repository(
  2088      name = "com_google_cloud_go_pubsub",
  2089      importpath = "cloud.google.com/go/pubsub",
  2090      sum = "h1:ukjixP1wl0LpnZ6LWtZJ0mX5tBmjp1f8Sqer8Z2OMUU=",
  2091      version = "v1.3.1",
  2092  )
  2093  
  2094  go_repository(
  2095      name = "com_google_cloud_go_storage",
  2096      importpath = "cloud.google.com/go/storage",
  2097      sum = "h1:STgFzyU5/8miMl0//zKh2aQeTyeaUH3WN9bSUiJ09bA=",
  2098      version = "v1.10.0",
  2099  )
  2100  
  2101  go_repository(
  2102      name = "com_github_cilium_ebpf",
  2103      importpath = "github.com/cilium/ebpf",
  2104      sum = "h1:QlHdikaxALkqWasW8hAC1mfR0jdmvbfaBdBPFmRSglA=",
  2105      version = "v0.4.0",
  2106  )
  2107  
  2108  go_repository(
  2109      name = "com_github_coreos_go_systemd_v22",
  2110      importpath = "github.com/coreos/go-systemd/v22",
  2111      sum = "h1:kq/SbG2BCKLkDKkjQf5OWwKWUKj1lgs3lFI4PxnR5lg=",
  2112      version = "v22.1.0",
  2113  )
  2114  
  2115  go_repository(
  2116      name = "com_github_cpuguy83_go_md2man_v2",
  2117      importpath = "github.com/cpuguy83/go-md2man/v2",
  2118      sum = "h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=",
  2119      version = "v2.0.0",
  2120  )
  2121  
  2122  go_repository(
  2123      name = "com_github_godbus_dbus_v5",
  2124      importpath = "github.com/godbus/dbus/v5",
  2125      sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=",
  2126      version = "v5.0.3",
  2127  )
  2128  
  2129  go_repository(
  2130      name = "com_github_russross_blackfriday_v2",
  2131      importpath = "github.com/russross/blackfriday/v2",
  2132      sum = "h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=",
  2133      version = "v2.0.1",
  2134  )
  2135  
  2136  go_repository(
  2137      name = "com_github_shurcool_sanitized_anchor_name",
  2138      importpath = "github.com/shurcooL/sanitized_anchor_name",
  2139      sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=",
  2140      version = "v1.0.0",
  2141  )
  2142  
  2143  go_repository(
  2144      name = "com_github_azure_go_autorest_autorest",
  2145      importpath = "github.com/Azure/go-autorest/autorest",
  2146      sum = "h1:eVvIXUKiTgv++6YnWb42DUA1YL7qDugnKP0HljexdnQ=",
  2147      version = "v0.11.1",
  2148  )
  2149  
  2150  go_repository(
  2151      name = "com_github_azure_go_autorest_autorest_adal",
  2152      importpath = "github.com/Azure/go-autorest/autorest/adal",
  2153      sum = "h1:Y3bBUV4rTuxenJJs41HU3qmqsb+auo+a3Lz+PlJPpL0=",
  2154      version = "v0.9.5",
  2155  )
  2156  
  2157  go_repository(
  2158      name = "com_github_azure_go_autorest_autorest_date",
  2159      importpath = "github.com/Azure/go-autorest/autorest/date",
  2160      sum = "h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw=",
  2161      version = "v0.3.0",
  2162  )
  2163  
  2164  go_repository(
  2165      name = "com_github_azure_go_autorest_autorest_mocks",
  2166      importpath = "github.com/Azure/go-autorest/autorest/mocks",
  2167      sum = "h1:K0laFcLE6VLTOwNgSxaGbUcLPuGXlNkbVvq4cW4nIHk=",
  2168      version = "v0.4.1",
  2169  )
  2170  
  2171  go_repository(
  2172      name = "com_github_azure_go_autorest_logger",
  2173      importpath = "github.com/Azure/go-autorest/logger",
  2174      sum = "h1:e4RVHVZKC5p6UANLJHkM4OfR1UKZPj8Wt8Pcx+3oqrE=",
  2175      version = "v0.2.0",
  2176  )
  2177  
  2178  go_repository(
  2179      name = "com_github_azure_go_autorest_tracing",
  2180      importpath = "github.com/Azure/go-autorest/tracing",
  2181      sum = "h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo=",
  2182      version = "v0.6.0",
  2183  )
  2184  
  2185  go_repository(
  2186      name = "com_github_dgrijalva_jwt_go",
  2187      importpath = "github.com/dgrijalva/jwt-go",
  2188      sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
  2189      version = "v3.2.0+incompatible",
  2190  )
  2191  
  2192  go_repository(
  2193      name = "com_github_docker_spdystream",
  2194      importpath = "github.com/docker/spdystream",
  2195      sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=",
  2196      version = "v0.0.0-20160310174837-449fdfce4d96",
  2197  )
  2198  
  2199  go_repository(
  2200      name = "com_github_elazarl_goproxy",
  2201      importpath = "github.com/elazarl/goproxy",
  2202      sum = "h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=",
  2203      version = "v0.0.0-20180725130230-947c36da3153",
  2204  )
  2205  
  2206  go_repository(
  2207      name = "com_github_emicklei_go_restful",
  2208      importpath = "github.com/emicklei/go-restful",
  2209      sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=",
  2210      version = "v2.9.5+incompatible",
  2211  )
  2212  
  2213  go_repository(
  2214      name = "com_github_evanphx_json_patch",
  2215      importpath = "github.com/evanphx/json-patch",
  2216      sum = "h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=",
  2217      version = "v4.9.0+incompatible",
  2218  )
  2219  
  2220  go_repository(
  2221      name = "com_github_fsnotify_fsnotify",
  2222      importpath = "github.com/fsnotify/fsnotify",
  2223      sum = "h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=",
  2224      version = "v1.4.9",
  2225  )
  2226  
  2227  go_repository(
  2228      name = "com_github_ghodss_yaml",
  2229      importpath = "github.com/ghodss/yaml",
  2230      sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
  2231      version = "v1.0.0",
  2232  )
  2233  
  2234  go_repository(
  2235      name = "com_github_go_logr_logr",
  2236      importpath = "github.com/go-logr/logr",
  2237      sum = "h1:QvGt2nLcHH0WK9orKa+ppBPAxREcH364nPUedEpK0TY=",
  2238      version = "v0.2.0",
  2239  )
  2240  
  2241  go_repository(
  2242      name = "com_github_go_openapi_jsonpointer",
  2243      importpath = "github.com/go-openapi/jsonpointer",
  2244      sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=",
  2245      version = "v0.19.3",
  2246  )
  2247  
  2248  go_repository(
  2249      name = "com_github_go_openapi_jsonreference",
  2250      importpath = "github.com/go-openapi/jsonreference",
  2251      sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=",
  2252      version = "v0.19.3",
  2253  )
  2254  
  2255  go_repository(
  2256      name = "com_github_go_openapi_spec",
  2257      importpath = "github.com/go-openapi/spec",
  2258      sum = "h1:A4SZ6IWh3lnjH0rG0Z5lkxazMGBECtrZcbyYQi+64k4=",
  2259      version = "v0.19.0",
  2260  )
  2261  
  2262  go_repository(
  2263      name = "com_github_go_openapi_swag",
  2264      importpath = "github.com/go-openapi/swag",
  2265      sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=",
  2266      version = "v0.19.5",
  2267  )
  2268  
  2269  go_repository(
  2270      name = "com_github_google_gofuzz",
  2271      importpath = "github.com/google/gofuzz",
  2272      sum = "h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g=",
  2273      version = "v1.1.0",
  2274  )
  2275  
  2276  go_repository(
  2277      name = "com_github_googleapis_gnostic",
  2278      build_file_proto_mode = "disable_global",
  2279      importpath = "github.com/googleapis/gnostic",
  2280      sum = "h1:BXDUo8p/DaxC+4FJY/SSx3gvnx9C1VdHNgaUkiEL5mk=",
  2281      version = "v0.4.0",
  2282  )
  2283  
  2284  go_repository(
  2285      name = "com_github_gophercloud_gophercloud",
  2286      importpath = "github.com/gophercloud/gophercloud",
  2287      sum = "h1:P/nh25+rzXouhytV2pUHBb65fnds26Ghl8/391+sT5o=",
  2288      version = "v0.1.0",
  2289  )
  2290  
  2291  go_repository(
  2292      name = "com_github_gregjones_httpcache",
  2293      importpath = "github.com/gregjones/httpcache",
  2294      sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=",
  2295      version = "v0.0.0-20180305231024-9cad4c3443a7",
  2296  )
  2297  
  2298  go_repository(
  2299      name = "com_github_hpcloud_tail",
  2300      importpath = "github.com/hpcloud/tail",
  2301      sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=",
  2302      version = "v1.0.0",
  2303  )
  2304  
  2305  go_repository(
  2306      name = "com_github_imdario_mergo",
  2307      importpath = "github.com/imdario/mergo",
  2308      sum = "h1:UauaLniWCFHWd+Jp9oCEkTBj8VO/9DKg3PV3VCNMDIg=",
  2309      version = "v0.3.9",
  2310  )
  2311  
  2312  go_repository(
  2313      name = "com_github_json_iterator_go",
  2314      importpath = "github.com/json-iterator/go",
  2315      sum = "h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=",
  2316      version = "v1.1.10",
  2317  )
  2318  
  2319  go_repository(
  2320      name = "com_github_mailru_easyjson",
  2321      importpath = "github.com/mailru/easyjson",
  2322      sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=",
  2323      version = "v0.7.0",
  2324  )
  2325  
  2326  go_repository(
  2327      name = "com_github_mattbaird_jsonpatch",
  2328      importpath = "github.com/mattbaird/jsonpatch",
  2329      sum = "h1:+J2gw7Bw77w/fbK7wnNJJDKmw1IbWft2Ul5BzrG1Qm8=",
  2330      version = "v0.0.0-20171005235357-81af80346b1a",
  2331  )
  2332  
  2333  go_repository(
  2334      name = "com_github_modern_go_concurrent",
  2335      importpath = "github.com/modern-go/concurrent",
  2336      sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
  2337      version = "v0.0.0-20180306012644-bacd9c7ef1dd",
  2338  )
  2339  
  2340  go_repository(
  2341      name = "com_github_modern_go_reflect2",
  2342      importpath = "github.com/modern-go/reflect2",
  2343      sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=",
  2344      version = "v1.0.1",
  2345  )
  2346  
  2347  go_repository(
  2348      name = "com_github_munnerz_goautoneg",
  2349      importpath = "github.com/munnerz/goautoneg",
  2350      sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=",
  2351      version = "v0.0.0-20191010083416-a7dc8b61c822",
  2352  )
  2353  
  2354  go_repository(
  2355      name = "com_github_mxk_go_flowrate",
  2356      importpath = "github.com/mxk/go-flowrate",
  2357      sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
  2358      version = "v0.0.0-20140419014527-cca7078d478f",
  2359  )
  2360  
  2361  go_repository(
  2362      name = "com_github_nytimes_gziphandler",
  2363      importpath = "github.com/NYTimes/gziphandler",
  2364      sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=",
  2365      version = "v0.0.0-20170623195520-56545f4a5d46",
  2366  )
  2367  
  2368  go_repository(
  2369      name = "com_github_onsi_ginkgo",
  2370      importpath = "github.com/onsi/ginkgo",
  2371      sum = "h1:mFwc4LvZ0xpSvDZ3E+k8Yte0hLOMxXUlP+yXtJqkYfQ=",
  2372      version = "v1.12.1",
  2373  )
  2374  
  2375  go_repository(
  2376      name = "com_github_onsi_gomega",
  2377      importpath = "github.com/onsi/gomega",
  2378      sum = "h1:Gwkk+PTu/nfOwNMtUB/mRUv0X7ewW5dO4AERT1ThVKo=",
  2379      version = "v1.10.0",
  2380  )
  2381  
  2382  go_repository(
  2383      name = "com_github_peterbourgon_diskv",
  2384      importpath = "github.com/peterbourgon/diskv",
  2385      sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=",
  2386      version = "v2.0.1+incompatible",
  2387  )
  2388  
  2389  go_repository(
  2390      name = "com_github_puerkitobio_purell",
  2391      importpath = "github.com/PuerkitoBio/purell",
  2392      sum = "h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=",
  2393      version = "v1.1.1",
  2394  )
  2395  
  2396  go_repository(
  2397      name = "com_github_puerkitobio_urlesc",
  2398      importpath = "github.com/PuerkitoBio/urlesc",
  2399      sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=",
  2400      version = "v0.0.0-20170810143723-de5bf2ad4578",
  2401  )
  2402  
  2403  go_repository(
  2404      name = "com_github_spf13_afero",
  2405      importpath = "github.com/spf13/afero",
  2406      sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
  2407      version = "v1.2.2",
  2408  )
  2409  
  2410  go_repository(
  2411      name = "in_gopkg_fsnotify_v1",
  2412      importpath = "gopkg.in/fsnotify.v1",
  2413      sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=",
  2414      version = "v1.4.7",
  2415  )
  2416  
  2417  go_repository(
  2418      name = "in_gopkg_inf_v0",
  2419      importpath = "gopkg.in/inf.v0",
  2420      sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
  2421      version = "v0.9.1",
  2422  )
  2423  
  2424  go_repository(
  2425      name = "in_gopkg_tomb_v1",
  2426      importpath = "gopkg.in/tomb.v1",
  2427      sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=",
  2428      version = "v1.0.0-20141024135613-dd632973f1e7",
  2429  )
  2430  
  2431  go_repository(
  2432      name = "io_k8s_api",
  2433      build_file_proto_mode = "disable_global",
  2434      importpath = "k8s.io/api",
  2435      sum = "h1:/RE6SNxrws72vzEJsCil3WSR2T9gUlYYoRxnJyZiexs=",
  2436      version = "v0.16.13",
  2437  )
  2438  
  2439  go_repository(
  2440      name = "io_k8s_apimachinery",
  2441      build_file_proto_mode = "disable_global",
  2442      importpath = "k8s.io/apimachinery",
  2443      sum = "h1:eUHWTe8VT+VOZVKGfSCcFZDrr9RZ8djLYGjIanaZnXc=",
  2444      version = "v0.16.14-rc.0",
  2445  )
  2446  
  2447  go_repository(
  2448      name = "io_k8s_client_go",
  2449      importpath = "k8s.io/client-go",
  2450      sum = "h1:jp76b20+4h8qZBxferSAVZ6MjBEpw3F309zLmPhngag=",
  2451      version = "v0.16.13",
  2452  )
  2453  
  2454  go_repository(
  2455      name = "io_k8s_gengo",
  2456      importpath = "k8s.io/gengo",
  2457      sum = "h1:sAvhNk5RRuc6FNYGqe7Ygz3PSo/2wGWbulskmzRX8Vs=",
  2458      version = "v0.0.0-20200413195148-3a45101e95ac",
  2459  )
  2460  
  2461  go_repository(
  2462      name = "io_k8s_klog",
  2463      importpath = "k8s.io/klog",
  2464      sum = "h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=",
  2465      version = "v1.0.0",
  2466  )
  2467  
  2468  go_repository(
  2469      name = "io_k8s_kube_openapi",
  2470      importpath = "k8s.io/kube-openapi",
  2471      sum = "h1:PsbYeEz2x7ll6JYUzBEG+DT78910DDTlvn5Ma10F5/E=",
  2472      version = "v0.0.0-20200410163147-594e756bea31",
  2473  )
  2474  
  2475  go_repository(
  2476      name = "io_k8s_sigs_structured_merge_diff",
  2477      importpath = "sigs.k8s.io/structured-merge-diff",
  2478      sum = "h1:4Z09Hglb792X0kfOBBJUPFEyvVfQWrYT/l8h5EKA6JQ=",
  2479      version = "v0.0.0-20190525122527-15d366b2352e",
  2480  )
  2481  
  2482  go_repository(
  2483      name = "io_k8s_sigs_yaml",
  2484      importpath = "sigs.k8s.io/yaml",
  2485      sum = "h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=",
  2486      version = "v1.2.0",
  2487  )
  2488  
  2489  go_repository(
  2490      name = "io_k8s_utils",
  2491      importpath = "k8s.io/utils",
  2492      sum = "h1:CbnUZsM497iRC5QMVkHwyl8s2tB3g7yaSHkYPkpgelw=",
  2493      version = "v0.0.0-20201110183641-67b214c5f920",
  2494  )
  2495  
  2496  go_repository(
  2497      name = "com_github_xeipuuv_gojsonpointer",
  2498      importpath = "github.com/xeipuuv/gojsonpointer",
  2499      sum = "h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c=",
  2500      version = "v0.0.0-20180127040702-4e3ac2762d5f",
  2501  )
  2502  
  2503  go_repository(
  2504      name = "com_github_xeipuuv_gojsonreference",
  2505      importpath = "github.com/xeipuuv/gojsonreference",
  2506      sum = "h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=",
  2507      version = "v0.0.0-20180127040603-bd5ef7bd5415",
  2508  )
  2509  
  2510  go_repository(
  2511      name = "com_github_xeipuuv_gojsonschema",
  2512      importpath = "github.com/xeipuuv/gojsonschema",
  2513      sum = "h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=",
  2514      version = "v1.2.0",
  2515  )