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

3 4
go 1.12

Matt Joiner's avatar
Matt Joiner committed
5
require (
6 7 8 9
	github.com/gogo/protobuf v1.3.0
	github.com/hashicorp/golang-lru v0.5.3
	github.com/ipfs/go-cid v0.0.3
	github.com/ipfs/go-datastore v0.1.0
Raúl Kripalani's avatar
Raúl Kripalani committed
10 11 12
	github.com/ipfs/go-ipfs-util v0.0.1
	github.com/ipfs/go-log v0.0.1
	github.com/ipfs/go-todocounter v0.0.1
Steven Allen's avatar
Steven Allen committed
13
	github.com/jbenet/goprocess v0.1.3
14 15 16
	github.com/libp2p/go-libp2p v0.3.1
	github.com/libp2p/go-libp2p-core v0.2.2
	github.com/libp2p/go-libp2p-kbucket v0.2.1
17 18
	github.com/libp2p/go-libp2p-peerstore v0.1.3
	github.com/libp2p/go-libp2p-record v0.1.1
19
	github.com/libp2p/go-libp2p-routing v0.1.0
20
	github.com/libp2p/go-libp2p-swarm v0.2.1
Cole Brown's avatar
Cole Brown committed
21
	github.com/libp2p/go-libp2p-testing v0.1.0
Cole Brown's avatar
Cole Brown committed
22
	github.com/libp2p/go-msgio v0.0.4
Steven Allen's avatar
Steven Allen committed
23
	github.com/mr-tron/base58 v1.1.2
Steven Allen's avatar
Steven Allen committed
24
	github.com/multiformats/go-multiaddr v0.0.4
25
	github.com/multiformats/go-multiaddr-dns v0.0.3
26
	github.com/multiformats/go-multistream v0.1.0
Jakub Sztandera's avatar
Jakub Sztandera committed
27
	github.com/stretchr/testify v1.3.0
Matt Joiner's avatar
Matt Joiner committed
28
	github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc
29
	go.opencensus.io v0.22.1
30
	golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898
Matt Joiner's avatar
Matt Joiner committed
31
)