| """ |
| Initialization of dependencies of Go Tink. |
| """ |
| |
| load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") |
| load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") |
| |
| # How to update go dependencies: |
| # 1) Update the files go.mod and go.sum. This can be done as follows: |
| # 1.1) Replacing all versions in go.mod with "latest". |
| # 1.2) Run "go mod tidy". |
| # 2) Update this file by running within a google3 folder |
| # cd third_party/tink/go |
| # bazel run //:gazelle -- update-repos -from_file=go.mod -to_macro 'tink_go_deps_init.bzl%tink_go_deps_init' |
| # g4 open go.mod go.sum tink_go_deps_init.bzl |
| |
| def tink_go_deps_init(): |
| """ Initializes dependencies of Go Tink. |
| |
| """ |
| go_rules_dependencies() |
| go_register_toolchains(nogo = "@//:tink_nogo") |
| gazelle_dependencies() |
| |
| go_repository( |
| name = "co_honnef_go_tools", |
| importpath = "honnef.co/go/tools", |
| sum = "h1:UoveltGrhghAA7ePc+e+QYDHXrBps2PqFZiHkGR/xK8=", |
| version = "v0.0.1-2020.1.4", |
| ) |
| go_repository( |
| name = "com_github_armon_go_metrics", |
| importpath = "github.com/armon/go-metrics", |
| sum = "h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I=", |
| version = "v0.0.0-20180917152333-f0300d1749da", |
| ) |
| go_repository( |
| name = "com_github_armon_go_radix", |
| importpath = "github.com/armon/go-radix", |
| sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=", |
| version = "v0.0.0-20180808171621-7fddfc383310", |
| ) |
| go_repository( |
| name = "com_github_aws_aws_sdk_go", |
| importpath = "github.com/aws/aws-sdk-go", |
| sum = "h1:lM1G3AF1+7vzFm0n7hfH8r2+750BTo+6Lo6FtPB7kzk=", |
| version = "v1.36.29", |
| ) |
| go_repository( |
| name = "com_github_bgentry_speakeasy", |
| importpath = "github.com/bgentry/speakeasy", |
| sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=", |
| version = "v0.1.0", |
| ) |
| go_repository( |
| name = "com_github_burntsushi_toml", |
| importpath = "github.com/BurntSushi/toml", |
| sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=", |
| version = "v0.3.1", |
| ) |
| go_repository( |
| name = "com_github_client9_misspell", |
| importpath = "github.com/client9/misspell", |
| sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=", |
| version = "v0.3.4", |
| ) |
| go_repository( |
| name = "com_github_davecgh_go_spew", |
| importpath = "github.com/davecgh/go-spew", |
| sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", |
| version = "v1.1.1", |
| ) |
| go_repository( |
| name = "com_github_fatih_color", |
| importpath = "github.com/fatih/color", |
| sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=", |
| version = "v1.7.0", |
| ) |
| go_repository( |
| name = "com_github_fatih_structs", |
| importpath = "github.com/fatih/structs", |
| sum = "h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=", |
| version = "v1.1.0", |
| ) |
| go_repository( |
| name = "com_github_go_ldap_ldap", |
| importpath = "github.com/go-ldap/ldap", |
| sum = "h1:kD5HQcAzlQ7yrhfn+h+MSABeAy/jAJhvIJ/QDllP44g=", |
| version = "v3.0.2+incompatible", |
| ) |
| go_repository( |
| name = "com_github_go_test_deep", |
| importpath = "github.com/go-test/deep", |
| sum = "h1:28FVBuwkwowZMjbA7M0wXsI6t3PYulRTMio3SO+eKCM=", |
| version = "v1.0.2-0.20181118220953-042da051cf31", |
| ) |
| go_repository( |
| name = "com_github_golang_glog", |
| importpath = "github.com/golang/glog", |
| sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=", |
| version = "v0.0.0-20160126235308-23def4e6c14b", |
| ) |
| go_repository( |
| name = "com_github_golang_mock", |
| importpath = "github.com/golang/mock", |
| sum = "h1:l75CXGRSwbaYNpl/Z2X1XIIAMSCquvXgpVZDhwEIJsc=", |
| version = "v1.4.4", |
| ) |
| go_repository( |
| name = "com_github_golang_protobuf", |
| importpath = "github.com/golang/protobuf", |
| sum = "h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM=", |
| version = "v1.4.3", |
| ) |
| go_repository( |
| name = "com_github_golang_snappy", |
| importpath = "github.com/golang/snappy", |
| sum = "h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=", |
| version = "v0.0.1", |
| ) |
| go_repository( |
| name = "com_github_google_btree", |
| importpath = "github.com/google/btree", |
| sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_google_go_cmp", |
| importpath = "github.com/google/go-cmp", |
| sum = "h1:X2ev0eStA3AbceY54o37/0PQ/UWqKEiiO2dKL5OPaFM=", |
| version = "v0.5.2", |
| ) |
| go_repository( |
| name = "com_github_google_martian", |
| importpath = "github.com/google/martian", |
| sum = "h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no=", |
| version = "v2.1.0+incompatible", |
| ) |
| go_repository( |
| name = "com_github_google_pprof", |
| importpath = "github.com/google/pprof", |
| sum = "h1:Ak8CrdlwwXwAZxzS66vgPt4U8yUZX7JwLvVR58FN5jM=", |
| version = "v0.0.0-20200708004538-1a94d8640e99", |
| ) |
| go_repository( |
| name = "com_github_google_tink_go", |
| importpath = "github.com/google/tink/go", |
| sum = "h1:7Ihv6n6/0zPrm2GRAeeF408P9Y00HXC2J6tvUzgb2sg=", |
| version = "v1.4.0", |
| ) |
| go_repository( |
| name = "com_github_googleapis_gax_go_v2", |
| importpath = "github.com/googleapis/gax-go/v2", |
| sum = "h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM=", |
| version = "v2.0.5", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_errwrap", |
| importpath = "github.com/hashicorp/errwrap", |
| sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_cleanhttp", |
| importpath = "github.com/hashicorp/go-cleanhttp", |
| sum = "h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM=", |
| version = "v0.5.1", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_hclog", |
| importpath = "github.com/hashicorp/go-hclog", |
| sum = "h1:z3ollgGRg8RjfJH6UVBaG54R70GFd++QOkvnJH3VSBY=", |
| version = "v0.8.0", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_immutable_radix", |
| importpath = "github.com/hashicorp/go-immutable-radix", |
| sum = "h1:AKDB1HM5PWEA7i4nhcpwOrO2byshxBjXVn/J/3+z5/0=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_multierror", |
| importpath = "github.com/hashicorp/go-multierror", |
| sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_plugin", |
| importpath = "github.com/hashicorp/go-plugin", |
| sum = "h1:4OtAfUGbnKC6yS48p0CtMX2oFYtzFZVv6rok3cRWgnE=", |
| version = "v1.0.1", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_retryablehttp", |
| importpath = "github.com/hashicorp/go-retryablehttp", |
| sum = "h1:1BZvpawXoJCWX6pNtow9+rpEj+3itIlutiqnntI6jOE=", |
| version = "v0.5.4", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_rootcerts", |
| importpath = "github.com/hashicorp/go-rootcerts", |
| sum = "h1:DMo4fmknnz0E0evoNYnV48RjWndOsmd6OW+09R3cEP8=", |
| version = "v1.0.1", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_sockaddr", |
| importpath = "github.com/hashicorp/go-sockaddr", |
| sum = "h1:ztczhD1jLxIRjVejw8gFomI1BQZOe2WoVOu0SyteCQc=", |
| version = "v1.0.2", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_uuid", |
| importpath = "github.com/hashicorp/go-uuid", |
| sum = "h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE=", |
| version = "v1.0.1", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_go_version", |
| importpath = "github.com/hashicorp/go-version", |
| sum = "h1:bPIoEKD27tNdebFGGxxYwcL4nepeY4j1QP23PFRGzg0=", |
| version = "v1.1.0", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_golang_lru", |
| importpath = "github.com/hashicorp/golang-lru", |
| sum = "h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU=", |
| version = "v0.5.1", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_hcl", |
| importpath = "github.com/hashicorp/hcl", |
| sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_vault_api", |
| importpath = "github.com/hashicorp/vault/api", |
| sum = "h1:j08Or/wryXT4AcHj1oCbMd7IijXcKzYUGw59LGu9onU=", |
| version = "v1.0.4", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_vault_sdk", |
| importpath = "github.com/hashicorp/vault/sdk", |
| sum = "h1:mOEPeOhT7jl0J4AMl1E705+BcmeRs1VmKNb9F0sMLy8=", |
| version = "v0.1.13", |
| ) |
| go_repository( |
| name = "com_github_hashicorp_yamux", |
| importpath = "github.com/hashicorp/yamux", |
| sum = "h1:kJCB4vdITiW1eC1vq2e6IsrXKrZit1bv/TDYFGMp4BQ=", |
| version = "v0.0.0-20181012175058-2f1d1f20f75d", |
| ) |
| go_repository( |
| name = "com_github_jmespath_go_jmespath", |
| importpath = "github.com/jmespath/go-jmespath", |
| sum = "h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg=", |
| version = "v0.4.0", |
| ) |
| go_repository( |
| name = "com_github_jstemmer_go_junit_report", |
| importpath = "github.com/jstemmer/go-junit-report", |
| sum = "h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o=", |
| version = "v0.9.1", |
| ) |
| go_repository( |
| name = "com_github_mattn_go_colorable", |
| importpath = "github.com/mattn/go-colorable", |
| sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=", |
| version = "v0.0.9", |
| ) |
| go_repository( |
| name = "com_github_mattn_go_isatty", |
| importpath = "github.com/mattn/go-isatty", |
| sum = "h1:ns/ykhmWi7G9O+8a448SecJU3nSMBXJfqQkl0upE1jI=", |
| version = "v0.0.3", |
| ) |
| go_repository( |
| name = "com_github_mitchellh_cli", |
| importpath = "github.com/mitchellh/cli", |
| sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_mitchellh_copystructure", |
| importpath = "github.com/mitchellh/copystructure", |
| sum = "h1:Laisrj+bAB6b/yJwB5Bt3ITZhGJdqmxquMKeZ+mmkFQ=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_mitchellh_go_homedir", |
| importpath = "github.com/mitchellh/go-homedir", |
| sum = "h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=", |
| version = "v1.1.0", |
| ) |
| go_repository( |
| name = "com_github_mitchellh_go_testing_interface", |
| importpath = "github.com/mitchellh/go-testing-interface", |
| sum = "h1:fzU/JVNcaqHQEcVFAKeR41fkiLdIPrefOvVG1VZ96U0=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_mitchellh_go_wordwrap", |
| importpath = "github.com/mitchellh/go-wordwrap", |
| sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_mitchellh_mapstructure", |
| importpath = "github.com/mitchellh/mapstructure", |
| sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=", |
| version = "v1.1.2", |
| ) |
| go_repository( |
| name = "com_github_mitchellh_reflectwalk", |
| importpath = "github.com/mitchellh/reflectwalk", |
| sum = "h1:9D+8oIskB4VJBN5SFlmc27fSlIBZaov1Wpk/IfikLNY=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_oklog_run", |
| importpath = "github.com/oklog/run", |
| sum = "h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_pascaldekloe_goe", |
| importpath = "github.com/pascaldekloe/goe", |
| sum = "h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY=", |
| version = "v0.1.0", |
| ) |
| go_repository( |
| name = "com_github_pierrec_lz4", |
| importpath = "github.com/pierrec/lz4", |
| sum = "h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I=", |
| version = "v2.0.5+incompatible", |
| ) |
| go_repository( |
| name = "com_github_pmezard_go_difflib", |
| importpath = "github.com/pmezard/go-difflib", |
| sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_posener_complete", |
| importpath = "github.com/posener/complete", |
| sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=", |
| version = "v1.1.1", |
| ) |
| go_repository( |
| name = "com_github_ryanuber_columnize", |
| importpath = "github.com/ryanuber/columnize", |
| sum = "h1:j1Wcmh8OrK4Q7GXY+V7SVSY8nUWQxHW5TkBe7YUl+2s=", |
| version = "v2.1.0+incompatible", |
| ) |
| go_repository( |
| name = "com_github_ryanuber_go_glob", |
| importpath = "github.com/ryanuber/go-glob", |
| sum = "h1:iQh3xXAumdQ+4Ufa5b25cRpC5TYKlno6hsv6Cb3pkBk=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_stretchr_objx", |
| importpath = "github.com/stretchr/objx", |
| sum = "h1:4G4v2dO3VZwixGIRoQ5Lfboy6nUhCyYzaqnIAPPhYs4=", |
| version = "v0.1.0", |
| ) |
| go_repository( |
| name = "com_github_stretchr_testify", |
| importpath = "github.com/stretchr/testify", |
| sum = "h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=", |
| version = "v1.6.1", |
| ) |
| go_repository( |
| name = "com_google_cloud_go", |
| importpath = "cloud.google.com/go", |
| sum = "h1:Dg9iHVQfrhq82rUNu9ZxUDrJLaxFUe/HlCVaLyRruq8=", |
| version = "v0.65.0", |
| ) |
| go_repository( |
| name = "in_gopkg_asn1_ber_v1", |
| importpath = "gopkg.in/asn1-ber.v1", |
| sum = "h1:TxyelI5cVkbREznMhfzycHdkp5cLA7DpE+GKjSslYhM=", |
| version = "v1.0.0-20181015200546-f715ec2f112d", |
| ) |
| go_repository( |
| name = "in_gopkg_check_v1", |
| importpath = "gopkg.in/check.v1", |
| sum = "h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=", |
| version = "v1.0.0-20180628173108-788fd7840127", |
| ) |
| go_repository( |
| name = "in_gopkg_square_go_jose_v2", |
| importpath = "gopkg.in/square/go-jose.v2", |
| sum = "h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4=", |
| version = "v2.3.1", |
| ) |
| go_repository( |
| name = "in_gopkg_yaml_v2", |
| importpath = "gopkg.in/yaml.v2", |
| sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=", |
| version = "v2.2.8", |
| ) |
| go_repository( |
| name = "io_opencensus_go", |
| importpath = "go.opencensus.io", |
| sum = "h1:LYy1Hy3MJdrCdMwwzxA/dRok4ejH+RwNGbuoD9fCjto=", |
| version = "v0.22.4", |
| ) |
| go_repository( |
| name = "org_golang_google_api", |
| importpath = "google.golang.org/api", |
| sum = "h1:Le77IccnTqEa8ryp9wIpX5W3zYm7Gf9LhOp9PHcwFts=", |
| version = "v0.32.0", |
| ) |
| go_repository( |
| name = "org_golang_google_appengine", |
| importpath = "google.golang.org/appengine", |
| sum = "h1:lMO5rYAqUxkmaj76jAkRUvt5JZgFymx/+Q5Mzfivuhc=", |
| version = "v1.6.6", |
| ) |
| go_repository( |
| name = "org_golang_google_genproto", |
| importpath = "google.golang.org/genproto", |
| sum = "h1:92D1fum1bJLKSdr11OJ+54YeCMCGYIygTA7R/YZxH5M=", |
| version = "v0.0.0-20200904004341-0bd0a958aa1d", |
| ) |
| go_repository( |
| name = "org_golang_google_grpc", |
| importpath = "google.golang.org/grpc", |
| sum = "h1:SfXqXS5hkufcdZ/mHtYCh53P2b+92WQq/DZcKLgsFRs=", |
| version = "v1.31.1", |
| ) |
| go_repository( |
| name = "org_golang_x_crypto", |
| importpath = "golang.org/x/crypto", |
| sum = "h1:hb9wdF1z5waM+dSIICn1l0DkLVDT3hqhhQsDNUmHPRE=", |
| version = "v0.0.0-20201002170205-7f63de1d35b0", |
| ) |
| go_repository( |
| name = "org_golang_x_exp", |
| importpath = "golang.org/x/exp", |
| sum = "h1:QE6XYQK6naiK1EPAe1g/ILLxN5RBoH5xkJk3CqlMI/Y=", |
| version = "v0.0.0-20200224162631-6cc2880d07d6", |
| ) |
| go_repository( |
| name = "org_golang_x_lint", |
| importpath = "golang.org/x/lint", |
| sum = "h1:Wh+f8QHJXR411sJR8/vRBTZ7YapZaRvUcLFFJhusH0k=", |
| version = "v0.0.0-20200302205851-738671d3881b", |
| ) |
| go_repository( |
| name = "org_golang_x_net", |
| importpath = "golang.org/x/net", |
| sum = "h1:uwuIcX0g4Yl1NC5XAz37xsr2lTtcqevgzYNVt49waME=", |
| version = "v0.0.0-20201110031124-69a78807bb2b", |
| ) |
| go_repository( |
| name = "org_golang_x_oauth2", |
| importpath = "golang.org/x/oauth2", |
| sum = "h1:ld7aEMNHoBnnDAX15v1T6z31v8HwR2A9FYOuAhWqkwc=", |
| version = "v0.0.0-20200902213428-5d25da1a8d43", |
| ) |
| go_repository( |
| name = "org_golang_x_sync", |
| importpath = "golang.org/x/sync", |
| sum = "h1:qwRHBd0NqMbJxfbotnDhm2ByMI1Shq4Y6oRJo21SGJA=", |
| version = "v0.0.0-20200625203802-6e8e738ad208", |
| ) |
| go_repository( |
| name = "org_golang_x_sys", |
| importpath = "golang.org/x/sys", |
| sum = "h1:+Nyd8tzPX9R7BWHguqsrbFdRx3WQ/1ib8I44HXV5yTA=", |
| version = "v0.0.0-20200930185726-fdedc70b468f", |
| ) |
| go_repository( |
| name = "org_golang_x_text", |
| importpath = "golang.org/x/text", |
| sum = "h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=", |
| version = "v0.3.3", |
| ) |
| go_repository( |
| name = "org_golang_x_time", |
| importpath = "golang.org/x/time", |
| sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=", |
| version = "v0.0.0-20191024005414-555d28b269f0", |
| ) |
| go_repository( |
| name = "org_golang_x_tools", |
| importpath = "golang.org/x/tools", |
| sum = "h1:xLt+iB5ksWcZVxqc+g9K41ZHy+6MKWfXCDsjSThnsPA=", |
| version = "v0.0.0-20200904185747-39188db58858", |
| ) |
| go_repository( |
| name = "com_github_burntsushi_xgb", |
| importpath = "github.com/BurntSushi/xgb", |
| sum = "h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=", |
| version = "v0.0.0-20160522181843-27f122750802", |
| ) |
| go_repository( |
| name = "com_github_census_instrumentation_opencensus_proto", |
| importpath = "github.com/census-instrumentation/opencensus-proto", |
| sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=", |
| version = "v0.2.1", |
| ) |
| go_repository( |
| name = "com_github_chzyer_logex", |
| importpath = "github.com/chzyer/logex", |
| sum = "h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=", |
| version = "v1.1.10", |
| ) |
| go_repository( |
| name = "com_github_chzyer_readline", |
| importpath = "github.com/chzyer/readline", |
| sum = "h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=", |
| version = "v0.0.0-20180603132655-2972be24d48e", |
| ) |
| go_repository( |
| name = "com_github_chzyer_test", |
| importpath = "github.com/chzyer/test", |
| sum = "h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=", |
| version = "v0.0.0-20180213035817-a1ea475d72b1", |
| ) |
| go_repository( |
| name = "com_github_cncf_udpa_go", |
| importpath = "github.com/cncf/udpa/go", |
| sum = "h1:WBZRG4aNOuI15bLRrCgN8fCq8E5Xuty6jGbmSNEvSsU=", |
| version = "v0.0.0-20191209042840-269d4d468f6f", |
| ) |
| go_repository( |
| name = "com_github_envoyproxy_go_control_plane", |
| importpath = "github.com/envoyproxy/go-control-plane", |
| sum = "h1:rEvIZUSZ3fx39WIi3JkQqQBitGwpELBIYWeBVh6wn+E=", |
| version = "v0.9.4", |
| ) |
| go_repository( |
| name = "com_github_envoyproxy_protoc_gen_validate", |
| importpath = "github.com/envoyproxy/protoc-gen-validate", |
| sum = "h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=", |
| version = "v0.1.0", |
| ) |
| go_repository( |
| name = "com_github_go_gl_glfw", |
| importpath = "github.com/go-gl/glfw", |
| sum = "h1:QbL/5oDUmRBzO9/Z7Seo6zf912W/a6Sr4Eu0G/3Jho0=", |
| version = "v0.0.0-20190409004039-e6da0acd62b1", |
| ) |
| go_repository( |
| name = "com_github_go_gl_glfw_v3_3_glfw", |
| importpath = "github.com/go-gl/glfw/v3.3/glfw", |
| sum = "h1:WtGNWLvXpe6ZudgnXrq0barxBImvnnJoMEhXAzcbM0I=", |
| version = "v0.0.0-20200222043503-6f7a984d4dc4", |
| ) |
| go_repository( |
| name = "com_github_golang_groupcache", |
| importpath = "github.com/golang/groupcache", |
| sum = "h1:1r7pUrabqp18hOBcwBwiTsbnFeTZHV9eER/QT5JVZxY=", |
| version = "v0.0.0-20200121045136-8c9f03a8e57e", |
| ) |
| go_repository( |
| name = "com_github_google_martian_v3", |
| importpath = "github.com/google/martian/v3", |
| sum = "h1:pMen7vLs8nvgEYhywH3KDWJIJTeEr2ULsVWHWYHQyBs=", |
| version = "v3.0.0", |
| ) |
| go_repository( |
| name = "com_github_google_renameio", |
| importpath = "github.com/google/renameio", |
| sum = "h1:GOZbcHa3HfsPKPlmyPyN2KEohoMXOhdMbHrvbpl2QaA=", |
| version = "v0.1.0", |
| ) |
| go_repository( |
| name = "com_github_ianlancetaylor_demangle", |
| importpath = "github.com/ianlancetaylor/demangle", |
| sum = "h1:UDMh68UUwekSh5iP2OMhRRZJiiBccgV7axzUG8vi56c=", |
| version = "v0.0.0-20181102032728-5e5cf60278f6", |
| ) |
| go_repository( |
| name = "com_github_jmespath_go_jmespath_internal_testify", |
| importpath = "github.com/jmespath/go-jmespath/internal/testify", |
| sum = "h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8=", |
| version = "v1.5.1", |
| ) |
| go_repository( |
| name = "com_github_kisielk_gotool", |
| importpath = "github.com/kisielk/gotool", |
| sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=", |
| version = "v1.0.0", |
| ) |
| go_repository( |
| name = "com_github_kr_pretty", |
| importpath = "github.com/kr/pretty", |
| sum = "h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=", |
| version = "v0.1.0", |
| ) |
| go_repository( |
| name = "com_github_kr_pty", |
| importpath = "github.com/kr/pty", |
| sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=", |
| version = "v1.1.1", |
| ) |
| go_repository( |
| name = "com_github_kr_text", |
| importpath = "github.com/kr/text", |
| sum = "h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=", |
| version = "v0.1.0", |
| ) |
| go_repository( |
| name = "com_github_pkg_errors", |
| importpath = "github.com/pkg/errors", |
| sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=", |
| version = "v0.9.1", |
| ) |
| go_repository( |
| name = "com_github_prometheus_client_model", |
| importpath = "github.com/prometheus/client_model", |
| sum = "h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM=", |
| version = "v0.0.0-20190812154241-14fe0d1b01d4", |
| ) |
| go_repository( |
| name = "com_github_rogpeppe_go_internal", |
| importpath = "github.com/rogpeppe/go-internal", |
| sum = "h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk=", |
| version = "v1.3.0", |
| ) |
| go_repository( |
| name = "com_github_yuin_goldmark", |
| importpath = "github.com/yuin/goldmark", |
| sum = "h1:ruQGxdhGHe7FWOJPT0mKs5+pD2Xs1Bm/kdGlHO04FmM=", |
| version = "v1.2.1", |
| ) |
| go_repository( |
| name = "com_google_cloud_go_bigquery", |
| importpath = "cloud.google.com/go/bigquery", |
| sum = "h1:PQcPefKFdaIzjQFbiyOgAqyx8q5djaE7x9Sqe712DPA=", |
| version = "v1.8.0", |
| ) |
| go_repository( |
| name = "com_google_cloud_go_datastore", |
| importpath = "cloud.google.com/go/datastore", |
| sum = "h1:/May9ojXjRkPBNVrq+oWLqmWCkr4OU5uRY29bu0mRyQ=", |
| version = "v1.1.0", |
| ) |
| go_repository( |
| name = "com_google_cloud_go_pubsub", |
| importpath = "cloud.google.com/go/pubsub", |
| sum = "h1:ukjixP1wl0LpnZ6LWtZJ0mX5tBmjp1f8Sqer8Z2OMUU=", |
| version = "v1.3.1", |
| ) |
| go_repository( |
| name = "com_google_cloud_go_storage", |
| importpath = "cloud.google.com/go/storage", |
| sum = "h1:STgFzyU5/8miMl0//zKh2aQeTyeaUH3WN9bSUiJ09bA=", |
| version = "v1.10.0", |
| ) |
| go_repository( |
| name = "com_shuralyov_dmitri_gpu_mtl", |
| importpath = "dmitri.shuralyov.com/gpu/mtl", |
| sum = "h1:VpgP7xuJadIUuKccphEpTJnWhS2jkQyMt6Y7pJCD7fY=", |
| version = "v0.0.0-20190408044501-666a987793e9", |
| ) |
| go_repository( |
| name = "in_gopkg_errgo_v2", |
| importpath = "gopkg.in/errgo.v2", |
| sum = "h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=", |
| version = "v2.1.0", |
| ) |
| go_repository( |
| name = "io_rsc_binaryregexp", |
| importpath = "rsc.io/binaryregexp", |
| sum = "h1:HfqmD5MEmC0zvwBuF187nq9mdnXjXsSivRiXN7SmRkE=", |
| version = "v0.2.0", |
| ) |
| go_repository( |
| name = "io_rsc_quote_v3", |
| importpath = "rsc.io/quote/v3", |
| sum = "h1:9JKUTTIUgS6kzR9mK1YuGKv6Nl+DijDNIc0ghT58FaY=", |
| version = "v3.1.0", |
| ) |
| go_repository( |
| name = "io_rsc_sampler", |
| importpath = "rsc.io/sampler", |
| sum = "h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=", |
| version = "v1.3.0", |
| ) |
| go_repository( |
| name = "org_golang_google_protobuf", |
| importpath = "google.golang.org/protobuf", |
| sum = "h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c=", |
| version = "v1.25.0", |
| ) |
| go_repository( |
| name = "org_golang_x_image", |
| importpath = "golang.org/x/image", |
| sum = "h1:+qEpEAPhDZ1o0x3tHzZTQDArnOixOzGD9HUJfcg0mb4=", |
| version = "v0.0.0-20190802002840-cff245a6509b", |
| ) |
| go_repository( |
| name = "org_golang_x_mobile", |
| importpath = "golang.org/x/mobile", |
| sum = "h1:4+4C/Iv2U4fMZBiMCc98MG1In4gJY5YRhtpDNeDeHWs=", |
| version = "v0.0.0-20190719004257-d2bd2a29d028", |
| ) |
| go_repository( |
| name = "org_golang_x_mod", |
| importpath = "golang.org/x/mod", |
| sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=", |
| version = "v0.3.0", |
| ) |
| go_repository( |
| name = "org_golang_x_xerrors", |
| importpath = "golang.org/x/xerrors", |
| sum = "h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=", |
| version = "v0.0.0-20200804184101-5ec99f83aff1", |
| ) |
| go_repository( |
| name = "in_gopkg_yaml_v3", |
| importpath = "gopkg.in/yaml.v3", |
| sum = "h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=", |
| version = "v3.0.0-20200313102051-9f266ea9e77c", |
| ) |