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

require (
Hector Sanjuan's avatar
Hector Sanjuan committed
4
	github.com/davecgh/go-spew v1.1.1 // indirect
Jakub Sztandera's avatar
Jakub Sztandera committed
5
	github.com/gogo/protobuf v1.2.1
6
	github.com/golang/protobuf v1.3.1 // indirect
7
	github.com/hashicorp/golang-lru v0.5.1
Steven Allen's avatar
Steven Allen committed
8 9
	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
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
Hector Sanjuan's avatar
Hector Sanjuan committed
14
	github.com/libp2p/go-libp2p v0.0.30
Steven Allen's avatar
Steven Allen committed
15 16
	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
	github.com/libp2p/go-libp2p-peer v0.1.1
Steven Allen's avatar
Steven Allen committed
20
	github.com/libp2p/go-libp2p-peerstore v0.0.6
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.6
Hector Sanjuan's avatar
Hector Sanjuan committed
25 26
	github.com/libp2p/go-libp2p-yamux v0.1.3 // indirect
	github.com/libp2p/go-mplex v0.0.4 // indirect
Raúl Kripalani's avatar
Raúl Kripalani committed
27
	github.com/libp2p/go-testutil v0.0.1
Hector Sanjuan's avatar
Hector Sanjuan committed
28 29
	github.com/libp2p/go-yamux v1.2.3 // indirect
	github.com/mattn/go-colorable v0.1.2 // indirect
Steven Allen's avatar
Steven Allen committed
30
	github.com/mr-tron/base58 v1.1.2
Steven Allen's avatar
Steven Allen committed
31
	github.com/multiformats/go-multiaddr v0.0.4
32
	github.com/multiformats/go-multiaddr-dns v0.0.2
Steven Allen's avatar
Steven Allen committed
33
	github.com/multiformats/go-multistream v0.0.4
Jakub Sztandera's avatar
Jakub Sztandera committed
34
	github.com/stretchr/testify v1.3.0
Matt Joiner's avatar
Matt Joiner committed
35
	github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc
Steven Allen's avatar
Steven Allen committed
36
	go.opencensus.io v0.21.0
Hector Sanjuan's avatar
Hector Sanjuan committed
37
	golang.org/x/text v0.3.2 // indirect
Steven Allen's avatar
Steven Allen committed
38
	golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522
Hector Sanjuan's avatar
Hector Sanjuan committed
39
	gopkg.in/yaml.v2 v2.2.2 // indirect
Matt Joiner's avatar
Matt Joiner committed
40
)