prysm-pulse/WORKSPACE

1081 lines
32 KiB
Python
Raw Normal View History

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_skylib",
url = "https://github.com/bazelbuild/bazel-skylib/archive/0.8.0.tar.gz",
sha256 = "2ea8a5ed2b448baf4a6855d3ce049c4c452a6470b1efd1504fdb7c1c134d220a",
strip_prefix = "bazel-skylib-0.8.0",
)
http_archive(
name = "io_bazel_rules_go",
2019-04-15 10:32:59 +00:00
url = "https://github.com/bazelbuild/rules_go/releases/download/0.18.3/rules_go-0.18.3.tar.gz",
sha256 = "86ae934bd4c43b99893fc64be9d9fc684b81461581df7ea8fc291c816f5ee8c5",
)
http_archive(
name = "bazel_gazelle",
2019-02-27 20:35:00 +00:00
sha256 = "3c681998538231a2d24d0c07ed5a7658cb72bfb5fd4bf9911157c0e9ac6a2687",
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/0.17.0/bazel-gazelle-0.17.0.tar.gz"],
)
http_archive(
name = "com_github_atlassian_bazel_tools",
sha256 = "af4908ea16b43e0c88007742a5c54997ee068fc393f9850ade2d59b1d5f49f55",
strip_prefix = "bazel-tools-31382b2267b0bc3d9771085e3503473a061593e1",
urls = ["https://github.com/atlassian/bazel-tools/archive/31382b2267b0bc3d9771085e3503473a061593e1.tar.gz"],
)
http_archive(
name = "io_bazel_rules_docker",
url = "https://github.com/bazelbuild/rules_docker/archive/v0.7.0.tar.gz",
strip_prefix = "rules_docker-0.7.0",
sha256 = "aed1c249d4ec8f703edddf35cbe9dfaca0b5f5ea6e4cd9e83e99f3b0d1136c3d",
)
http_archive(
name = "build_bazel_rules_nodejs",
2019-04-15 10:32:59 +00:00
sha256 = "3a3efbf223f6de733475602844ad3a8faa02abda25ab8cfe1d1ed0db134887cf",
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.27.12/rules_nodejs-0.27.12.tar.gz"],
)
http_archive(
name = "io_bazel_rules_k8s",
sha256 = "b4aabc3f931a67b4970076ae9490afc18caa1690360c952fba9681225739f6d5",
strip_prefix = "rules_k8s-e7b408f07785e3b660ee7e99173b0e4328c7b65e",
url = "https://github.com/bazelbuild/rules_k8s/archive/e7b408f07785e3b660ee7e99173b0e4328c7b65e.tar.gz",
)
load(
"@io_bazel_rules_docker//repositories:repositories.bzl",
container_repositories = "repositories",
)
container_repositories()
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories", "yarn_install")
node_repositories()
yarn_install(
name = "npm",
package_json = "//:package.json",
yarn_lock = "//:yarn.lock",
)
# This requires rules_docker to be fully instantiated before it is pulled in.
load("@io_bazel_rules_k8s//k8s:k8s.bzl", "k8s_repositories", "k8s_defaults")
k8s_repositories()
[k8s_defaults(
name = "k8s_" + kind,
cluster = "minikube", # DO NOT CHANGE THIS!
kind = kind,
) for kind in [
"cluster_role",
"configmap",
"deploy",
"ingress",
"issuer",
"job",
"gateway",
"namespace",
"pod",
"priority_class",
"secret",
"service",
"service_account",
]]
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains(nogo = "@//:nogo")
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
gazelle_dependencies()
load("@com_github_atlassian_bazel_tools//gometalinter:deps.bzl", "gometalinter_dependencies")
gometalinter_dependencies()
load(
"@io_bazel_rules_docker//go:image.bzl",
_go_image_repos = "repositories",
)
_go_image_repos()
http_archive(
name = "prysm_testnet_site",
2019-04-08 02:24:27 +00:00
url = "https://github.com/prestonvanloon/prysm-testnet-site/archive/3d0a15deb03aeefe0c69d4400a1f9486383fde27.tar.gz",
strip_prefix = "prysm-testnet-site-3d0a15deb03aeefe0c69d4400a1f9486383fde27",
sha256 = "f56cb21ab184ab2bfa7e8503ef1d3ec189bd2004aac9681012e6a58a0ba3f3e3",
build_file_content = """
proto_library(
name = "faucet_proto",
srcs = ["src/proto/faucet.proto"],
visibility = ["//visibility:public"],
)""",
)
http_archive(
name = "io_kubernetes_build",
sha256 = "4a8384320fba401cbf21fef177aa113ed8fe35952ace98e00b796cac87ae7868",
strip_prefix = "repo-infra-df02ded38f9506e5bbcbf21702034b4fef815f2f",
url = "https://github.com/kubernetes/repo-infra/archive/df02ded38f9506e5bbcbf21702034b4fef815f2f.tar.gz",
)
go_repository(
name = "com_github_golang_mock",
commit = "51421b967af1f557f93a59e0057aaf15ca02e29c", # v1.2.0
importpath = "github.com/golang/mock",
)
# External dependencies
go_repository(
name = "com_github_ethereum_go_ethereum",
commit = "099afb3fd89784f9e3e594b7c2ed11335ca02a9b",
importpath = "github.com/ethereum/go-ethereum",
# Note: go-ethereum is not bazel-friendly with regards to cgo. We have a
# a fork that has resolved these issues by disabling HID/USB support and
# some manual fixes for c imports in the crypto package. This is forked
# branch should be updated from time to time with the latest go-ethereum
# code.
remote = "https://github.com/prysmaticlabs/bazel-go-ethereum",
vcs = "git",
)
go_repository(
name = "com_github_urfave_cli",
commit = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1", # v1.20.0
importpath = "github.com/urfave/cli",
)
go_repository(
name = "com_github_go_yaml_yaml",
commit = "51d6538a90f86fe93ac480b35f37b2be17fef232", # v2.2.2
2018-11-17 14:13:06 +00:00
importpath = "github.com/go-yaml/yaml",
)
go_repository(
name = "com_github_x_cray_logrus_prefixed_formatter",
commit = "bb2702d423886830dee131692131d35648c382e2", # v0.5.2
2018-11-17 14:13:06 +00:00
importpath = "github.com/x-cray/logrus-prefixed-formatter",
)
go_repository(
name = "com_github_mgutz_ansi",
commit = "9520e82c474b0a04dd04f8a40959027271bab992",
2018-11-17 14:13:06 +00:00
importpath = "github.com/mgutz/ansi",
)
go_repository(
name = "com_github_fjl_memsize",
commit = "2a09253e352a56f419bd88effab0483f52da4c7d",
2018-11-17 14:13:06 +00:00
importpath = "github.com/fjl/memsize",
)
go_repository(
name = "com_github_libp2p_go_libp2p",
commit = "5bce62bbecc0c07087af4cae2490b764afe1c594", # v0.0.15
importpath = "github.com/libp2p/go-libp2p",
)
go_repository(
name = "com_github_libp2p_go_libp2p_peer",
commit = "0af66450abe0a80f55c82f00b5f059cc2651498e", # v0.1.0
importpath = "github.com/libp2p/go-libp2p-peer",
)
go_repository(
name = "com_github_libp2p_go_libp2p_crypto",
build_file_proto_mode = "disable_global",
2019-03-03 00:36:30 +00:00
commit = "b0ed0e663e8b6832bad3f4502b2f6551ff2686cd", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-crypto",
)
go_repository(
name = "com_github_multiformats_go_multiaddr",
2019-03-09 13:57:59 +00:00
commit = "ce21123d5172669bbf37a166078bc5f9d345ec2f", # v0.0.2
importpath = "github.com/multiformats/go-multiaddr",
)
go_repository(
name = "com_github_ipfs_go_log",
2019-03-02 14:45:33 +00:00
commit = "91b837264c0f35dd4e2be341d711316b91d3573d", # v0.0.1
importpath = "github.com/ipfs/go-log",
)
go_repository(
name = "com_github_multiformats_go_multihash",
commit = "922cbd7915f407488e3f4413ada76400a1b29b49", # v0.0.3
importpath = "github.com/multiformats/go-multihash",
)
go_repository(
name = "com_github_libp2p_go_libp2p_swarm",
2019-04-15 10:32:59 +00:00
commit = "51da4b6c9c2e869dce87a455a7c788d7181711c7", # v0.0.2
importpath = "github.com/libp2p/go-libp2p-swarm",
)
go_repository(
name = "com_github_libp2p_go_libp2p_host",
commit = "0edd439378603e9228acb78e0ae7e1b54b9d3f3a", # v0.0.2
importpath = "github.com/libp2p/go-libp2p-host",
)
go_repository(
name = "com_github_libp2p_go_libp2p_peerstore",
2019-04-15 10:32:59 +00:00
commit = "47258995923bfab02b60b8f45257642568b0a358", # v0.0.2
importpath = "github.com/libp2p/go-libp2p-peerstore",
)
go_repository(
name = "com_github_libp2p_go_libp2p_circuit",
2019-04-15 10:32:59 +00:00
commit = "d07cd5f739a7878121b10e54a8ead734f93e2ddf", # v0.0.4
importpath = "github.com/libp2p/go-libp2p-circuit",
)
go_repository(
name = "com_github_coreos_go_semver",
2019-04-15 10:32:59 +00:00
commit = "6e25b691b0ebe9657dd0ee60d73a9f8716f0c6f5", # v0.3.0
importpath = "github.com/coreos/go-semver",
)
go_repository(
name = "com_github_libp2p_go_libp2p_interface_connmgr",
commit = "e80dd2e9f839e44febfcb7e6b38ded8761332eb6", # v0.0.3
importpath = "github.com/libp2p/go-libp2p-interface-connmgr",
)
go_repository(
name = "com_github_libp2p_go_conn_security_multistream",
2019-03-02 14:45:33 +00:00
commit = "d4c3bf7e5688390e4106d3ec73aafd7d0856143b", # v0.0.1
importpath = "github.com/libp2p/go-conn-security-multistream",
)
go_repository(
name = "com_github_libp2p_go_libp2p_metrics",
commit = "f7021db7729eb519a86ec6a90b5b476e6072f6f7", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-metrics",
)
go_repository(
name = "com_github_libp2p_go_libp2p_net",
2019-04-15 10:32:59 +00:00
commit = "e1b54a3fd69634603ac02b34e4eefcf5aca50ed9", # v0.0.2
importpath = "github.com/libp2p/go-libp2p-net",
)
go_repository(
name = "com_github_whyrusleeping_mafmt",
2019-03-06 04:40:01 +00:00
commit = "158fbc0fcc20b3d8a251df520466e16f66eb3651", # v1.2.8
importpath = "github.com/whyrusleeping/mafmt",
)
go_repository(
name = "com_github_multiformats_go_multiaddr_net",
commit = "bd61b0499a3cfc893a8eb109c5669342b1671881", # v0.0.1
importpath = "github.com/multiformats/go-multiaddr-net",
)
go_repository(
name = "com_github_agl_ed25519",
commit = "5312a61534124124185d41f09206b9fef1d88403",
importpath = "github.com/agl/ed25519",
)
go_repository(
name = "com_github_minio_blake2b_simd",
commit = "3f5f724cb5b182a5c278d6d3d55b40e7f8c2efb4",
importpath = "github.com/minio/blake2b-simd",
)
go_repository(
name = "com_github_gxed_hashland",
commit = "a72cc0875a1e95edd309d3134bc7c11bf2d7360b",
importpath = "github.com/gxed/hashland",
)
go_repository(
name = "com_github_mattn_go_colorable",
commit = "3a70a971f94a22f2fa562ffcc7a0eb45f5daf045",
importpath = "github.com/mattn/go-colorable",
)
go_repository(
name = "com_github_whyrusleeping_mdns",
commit = "ef14215e6b30606f4ce84174ed7a644a05cb1af3",
importpath = "github.com/whyrusleeping/mdns",
)
go_repository(
name = "com_github_btcsuite_btcd",
commit = "306aecffea325e97f513b3ff0cf7895a5310651d",
importpath = "github.com/btcsuite/btcd",
)
go_repository(
name = "com_github_minio_sha256_simd",
commit = "2d45a736cd16732fe6a57563cc20d8b035193e58",
importpath = "github.com/minio/sha256-simd",
)
go_repository(
name = "com_github_mr_tron_base58",
commit = "89529c6904fcd077434931b4eac8b4b2f0991baf", # v1.1.0
importpath = "github.com/mr-tron/base58",
)
go_repository(
name = "com_github_whyrusleeping_go_smux_yamux",
2019-03-07 03:46:14 +00:00
commit = "7402600b69ab8af34116420d9b9cd4e1b8968901", # v2.0.9
importpath = "github.com/whyrusleeping/go-smux-yamux",
)
go_repository(
name = "com_github_libp2p_go_libp2p_secio",
build_file_proto_mode = "disable_global",
commit = "c3eee8a92db23bd65c434512810c60bec85e7ac9", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-secio",
)
go_repository(
name = "com_github_libp2p_go_tcp_transport",
2019-04-08 02:24:27 +00:00
commit = "280af4c75cb2f1f61355ed9dc327928705f6de89", # v0.0.2
importpath = "github.com/libp2p/go-tcp-transport",
)
go_repository(
name = "com_github_libp2p_go_libp2p_protocol",
commit = "c170ad966a647835bda0cbe4dc710cf9f94949b6", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-protocol",
)
go_repository(
name = "com_github_jbenet_goprocess",
commit = "b497e2f366b8624394fb2e89c10ab607bebdde0b",
importpath = "github.com/jbenet/goprocess",
)
go_repository(
name = "com_github_multiformats_go_multistream",
commit = "f3f44044ac2444cd3a017c0b269f8da65b0012f1", # v0.0.1
importpath = "github.com/multiformats/go-multistream",
)
go_repository(
name = "com_github_libp2p_go_libp2p_loggables",
commit = "332c68ea465a3353571377635eb0fc257a0c38c4", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-loggables",
)
go_repository(
name = "com_github_libp2p_go_libp2p_nat",
commit = "3efa307896b71a07705d8d0cf7f19a4595c62d4f", # v0.0.2
importpath = "github.com/libp2p/go-libp2p-nat",
)
go_repository(
name = "com_github_multiformats_go_multiaddr_dns",
commit = "e7c544d7a325c57bdbd7e9ba9c035a6701c5c7d2", # v0.0.2
importpath = "github.com/multiformats/go-multiaddr-dns",
)
go_repository(
name = "com_github_fd_go_nat",
commit = "d6a8fd67f078b7cc7a16d623ee52e859b2daccd5", # v1.0.0
importpath = "github.com/fd/go-nat",
)
go_repository(
name = "com_github_whyrusleeping_go_logging",
commit = "0457bb6b88fc1973573aaf6b5145d8d3ae972390",
importpath = "github.com/whyrusleeping/go-logging",
)
go_repository(
name = "com_github_mattn_go_isatty",
commit = "c2a7a6ca930a4cd0bc33a3f298eb71960732a3a7", # v0.0.7
importpath = "github.com/mattn/go-isatty",
)
go_repository(
name = "com_github_libp2p_go_stream_muxer",
commit = "96b8d4dc6b2577782a7c6c33776c115e3d2eacf6", # v0.0.1
importpath = "github.com/libp2p/go-stream-muxer",
)
go_repository(
name = "com_github_libp2p_go_libp2p_transport_upgrader",
commit = "b4ab689796cdae99ad6641abcedcd7c23258de0c", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-transport-upgrader",
)
go_repository(
name = "com_github_libp2p_go_testutil",
commit = "425d0bf3c5d09720ab62cb2b79107d83651f271b", # v0.0.1
importpath = "github.com/libp2p/go-testutil",
)
go_repository(
name = "com_github_whyrusleeping_go_smux_multistream",
2019-03-06 04:40:01 +00:00
commit = "90c0868b4933b5cb1bbcf68a3ca11c6767ccc048", # v2.0.2
importpath = "github.com/whyrusleeping/go-smux-multistream",
)
go_repository(
name = "com_github_libp2p_go_maddr_filter",
commit = "1258bb7e3e3a37bb9a93aaf77ef88f8405b39bce", # v0.0.1
importpath = "github.com/libp2p/go-maddr-filter",
)
go_repository(
name = "com_github_libp2p_go_libp2p_transport",
commit = "760cba29c65701ce7b688f238f6c93cc1d899dde", # v0.0.4
importpath = "github.com/libp2p/go-libp2p-transport",
)
go_repository(
name = "com_github_libp2p_go_addr_util",
2019-03-02 14:45:33 +00:00
commit = "4cd36c0f325f9e38f1e31ff7a10b9d94d53a11cf", # v0.0.1
importpath = "github.com/libp2p/go-addr-util",
)
go_repository(
name = "com_github_libp2p_go_libp2p_interface_pnet",
2019-03-03 00:36:30 +00:00
commit = "b02026130a4daafb8001e039e116121cb92ae1a9", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-interface-pnet",
)
go_repository(
name = "com_github_libp2p_go_conn_security",
2019-03-02 14:45:33 +00:00
commit = "80b6115ae32f104b2ed14d16a8551248f4599338", # v0.0.1
importpath = "github.com/libp2p/go-conn-security",
)
go_repository(
name = "com_github_whyrusleeping_timecache",
commit = "cfcb2f1abfee846c430233aef0b630a946e0a5a6",
importpath = "github.com/whyrusleeping/timecache",
)
go_repository(
name = "com_github_miekg_dns",
commit = "8fc2e5773bbd308ca2fcc962fd8d25c1bd0f6743", # v1.1.4
importpath = "github.com/miekg/dns",
)
go_repository(
name = "com_github_opentracing_opentracing_go",
commit = "1949ddbfd147afd4d964a9f00b24eb291e0e7c38", # v1.0.2
importpath = "github.com/opentracing/opentracing-go",
)
go_repository(
name = "com_github_libp2p_go_reuseport",
commit = "3e6d618acfdfacbbeff71cb2bd70fc188f897a0f", # v0.0.1
importpath = "github.com/libp2p/go-reuseport",
)
go_repository(
name = "com_github_huin_goupnp",
commit = "656e61dfadd241c7cbdd22a023fa81ecb6860ea8", # v1.0.0
importpath = "github.com/huin/goupnp",
)
go_repository(
name = "com_github_spaolacci_murmur3",
commit = "f09979ecbc725b9e6d41a297405f65e7e8804acc", # v1.1.0
importpath = "github.com/spaolacci/murmur3",
)
go_repository(
name = "com_github_jbenet_go_temp_err_catcher",
commit = "aac704a3f4f27190b4ccc05f303a4931fd1241ff",
importpath = "github.com/jbenet/go-temp-err-catcher",
)
go_repository(
name = "com_github_satori_go_uuid",
commit = "fe3bd84a0754cc4deb35c1398cd0ebd23f1d8a41", # v1.2.0
importpath = "github.com/satori/go.uuid",
)
go_repository(
name = "com_github_sirupsen_logrus",
commit = "e1e72e9de974bd926e5c56f83753fba2df402ce5", # v1.3.0
importpath = "github.com/sirupsen/logrus",
)
go_repository(
name = "org_golang_x_sys",
commit = "a34e9553db1e492c9a76e60db2296ae7e5fbb772",
importpath = "golang.org/x/sys",
)
go_repository(
name = "com_github_whyrusleeping_yamux",
2019-03-06 04:40:01 +00:00
commit = "5364a42fe4b5efa5967c11c8f9b0f049cac0c4a9", # v1.1.5
importpath = "github.com/whyrusleeping/yamux",
)
go_repository(
name = "com_github_libp2p_go_flow_metrics",
2019-03-02 14:45:33 +00:00
commit = "1f5b3acc846b2c8ce4c4e713296af74f5c24df55", # v0.0.1
importpath = "github.com/libp2p/go-flow-metrics",
)
go_repository(
name = "com_github_libp2p_go_msgio",
commit = "2efd92d62d528c56c6711346e82df0c74a5742a8", # v0.0.1
importpath = "github.com/libp2p/go-msgio",
)
go_repository(
name = "com_github_jackpal_gateway",
2019-03-04 14:35:31 +00:00
commit = "bfe829fefc91f676644aee0dc057097c605ae5ab", # v1.0.5
importpath = "github.com/jackpal/gateway",
)
go_repository(
name = "com_github_whyrusleeping_multiaddr_filter",
commit = "e903e4adabd70b78bc9293b6ee4f359afb3f9f59",
importpath = "github.com/whyrusleeping/multiaddr-filter",
)
go_repository(
name = "com_github_libp2p_go_ws_transport",
2019-04-08 02:24:27 +00:00
commit = "4b96e98ce72baa5da81813c7621490e83c6363c0", # v0.0.2
importpath = "github.com/libp2p/go-ws-transport",
)
go_repository(
name = "org_golang_x_crypto",
commit = "8dd112bcdc25174059e45e07517d9fc663123347",
importpath = "golang.org/x/crypto",
)
go_repository(
name = "com_github_jackpal_go_nat_pmp",
commit = "d89d09f6f3329bc3c2479aa3cafd76a5aa93a35c",
importpath = "github.com/jackpal/go-nat-pmp",
)
go_repository(
name = "com_github_libp2p_go_reuseport_transport",
2019-04-08 02:24:27 +00:00
commit = "613b9f8934b2fa21208fe052314c82d296577c37", # v0.0.2
importpath = "github.com/libp2p/go-reuseport-transport",
)
go_repository(
name = "com_github_libp2p_go_sockaddr",
commit = "864d6651a43fce610e83b4c32dc80f5f85b6d28b", # v0.0.1
importpath = "github.com/libp2p/go-sockaddr",
)
go_repository(
name = "com_github_whyrusleeping_go_notifier",
commit = "097c5d47330ff6a823f67e3515faa13566a62c6f",
importpath = "github.com/whyrusleeping/go-notifier",
)
go_repository(
name = "com_github_gorilla_websocket",
commit = "66b9c49e59c6c48f0ffce28c2d8b8a5678502c6d", # v1.4.0
importpath = "github.com/gorilla/websocket",
)
go_repository(
name = "com_github_whyrusleeping_go_smux_multiplex",
2019-03-06 04:40:01 +00:00
commit = "69b7a74ecfb84be57bdcf4b264a7042d80569287", # v3.0.16
importpath = "github.com/whyrusleeping/go-smux-multiplex",
)
go_repository(
name = "com_github_gxed_eventfd",
commit = "80a92cca79a8041496ccc9dd773fcb52a57ec6f9",
importpath = "github.com/gxed/eventfd",
)
go_repository(
name = "com_github_gxed_goendian",
commit = "0f5c6873267e5abf306ffcdfcfa4bf77517ef4a7",
importpath = "github.com/gxed/GoEndian",
)
go_repository(
name = "com_github_syndtr_goleveldb",
commit = "4217c9f31f5816db02addc94e56061da77f288d8",
importpath = "github.com/syndtr/goleveldb",
)
go_repository(
name = "com_github_libp2p_go_libp2p_blankhost",
commit = "177484ab3c284e75a9fa25b3114b2c5a4395deaa", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-blankhost",
)
go_repository(
name = "com_github_steakknife_hamming",
commit = "c99c65617cd3d686aea8365fe563d6542f01d940",
importpath = "github.com/steakknife/hamming",
)
go_repository(
name = "io_opencensus_go",
2019-04-15 10:32:59 +00:00
commit = "bd64e5eff7498c1c67eba74dc87ad96aa525bf28", # v0.20.2
importpath = "go.opencensus.io",
)
go_repository(
name = "io_opencensus_go_contrib_exporter_jaeger",
commit = "5b8293c22f362562285c2acbc52f4a1870a47a33",
importpath = "contrib.go.opencensus.io/exporter/jaeger",
remote = "http://github.com/census-ecosystem/opencensus-go-exporter-jaeger",
vcs = "git",
)
go_repository(
name = "org_golang_google_api",
2019-04-15 10:32:59 +00:00
commit = "0cbcb99a9ea0c8023c794b2693cbe1def82ed4d7", # v0.3.2
importpath = "google.golang.org/api",
)
go_repository(
name = "org_golang_x_sync",
commit = "e225da77a7e68af35c70ccbf71af2b83e6acac3c",
importpath = "golang.org/x/sync",
)
go_repository(
name = "com_github_golang_lint",
commit = "5b3e6a55c961c61f4836ae6868c17b070744c590",
importpath = "github.com/golang/lint",
)
go_repository(
name = "org_golang_x_lint",
commit = "5b3e6a55c961c61f4836ae6868c17b070744c590",
importpath = "golang.org/x/lint",
)
go_repository(
name = "com_github_aristanetworks_goarista",
commit = "728bce664cf5dfb921941b240828f989a2c8f8e3",
importpath = "github.com/aristanetworks/goarista",
)
2018-10-17 06:11:24 +00:00
go_repository(
name = "com_github_prometheus_client_golang",
2019-04-15 10:32:59 +00:00
commit = "ac0d4da0b001139583d0dfb84d614a0f907ea0a9", # v0.9.2
importpath = "github.com/prometheus/client_golang",
)
go_repository(
name = "com_github_prometheus_client_model",
commit = "fd36f4220a901265f90734c3183c5f0c91daa0b8",
importpath = "github.com/prometheus/client_model",
)
go_repository(
name = "com_github_prometheus_common",
2019-04-15 10:32:59 +00:00
commit = "a82f4c12f983cc2649298185f296632953e50d3e", # v0.3.0
importpath = "github.com/prometheus/common",
)
go_repository(
name = "com_github_prometheus_procfs",
commit = "bbced9601137e764853b2fad7ec3e2dc4c504e02",
importpath = "github.com/prometheus/procfs",
)
go_repository(
name = "com_github_prometheus_prometheus",
commit = "ed970a17fe1585310bd79093b788602df9fc73c3", # v2.7.2
importpath = "github.com/prometheus/prometheus",
)
go_repository(
name = "com_github_beorn7_perks",
2019-04-15 10:32:59 +00:00
commit = "4ded152d4a3e2847f17f185a27b2041ae7b63979", # v1.0.0
importpath = "github.com/beorn7/perks",
)
go_repository(
name = "com_github_matttproud_golang_protobuf_extensions",
commit = "c12348ce28de40eed0136aa2b644d0ee0650e56c", # v1.0.1
importpath = "github.com/matttproud/golang_protobuf_extensions",
)
2018-10-17 06:11:24 +00:00
go_repository(
name = "com_github_boltdb_bolt",
commit = "2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8", # v1.3.1
2018-10-17 06:11:24 +00:00
importpath = "github.com/boltdb/bolt",
)
go_repository(
name = "com_github_pborman_uuid",
commit = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e", # v1.2.0
importpath = "github.com/pborman/uuid",
)
go_repository(
name = "com_github_libp2p_go_buffer_pool",
2019-03-02 14:45:33 +00:00
commit = "eecb57f6a721b4a66062ebeb61d1da7ce1c38fbf", # v0.0.1
importpath = "github.com/libp2p/go-buffer-pool",
)
go_repository(
name = "com_github_libp2p_go_mplex",
commit = "b16006283f6036f9a461f78692c397b134a75393", # v0.0.1
importpath = "github.com/libp2p/go-mplex",
)
go_repository(
name = "com_github_libp2p_go_libp2p_pubsub",
build_file_proto_mode = "disable_global",
commit = "25cbf38777e869acb77e8079c3c76d6b430e66ad", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-pubsub",
)
go_repository(
name = "com_github_ipfs_go_ipfs_util",
2019-03-02 14:45:33 +00:00
commit = "a4bb5361e49427531f9a716ead2ce4bd9bdd7959", # v0.0.1
importpath = "github.com/ipfs/go-ipfs-util",
)
go_repository(
name = "com_github_google_uuid",
commit = "0cd6bf5da1e1c83f8b45653022c74f71af0538a4", # v1.1.1
importpath = "github.com/google/uuid",
)
go_repository(
name = "com_github_libp2p_go_libp2p_kad_dht",
2018-11-17 14:13:06 +00:00
build_file_proto_mode = "disable_global",
commit = "b220ac23e82c0df788178e806b1fefa92e936766", # v0.0.9
importpath = "github.com/libp2p/go-libp2p-kad-dht",
)
go_repository(
name = "com_github_ipfs_go_datastore",
commit = "f8bd98feaffb64c335ac5e74f0a3d3aedbfd13ba", # v0.0.5
importpath = "github.com/ipfs/go-datastore",
)
go_repository(
name = "com_github_whyrusleeping_base32",
commit = "c30ac30633ccdabefe87eb12465113f06f1bab75",
importpath = "github.com/whyrusleeping/base32",
)
go_repository(
name = "com_github_ipfs_go_cid",
2019-03-02 14:45:33 +00:00
commit = "e7e67e08cfba888a4297224402e12832bdc15ea0", # v0.0.1
importpath = "github.com/ipfs/go-cid",
)
go_repository(
name = "com_github_libp2p_go_libp2p_record",
2018-11-17 14:13:06 +00:00
build_file_proto_mode = "disable_global",
commit = "4c2093f40950fe401a612a725ef0765c0c767b60", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-record",
)
go_repository(
name = "com_github_libp2p_go_libp2p_routing",
commit = "ab366780f22ac0d2625105a9f6d3cace1817dd30", # v0.0.1
importpath = "github.com/libp2p/go-libp2p-routing",
)
go_repository(
name = "com_github_libp2p_go_libp2p_kbucket",
2019-04-15 10:32:59 +00:00
commit = "156082e365307f3f5585c23acb433ec6df93bfb8", # v0.1.1
importpath = "github.com/libp2p/go-libp2p-kbucket",
)
go_repository(
name = "com_github_jbenet_go_context",
commit = "d14ea06fba99483203c19d92cfcd13ebe73135f4",
importpath = "github.com/jbenet/go-context",
)
go_repository(
name = "com_github_ipfs_go_todocounter",
2019-03-02 14:45:33 +00:00
commit = "bc75efcf13e6e50fbba27679ba5451585d70c954", # v0.0.1
importpath = "github.com/ipfs/go-todocounter",
)
go_repository(
name = "com_github_whyrusleeping_go_keyspace",
commit = "5b898ac5add1da7178a4a98e69cb7b9205c085ee",
importpath = "github.com/whyrusleeping/go-keyspace",
)
go_repository(
name = "com_github_multiformats_go_multibase",
commit = "d63641945dc1749baa23686ad0564ad63fef0493", # v0.0.1
importpath = "github.com/multiformats/go-multibase",
)
go_repository(
name = "com_github_hashicorp_golang_lru",
commit = "7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c",
importpath = "github.com/hashicorp/golang-lru",
)
go_repository(
name = "com_github_ipfs_go_ipfs_addr",
2019-03-03 00:36:30 +00:00
commit = "ac4881d4db36effbbeebf93d9172fcb20ed04c15", # v0.0.1
importpath = "github.com/ipfs/go-ipfs-addr",
)
2018-11-17 14:13:06 +00:00
go_repository(
name = "com_github_libp2p_go_libp2p_discovery",
commit = "4cb4193d603389a75bccd07336de74d54bea6b00", # v0.0.2
2018-11-17 14:13:06 +00:00
importpath = "github.com/libp2p/go-libp2p-discovery",
)
go_repository(
name = "com_github_libp2p_go_libp2p_autonat",
2019-04-15 10:32:59 +00:00
commit = "22b9ad627d2ff57437408c9a74652befc2c694ad", # v0.0.4
2018-11-17 14:13:06 +00:00
importpath = "github.com/libp2p/go-libp2p-autonat",
)
go_repository(
name = "com_github_konsorten_go_windows_terminal_sequences",
commit = "f55edac94c9bbba5d6182a4be46d86a2c9b5b50e",
2018-11-17 14:13:06 +00:00
importpath = "github.com/konsorten/go-windows-terminal-sequences",
)
Bulk renovate updates (#884) * Roll back dependency com_github_libp2p_go_libp2p to 6 * Update com_github_go_yaml_yaml commit hash to 51d6538 * Update com_github_libp2p_go_libp2p_circuit commit hash to f83937e * Update com_github_libp2p_go_libp2p_crypto commit hash to 3120e9f * Update com_github_multiformats_go_multistream commit hash to 0c61f18 * Update com_github_opentracing_opentracing_go commit hash to be550b0 * Update com_github_prometheus_client_golang commit hash to 3fb53df * Update com_github_prometheus_common commit hash to 1f2c4f3 * Update com_github_prometheus_prometheus commit hash to 11b336e * Update com_github_satori_go_uuid commit hash to b2ce238 * Update com_github_sirupsen_logrus commit hash to 91da99d * Update com_github_syndtr_goleveldb commit hash to f908035 * Update dependency com_github_libp2p_go_buffer_pool to v0.1.1 * Update dependency com_github_libp2p_go_conn_security to v0.1.15 * Update dependency com_github_libp2p_go_flow_metrics to v0.2.0 * Update dependency com_github_libp2p_go_libp2p_blankhost to v0.3.15 * Update dependency com_github_libp2p_go_libp2p_interface_connmgr to v0.0.21 * Update dependency com_github_urfave_cli to v0.1.0 * Update dependency com_github_ipfs_go_datastore to v0.3.0 * Update dependency com_github_libp2p_go_libp2p_interface_pnet to v0.2.0 * Update dependency com_github_libp2p_go_reuseport_transport to v0.1.11 * Update dependency com_github_multiformats_go_multiaddr to v0.1.2 * Update dependency com_github_multiformats_go_multihash to v0.1.0 * Update dependency com_github_opentracing_opentracing_go to v0.10.0 * Update dependency com_github_prometheus_prometheus to v0.20.0 * Update dependency com_github_sirupsen_logrus to v0.11.5 * Update dependency com_github_steakknife_hamming to v0.2.5 * Update dependency com_github_x_cray_logrus_prefixed_formatter to v0.5.2 * Update dependency io_opencensus_go to v0.18.0 * Update dependency com_github_boltdb_bolt to v1 * Update dependency com_github_fd_go_nat to v1 * fixes * fixes
2018-11-21 12:06:08 +00:00
go_repository(
name = "com_github_libp2p_go_libp2p_interface_conn",
commit = "c7cda99284db0bea441058da8fd1f1373c763ed6",
importpath = "github.com/libp2p/go-libp2p-interface-conn",
)
go_repository(
name = "io_k8s_client_go",
commit = "8abb21031259350aad0799bb42ba213ee8bb3399",
importpath = "k8s.io/client-go",
)
go_repository(
name = "io_k8s_apimachinery",
build_file_proto_mode = "disable_global",
commit = "4a9a8137c0a17bc4594f544987b3f0d48b2e3d3a",
importpath = "k8s.io/apimachinery",
)
go_repository(
name = "io_k8s_klog",
commit = "9be023858d57e1beb4d7c29fa54093cea2cf9583",
importpath = "k8s.io/klog",
)
go_repository(
name = "com_github_google_gofuzz",
2019-04-15 10:32:59 +00:00
commit = "f140a6486e521aad38f5917de355cbf147cc0496", # v1.0.0
importpath = "github.com/google/gofuzz",
)
go_repository(
name = "io_k8s_api",
build_file_proto_mode = "disable_global",
commit = "b7bd5f2d334ce968edc54f5fdb2ac67ce39c56d5",
importpath = "k8s.io/api",
)
go_repository(
name = "com_github_shyiko_kubesec",
commit = "7718facdb5e5529cecff1fe42fc3aaa4cc837d5d",
importpath = "github.com/shyiko/kubesec",
)
go_repository(
name = "in_gopkg_yaml_v2",
commit = "51d6538a90f86fe93ac480b35f37b2be17fef232", # v2.2.2
importpath = "gopkg.in/yaml.v2",
)
go_repository(
name = "com_github_spf13_pflag",
commit = "298182f68c66c05229eb03ac171abe6e309ee79a", # v1.0.3
importpath = "github.com/spf13/pflag",
)
go_repository(
name = "com_github_spf13_cobra",
commit = "ef82de70bb3f60c65fb8eebacbb2d122ef517385", # v0.0.3
importpath = "github.com/spf13/cobra",
)
go_repository(
name = "com_github_aws_aws_sdk_go",
commit = "36cc7fd7051ac4707bd56c8774825df9e8de5918",
importpath = "github.com/aws/aws-sdk-go",
)
go_repository(
name = "com_github_posener_complete",
commit = "699ede78373dfb0168f00170591b698042378437",
importpath = "github.com/posener/complete",
remote = "https://github.com/shyiko/complete",
vcs = "git",
)
go_repository(
name = "org_golang_x_oauth2",
commit = "e64efc72b421e893cbf63f17ba2221e7d6d0b0f3",
importpath = "golang.org/x/oauth2",
)
go_repository(
name = "com_github_hashicorp_go_multierror",
commit = "886a7fbe3eb1c874d46f623bfa70af45f425b3d1", # v1.0.0
importpath = "github.com/hashicorp/go-multierror",
)
go_repository(
name = "com_github_hashicorp_errwrap",
2019-03-04 14:35:31 +00:00
commit = "8a6fb523712970c966eefc6b39ed2c5e74880354", # v1.0.0
importpath = "github.com/hashicorp/errwrap",
)
go_repository(
name = "com_google_cloud_go",
2019-04-15 10:32:59 +00:00
commit = "fcb9a2d5f791d07be64506ab54434de65989d370", # v0.37.4
importpath = "cloud.google.com/go",
)
go_repository(
name = "com_github_inconshreveable_mousetrap",
2019-03-04 14:35:31 +00:00
commit = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75", # v1.0.0
importpath = "github.com/inconshreveable/mousetrap",
)
go_repository(
name = "com_github_deckarep_golang_set",
commit = "699df6a3acf6867538e50931511e9dc403da108a",
importpath = "github.com/deckarep/golang-set",
)
go_repository(
name = "com_github_go_stack_stack",
commit = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a",
importpath = "github.com/go-stack/stack",
)
go_repository(
name = "com_github_rs_cors",
commit = "76f58f330d76a55c5badc74f6212e8a15e742c77",
importpath = "github.com/rs/cors",
)
go_repository(
name = "com_github_golang_snappy",
commit = "2a8bb927dd31d8daada140a5d09578521ce5c36a",
importpath = "github.com/golang/snappy",
)
go_repository(
name = "in_gopkg_urfave_cli_v1",
commit = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1",
importpath = "gopkg.in/urfave/cli.v1",
)
go_repository(
name = "com_github_rjeczalik_notify",
commit = "629144ba06a1c6af28c1e42c228e3d42594ce081",
importpath = "github.com/rjeczalik/notify",
)
go_repository(
name = "com_github_edsrzf_mmap_go",
commit = "904c4ced31cdffe19e971afa0b3d319ff06d9c72",
importpath = "github.com/edsrzf/mmap-go",
)
go_repository(
name = "com_github_pkg_errors",
commit = "27936f6d90f9c8e1145f11ed52ffffbfdb9e0af7",
importpath = "github.com/pkg/errors",
)
go_repository(
name = "in_gopkg_natefinch_npipe_v2",
commit = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6",
importpath = "gopkg.in/natefinch/npipe.v2",
)
go_repository(
name = "org_gonum_v1_gonum",
commit = "70a1e933af10e87000d2ccabdd509b87d8626153",
importpath = "gonum.org/v1/gonum",
)
go_repository(
name = "org_golang_x_exp",
commit = "438050ddec5e7f808979ed57d041cebbc8e2d8a9",
importpath = "golang.org/x/exp",
)
go_repository(
name = "com_github_prestonvanloon_go_recaptcha",
commit = "0834cef6e8bd3a7ebdb3ac7def9440ee47d501a4",
importpath = "github.com/prestonvanloon/go-recaptcha",
)
go_repository(
name = "com_github_phoreproject_bls",
commit = "afaefda3ea643e9292b6f4596403ed5c742561b4",
importpath = "github.com/phoreproject/bls",
)
go_repository(
name = "com_github_multiformats_go_base32",
commit = "a9c2755c3d1672dbe6a7e4a5d182169fa30b6a8e", # v0.0.3
importpath = "github.com/multiformats/go-base32",
)
2019-03-02 05:13:55 +00:00
go_repository(
name = "com_github_allegro_bigcache",
commit = "84a0ff3f153cbd7e280a19029a864bb04b504e62", # v1.2.0
2019-03-02 05:13:55 +00:00
importpath = "github.com/allegro/bigcache",
)
go_repository(
name = "org_golang_x_xerrors",
commit = "a5947ffaace3e882f334c1750858b4a6a7e52422",
importpath = "golang.org/x/xerrors",
)
go_repository(
name = "com_github_grpc_ecosystem_go_grpc_middleware",
commit = "c250d6563d4d4c20252cd865923440e829844f4e", # v1.0.0
importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
)
go_repository(
name = "com_github_apache_thrift",
commit = "384647d290e2e4a55a14b1b7ef1b7e66293a2c33", # v0.12.0
importpath = "github.com/apache/thrift",
)
2019-03-26 16:26:47 +00:00
go_repository(
name = "com_github_grpc_ecosystem_go_grpc_prometheus",
commit = "502116f1a0a0c1140aab04fd3787489209b357d3", # v1.2.0
2019-03-26 16:26:47 +00:00
importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
)
Add Caching to Tree Hashing Algorithm (#1929) * added todo to hash file in ssz * params and copy of block cache * start hash cache * Hash cache implementation * fixed some comments * fixed promatheus duplicate counter name * removed TODO * change to use special expiration cache * function name fixes junk object generator * naming changes * gazzle fix * added pruning last read data test * fixed gometallinter errors * fix benchmarks and no int64 not serializable * move struct from test * add feature flag * fix merge issues * add featureflag to beacon and validator * featureflag init for tests * added feature flag to all ssz dependent tests * remove setter func * replace k8s tweaked expiration cache to https://github.com/karlseguin/ccache * remove else * change request by preston * added init featureflags to genesis_test * Update shared/ssz/hash_cache.go add dot Co-Authored-By: shayzluf <thezluf@gmail.com> * Update shared/ssz/hash_cache.go Co-Authored-By: shayzluf <thezluf@gmail.com> * Update shared/ssz/hash_cache.go remove extra space Co-Authored-By: shayzluf <thezluf@gmail.com> * Update shared/params/config.go add dot Co-Authored-By: shayzluf <thezluf@gmail.com> * Update shared/featureconfig/config.go remove dot Co-Authored-By: shayzluf <thezluf@gmail.com> * Update shared/featureconfig/config.go remove dot Co-Authored-By: shayzluf <thezluf@gmail.com> * remove powchain from prometheus hash cache name * fixes fron change requests * fix change requests * remove faulty merge test * gazelle fix * fix fmt.sprintf * remove debug binary * fix gazelle
2019-04-24 05:39:02 +00:00
go_repository(
name = "com_github_karlseguin_ccache",
commit = "ec06cd93a07565b373789b0078ba88fe697fddd9",
importpath = "github.com/karlseguin/ccache",
)