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

require (
Jakub Sztandera's avatar
Jakub Sztandera committed
4
	github.com/gogo/protobuf v1.2.1
5
	github.com/golang/protobuf v1.3.1 // indirect
6
	github.com/hashicorp/golang-lru v0.5.1
Steven Allen's avatar
Steven Allen committed
7 8
	github.com/ipfs/go-cid v0.0.2
	github.com/ipfs/go-datastore v0.0.5
Raúl Kripalani's avatar
Raúl Kripalani committed
9 10 11
	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
Matt Joiner's avatar
Matt Joiner committed
12
	github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
Steven Allen's avatar
Steven Allen committed
13 14 15 16
	github.com/jbenet/goprocess v0.1.3
	github.com/libp2p/go-libp2p v0.0.24
	github.com/libp2p/go-libp2p-crypto v0.0.2
	github.com/libp2p/go-libp2p-host v0.0.3
17
	github.com/libp2p/go-libp2p-kbucket v0.1.1
vyzo's avatar
vyzo committed
18
	github.com/libp2p/go-libp2p-net v0.0.2
Steven Allen's avatar
Steven Allen committed
19 20
	github.com/libp2p/go-libp2p-peer v0.1.1
	github.com/libp2p/go-libp2p-peerstore v0.0.5
Raúl Kripalani's avatar
Raúl Kripalani committed
21 22 23
	github.com/libp2p/go-libp2p-protocol v0.0.1
	github.com/libp2p/go-libp2p-record v0.0.1
	github.com/libp2p/go-libp2p-routing v0.0.1
Steven Allen's avatar
Steven Allen committed
24
	github.com/libp2p/go-libp2p-swarm v0.0.3
Raúl Kripalani's avatar
Raúl Kripalani committed
25
	github.com/libp2p/go-testutil v0.0.1
Steven Allen's avatar
Steven Allen committed
26 27
	github.com/mr-tron/base58 v1.1.2
	github.com/multiformats/go-multiaddr v0.0.2
28
	github.com/multiformats/go-multiaddr-dns v0.0.2
Steven Allen's avatar
Steven Allen committed
29
	github.com/multiformats/go-multistream v0.0.3
Jakub Sztandera's avatar
Jakub Sztandera committed
30
	github.com/stretchr/testify v1.3.0
Matt Joiner's avatar
Matt Joiner committed
31
	github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc
Steven Allen's avatar
Steven Allen committed
32 33
	go.opencensus.io v0.21.0
	golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522
Matt Joiner's avatar
Matt Joiner committed
34
)