prysm-pulse/WORKSPACE

834 lines
22 KiB
Python
Raw Normal View History

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
url = "https://github.com/bazelbuild/rules_go/releases/download/0.16.2/rules_go-0.16.2.tar.gz",
sha256 = "f87fa87475ea107b3c69196f39c82b7bbf58fe27c62a338684c20ca17d1d8613",
)
http_archive(
name = "bazel_gazelle",
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/0.15.0/bazel-gazelle-0.15.0.tar.gz"],
sha256 = "6e875ab4b6bf64a38c352887760f21203ab054676d9c1b274963907e0768740d",
)
http_archive(
name = "com_github_atlassian_bazel_tools",
strip_prefix = "bazel-tools-6fef37f33dfa0189be9df4d3d60e6291bfe71177",
urls = ["https://github.com/atlassian/bazel-tools/archive/6fef37f33dfa0189be9df4d3d60e6291bfe71177.zip"],
)
git_repository(
name = "io_bazel_rules_docker",
commit = "7401cb256222615c497c0dee5a4de5724a4f4cc7", # 2018-06-22
remote = "https://github.com/bazelbuild/rules_docker.git",
)
load("@io_bazel_rules_docker//docker:docker.bzl", "docker_repositories")
docker_repositories()
git_repository(
name = "build_bazel_rules_nodejs",
remote = "https://github.com/bazelbuild/rules_nodejs.git",
tag = "0.16.2",
)
load("@build_bazel_rules_nodejs//:package.bzl", "rules_nodejs_dependencies")
rules_nodejs_dependencies()
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.
git_repository(
name = "io_bazel_rules_k8s",
commit = "2054f7bf4d51f9e439313c56d7a208960a8a179f", # 2018-07-29
remote = "https://github.com/bazelbuild/rules_k8s.git",
)
load("@io_bazel_rules_k8s//k8s:k8s.bzl", "k8s_repositories", "k8s_defaults")
k8s_repositories()
_CLUSTER = "minikube"
_NAMESPACE = "default"
[k8s_defaults(
name = "k8s_" + kind,
cluster = _CLUSTER,
#context = _CONTEXT,
kind = kind,
namespace = _NAMESPACE,
) for kind in [
"deploy",
"service",
"secret",
"priority_class",
"pod",
]]
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()
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()
git_repository(
name = "io_kubernetes_build",
commit = "4ce715fbe67d8fbed05ec2bb47a148e754100a4b",
remote = "https://github.com/kubernetes/repo-infra.git",
)
git_repository(
name = "com_github_jmhodges_bazel_gomock",
commit = "5b73edb74e569ff404b3beffc809d6d9f205e0e4",
remote = "https://github.com/jmhodges/bazel_gomock.git",
)
go_repository(
name = "com_github_golang_mock",
commit = "8a44ef6e8be577e050008c7886f24fc705d709fb",
importpath = "github.com/golang/mock",
)
# External dependencies
go_repository(
name = "com_github_ethereum_go_ethereum",
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",
commit = "f4b3f83362a4cf2928e57914af040aea76c8a7d6",
)
go_repository(
name = "com_github_urfave_cli",
2018-11-17 14:13:06 +00:00
commit = "b67dcf995b6a7b7f14fad5fcb7cc5441b05e814b",
importpath = "github.com/urfave/cli",
)
go_repository(
name = "com_github_go_yaml_yaml",
tag = "v2.2.1",
2018-11-17 14:13:06 +00:00
importpath = "github.com/go-yaml/yaml",
)
go_repository(
name = "com_github_x_cray_logrus_prefixed_formatter",
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
tag = "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",
tag = "v6.0.23",
importpath = "github.com/libp2p/go-libp2p",
)
go_repository(
name = "com_github_libp2p_go_libp2p_peer",
commit = "d3df4bca884d7a9c2d350c8120240db3c2b0f2ee",
importpath = "github.com/libp2p/go-libp2p-peer",
)
go_repository(
name = "com_github_libp2p_go_libp2p_crypto",
build_file_proto_mode = "disable_global",
tag = "v2.0.1",
importpath = "github.com/libp2p/go-libp2p-crypto",
)
go_repository(
name = "com_github_multiformats_go_multiaddr",
commit = "ec8630b6b7436b5d7f6c1c2366d3d7214d1b29e2",
importpath = "github.com/multiformats/go-multiaddr",
)
go_repository(
name = "com_github_ipfs_go_log",
tag = "v1.5.7",
importpath = "github.com/ipfs/go-log",
)
go_repository(
name = "com_github_multiformats_go_multihash",
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
tag = "v1.0.8",
importpath = "github.com/multiformats/go-multihash",
)
go_repository(
name = "com_github_libp2p_go_libp2p_swarm",
commit = "9e6ea7ee4ce0a5e969bf4bfea6b43b4d823726e8",
importpath = "github.com/libp2p/go-libp2p-swarm",
)
go_repository(
name = "com_github_libp2p_go_libp2p_host",
commit = "5ab1f4ea0a8ad6f9cd7264bc9a3b6d908d07e21a",
importpath = "github.com/libp2p/go-libp2p-host",
)
go_repository(
name = "com_github_libp2p_go_libp2p_peerstore",
commit = "0c6cf4a7990d7356fcb2c68ddd39083b893c51e6",
importpath = "github.com/libp2p/go-libp2p-peerstore",
)
go_repository(
name = "com_github_libp2p_go_libp2p_circuit",
tag = "v2.3.2",
importpath = "github.com/libp2p/go-libp2p-circuit",
)
go_repository(
name = "com_github_coreos_go_semver",
tag = "v0.2.0",
importpath = "github.com/coreos/go-semver",
)
go_repository(
name = "com_github_libp2p_go_libp2p_interface_connmgr",
tag = "v0.0.21",
importpath = "github.com/libp2p/go-libp2p-interface-connmgr",
)
go_repository(
name = "com_github_libp2p_go_conn_security_multistream",
tag = "v0.1.15",
importpath = "github.com/libp2p/go-conn-security-multistream",
)
go_repository(
name = "com_github_libp2p_go_libp2p_metrics",
commit = "2d5733beaa2a9fdd05ef696d7a734aa61549fb2a",
importpath = "github.com/libp2p/go-libp2p-metrics",
)
go_repository(
name = "com_github_libp2p_go_libp2p_net",
commit = "41fb1c9f3f0e6214f93e2a2f9ee87db05e193fb7",
importpath = "github.com/libp2p/go-libp2p-net",
)
go_repository(
name = "com_github_whyrusleeping_mafmt",
2018-11-17 14:13:06 +00:00
commit = "c75a64cef2f64e7d538e6d43a8c58449ba2ab735",
importpath = "github.com/whyrusleeping/mafmt",
)
go_repository(
name = "com_github_multiformats_go_multiaddr_net",
commit = "f0af4033635f1241179700537dacdc04f2803df8",
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 = "d9f6b97f8db22dd1e090fd0bbbe98f09cc7dd0a8",
importpath = "github.com/gxed/hashland",
)
go_repository(
name = "com_github_mattn_go_colorable",
tag = "v0.0.9",
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 = "67e573d211ace594f1366b4ce9d39726c4b19bd0",
importpath = "github.com/btcsuite/btcd",
)
go_repository(
name = "com_github_minio_sha256_simd",
commit = "51976451ce1942acbb55707a983ed232fa027110",
importpath = "github.com/minio/sha256-simd",
)
go_repository(
name = "com_github_mr_tron_base58",
commit = "c8897612421d88a51012eaa53bf7267686173ae5",
importpath = "github.com/mr-tron/base58",
)
go_repository(
name = "com_github_whyrusleeping_go_smux_yamux",
commit = "49458276a01f7fbc32ff62c8955fa3e852b8e772",
importpath = "github.com/whyrusleeping/go-smux-yamux",
)
go_repository(
name = "com_github_libp2p_go_libp2p_secio",
build_file_proto_mode = "disable_global",
commit = "eef79c8345f3960fba6c64b0d9f0b4edb71eeb89",
importpath = "github.com/libp2p/go-libp2p-secio",
)
go_repository(
name = "com_github_libp2p_go_tcp_transport",
commit = "d8a1795b81e6c037cfdc3a31bf81d1b925104751",
importpath = "github.com/libp2p/go-tcp-transport",
)
go_repository(
name = "com_github_libp2p_go_libp2p_protocol",
commit = "b29f3d97e3a2fb8b29c5d04290e6cb5c5018004b",
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",
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
commit = "0c61f185f3d6e16bcda416874e7a0fca4696e7e0",
importpath = "github.com/multiformats/go-multistream",
)
go_repository(
name = "com_github_libp2p_go_libp2p_loggables",
commit = "024fce320cf7e720445c400721c6fa6d68c9aaa7",
importpath = "github.com/libp2p/go-libp2p-loggables",
)
go_repository(
name = "com_github_libp2p_go_libp2p_nat",
tag = "v0.8.8",
importpath = "github.com/libp2p/go-libp2p-nat",
)
go_repository(
name = "com_github_multiformats_go_multiaddr_dns",
tag = "v0.2.5",
importpath = "github.com/multiformats/go-multiaddr-dns",
)
go_repository(
name = "com_github_fd_go_nat",
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
tag = "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",
tag = "v0.0.4",
importpath = "github.com/mattn/go-isatty",
)
go_repository(
name = "com_github_libp2p_go_stream_muxer",
commit = "9c6bd93eecbbab56630bb2688bb435d9fd1dfeb1",
importpath = "github.com/libp2p/go-stream-muxer",
)
go_repository(
name = "com_github_libp2p_go_libp2p_transport_upgrader",
tag = "v0.1.16",
importpath = "github.com/libp2p/go-libp2p-transport-upgrader",
)
go_repository(
name = "com_github_libp2p_go_testutil",
commit = "39e561a7a13ac9fa9253ea87bb98caba72f392d1",
importpath = "github.com/libp2p/go-testutil",
)
go_repository(
name = "com_github_whyrusleeping_go_smux_multistream",
commit = "e799b10bc6eea2cc5ce18f7b7b4d8e1a0439476d",
importpath = "github.com/whyrusleeping/go-smux-multistream",
)
go_repository(
name = "com_github_libp2p_go_maddr_filter",
commit = "9e2c18e714b119399bf9ba45cd26805321bf22b5",
importpath = "github.com/libp2p/go-maddr-filter",
)
go_repository(
name = "com_github_libp2p_go_libp2p_transport",
commit = "7400b517a07e9f4fceb2674a23ca7b420ee1dd7c",
importpath = "github.com/libp2p/go-libp2p-transport",
)
go_repository(
name = "com_github_libp2p_go_addr_util",
tag = "v2.0.7",
importpath = "github.com/libp2p/go-addr-util",
)
go_repository(
name = "com_github_libp2p_go_libp2p_interface_pnet",
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
tag = "v3.0.0",
importpath = "github.com/libp2p/go-libp2p-interface-pnet",
)
go_repository(
name = "com_github_libp2p_go_conn_security",
tag = "v0.1.15",
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 = "1c9c9bf4c93ee029810272d3e5b8a126aee5bf1f",
importpath = "github.com/miekg/dns",
)
go_repository(
name = "com_github_opentracing_opentracing_go",
2018-11-17 14:13:06 +00:00
commit = "be550b025b433cdfa2f11efb962afa2ea3c4d967",
importpath = "github.com/opentracing/opentracing-go",
)
go_repository(
name = "com_github_libp2p_go_reuseport",
tag = "v0.1.18",
importpath = "github.com/libp2p/go-reuseport",
)
go_repository(
name = "com_github_huin_goupnp",
tag = "v1.0.0",
importpath = "github.com/huin/goupnp",
)
go_repository(
name = "com_github_spaolacci_murmur3",
commit = "f09979ecbc725b9e6d41a297405f65e7e8804acc",
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 = "b2ce2384e17bbe0c6d34077efa39dbab3e09123b",
importpath = "github.com/satori/go.uuid",
)
go_repository(
name = "com_github_sirupsen_logrus",
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
tag = "v1.2.0",
importpath = "github.com/sirupsen/logrus",
)
go_repository(
name = "org_golang_x_sys",
commit = "0cf1ed9e522b7dbb416f080a5c8003de9b702bf4",
importpath = "golang.org/x/sys",
)
go_repository(
name = "com_github_whyrusleeping_yamux",
commit = "5364a42fe4b5efa5967c11c8f9b0f049cac0c4a9",
importpath = "github.com/whyrusleeping/yamux",
)
go_repository(
name = "com_github_libp2p_go_flow_metrics",
tag = "v0.2.0",
importpath = "github.com/libp2p/go-flow-metrics",
)
go_repository(
name = "com_github_libp2p_go_msgio",
tag = "v0.0.6",
importpath = "github.com/libp2p/go-msgio",
)
go_repository(
name = "com_github_jackpal_gateway",
tag = "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",
commit = "e61db42a8bd8cab398d3a6a982a4db9ad4de4aa0",
importpath = "github.com/libp2p/go-ws-transport",
)
go_repository(
name = "org_golang_x_crypto",
2018-11-17 14:13:06 +00:00
commit = "3d3f9f413869b949e48070b5bc593aa22cc2b8f2",
importpath = "golang.org/x/crypto",
)
go_repository(
name = "com_github_jackpal_go_nat_pmp",
tag = "v1.0.1",
importpath = "github.com/jackpal/go-nat-pmp",
)
go_repository(
name = "com_github_libp2p_go_reuseport_transport",
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
tag = "v0.1.11",
importpath = "github.com/libp2p/go-reuseport-transport",
)
go_repository(
name = "com_github_libp2p_go_sockaddr",
commit = "a7494d4eefeb607c8bc491cf8850a6e8dbd41cab",
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",
tag = "v1.4.0",
importpath = "github.com/gorilla/websocket",
)
go_repository(
name = "com_github_whyrusleeping_go_smux_multiplex",
2018-11-17 14:13:06 +00:00
commit = "c9680d872b8e73a2fc8d9bba3eacabf1e8add80d",
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",
2018-11-17 14:13:06 +00:00
commit = "f9080354173f192dfc8821931eacf9cfd6819253",
importpath = "github.com/syndtr/goleveldb",
)
go_repository(
name = "com_github_libp2p_go_libp2p_blankhost",
tag = "v0.3.15",
importpath = "github.com/libp2p/go-libp2p-blankhost",
)
go_repository(
name = "com_github_steakknife_hamming",
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
tag = "0.2.5",
importpath = "github.com/steakknife/hamming",
)
go_repository(
name = "io_opencensus_go",
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
tag = "v0.18.0",
importpath = "go.opencensus.io",
)
go_repository(
name = "org_golang_google_api",
commit = "faade3cbb06a30202f2da53a8a5e3c4afe60b0c2",
importpath = "google.golang.org/api",
)
go_repository(
name = "org_golang_x_sync",
2018-11-17 14:13:06 +00:00
commit = "42b317875d0fa942474b76e1b46a6060d720ae6e",
importpath = "golang.org/x/sync",
)
go_repository(
name = "com_github_golang_lint",
commit = "c67002cb31c3a748b7688c27f20d8358b4193582",
importpath = "github.com/golang/lint",
)
go_repository(
name = "org_golang_x_lint",
commit = "c67002cb31c3a748b7688c27f20d8358b4193582",
importpath = "golang.org/x/lint",
)
go_repository(
name = "com_github_aristanetworks_goarista",
commit = "5faa74ffbed7096292069fdcd0eae96146a3158a",
importpath = "github.com/aristanetworks/goarista",
)
2018-10-17 06:11:24 +00:00
go_repository(
name = "com_github_prometheus_client_golang",
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
commit = "3fb53dff765f8a3e0f9d8b1d5b86d4f8c4eb3a09",
importpath = "github.com/prometheus/client_golang",
)
go_repository(
name = "com_github_prometheus_client_model",
commit = "5c3871d89910bfb32f5fcab2aa4b9ec68e65a99f",
importpath = "github.com/prometheus/client_model",
)
go_repository(
name = "com_github_prometheus_common",
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
commit = "1f2c4f3cd6db5fd6f68f36af6b6d5d936fd93c4e",
importpath = "github.com/prometheus/common",
)
go_repository(
name = "com_github_prometheus_procfs",
commit = "185b4288413d2a0dd0806f78c90dde719829e5ae",
importpath = "github.com/prometheus/procfs",
)
go_repository(
name = "com_github_prometheus_prometheus",
tag = "0.20.0",
importpath = "github.com/prometheus/prometheus",
)
go_repository(
name = "com_github_beorn7_perks",
commit = "3a771d992973f24aa725d07868b467d1ddfceafb",
importpath = "github.com/beorn7/perks",
)
go_repository(
name = "com_github_matttproud_golang_protobuf_extensions",
commit = "c12348ce28de40eed0136aa2b644d0ee0650e56c",
importpath = "github.com/matttproud/golang_protobuf_extensions",
)
2018-10-17 06:11:24 +00:00
go_repository(
name = "com_github_boltdb_bolt",
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
tag = "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",
importpath = "github.com/pborman/uuid",
)
go_repository(
name = "com_github_libp2p_go_buffer_pool",
tag = "v0.1.1",
importpath = "github.com/libp2p/go-buffer-pool",
)
go_repository(
name = "com_github_libp2p_go_mplex",
tag = "v0.2.30",
importpath = "github.com/libp2p/go-mplex",
)
go_repository(
name = "com_github_libp2p_go_libp2p_pubsub",
build_file_proto_mode = "disable_global",
tag = "v0.10.2",
importpath = "github.com/libp2p/go-libp2p-pubsub",
)
go_repository(
name = "com_github_ipfs_go_ipfs_util",
tag = "v1.2.8",
importpath = "github.com/ipfs/go-ipfs-util",
)
go_repository(
name = "com_github_google_uuid",
tag = "v1.1.0",
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 = "d70e92744b101ddf9ed93066a54ce128fa53aaa8",
importpath = "github.com/libp2p/go-libp2p-kad-dht",
)
go_repository(
name = "com_github_ipfs_go_datastore",
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
tag = "v3.2.0",
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",
tag = "v0.9.0",
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 = "237ab9e10af172232eedad9e63ea8983c50859b1",
importpath = "github.com/libp2p/go-libp2p-record",
)
go_repository(
name = "com_github_libp2p_go_libp2p_routing",
commit = "cb72d923dcde7c3af89d09032443515bd0fe7075",
importpath = "github.com/libp2p/go-libp2p-routing",
)
go_repository(
name = "com_github_libp2p_go_libp2p_kbucket",
commit = "5a67fa0572539e1e65cc7d0772c887ceda0cfea8",
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",
tag = "v1.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",
tag = "v0.3.0",
importpath = "github.com/multiformats/go-multibase",
)
go_repository(
name = "com_github_hashicorp_golang_lru",
tag = "v0.5.0",
importpath = "github.com/hashicorp/golang-lru",
)
go_repository(
name = "com_github_ipfs_go_ipfs_addr",
tag = "v0.1.25",
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 = "7153173e40fcf3aa2c6845f00c54119bea8b427f",
importpath = "github.com/libp2p/go-libp2p-discovery",
)
go_repository(
name = "com_github_libp2p_go_libp2p_autonat",
commit = "c09caf7c16407d3f68a3b8c467cf1d7445443328",
importpath = "github.com/libp2p/go-libp2p-autonat",
)
go_repository(
name = "com_github_konsorten_go_windows_terminal_sequences",
tag = "v1.0.1",
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",
)