go.mod 1.15 KB
Newer Older
1
module github.com/libp2p/go-libp2p-kad-dht
Matt Joiner's avatar
Matt Joiner committed
2

3
go 1.14
4

Matt Joiner's avatar
Matt Joiner committed
5
require (
Steven Allen's avatar
Steven Allen committed
6
	github.com/gogo/protobuf v1.3.1
Steven Allen's avatar
Steven Allen committed
7
	github.com/hashicorp/go-multierror v1.0.0
8
	github.com/hashicorp/golang-lru v0.5.4
9
	github.com/ipfs/go-cid v0.0.5
10
	github.com/ipfs/go-datastore v0.4.4
Raúl Kripalani's avatar
Raúl Kripalani committed
11
	github.com/ipfs/go-ipfs-util v0.0.1
Steven Allen's avatar
Steven Allen committed
12
	github.com/ipfs/go-log v1.0.2
Steven Allen's avatar
Steven Allen committed
13
	github.com/jbenet/goprocess v0.1.3
14
	github.com/libp2p/go-eventbus v0.1.0
15
	github.com/libp2p/go-libp2p v0.6.2-0.20200323213923-1425d551c298
Steven Allen's avatar
Steven Allen committed
16
	github.com/libp2p/go-libp2p-core v0.5.0
17 18
	github.com/libp2p/go-libp2p-kbucket v0.3.2-0.20200320132433-d1a1e9242e0c
	github.com/libp2p/go-libp2p-peerstore v0.2.1
Steven Allen's avatar
Steven Allen committed
19 20 21
	github.com/libp2p/go-libp2p-record v0.1.2
	github.com/libp2p/go-libp2p-swarm v0.2.2
	github.com/libp2p/go-libp2p-testing v0.1.1
Cole Brown's avatar
Cole Brown committed
22
	github.com/libp2p/go-msgio v0.0.4
23
	github.com/mr-tron/base58 v1.1.3
Steven Allen's avatar
Steven Allen committed
24
	github.com/multiformats/go-base32 v0.0.3
25
	github.com/multiformats/go-multiaddr v0.2.1
Steven Allen's avatar
Steven Allen committed
26
	github.com/multiformats/go-multiaddr-dns v0.2.0
27
	github.com/multiformats/go-multihash v0.0.13
28
	github.com/multiformats/go-multistream v0.1.1
29
	github.com/stretchr/testify v1.5.1
Adin Schmahmann's avatar
Adin Schmahmann committed
30
	github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1
31
	go.opencensus.io v0.22.3
Matt Joiner's avatar
Matt Joiner committed
32
)