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

3
go 1.15
4

Matt Joiner's avatar
Matt Joiner committed
5
require (
Steven Allen's avatar
Steven Allen committed
6 7 8 9
	github.com/gogo/protobuf v1.3.2
	github.com/google/gopacket v1.1.19
	github.com/google/uuid v1.2.0
	github.com/hashicorp/go-multierror v1.1.1
10
	github.com/hashicorp/golang-lru v0.5.4
11
	github.com/ipfs/go-cid v0.0.7
Adin Schmahmann's avatar
Adin Schmahmann committed
12
	github.com/ipfs/go-datastore v0.4.5
13
	github.com/ipfs/go-detect-race v0.0.1
14
	github.com/ipfs/go-ipfs-util v0.0.2
15
	github.com/ipfs/go-ipns v0.0.2
Steven Allen's avatar
Steven Allen committed
16
	github.com/ipfs/go-log v1.0.5
Aarsh Shah's avatar
Aarsh Shah committed
17
	github.com/jbenet/goprocess v0.1.4
18
	github.com/libp2p/go-eventbus v0.2.1
Steven Allen's avatar
Steven Allen committed
19 20
	github.com/libp2p/go-libp2p v0.13.0
	github.com/libp2p/go-libp2p-core v0.8.0
Adin Schmahmann's avatar
Adin Schmahmann committed
21
	github.com/libp2p/go-libp2p-kbucket v0.4.7
Steven Allen's avatar
Steven Allen committed
22
	github.com/libp2p/go-libp2p-peerstore v0.2.7
23
	github.com/libp2p/go-libp2p-record v0.1.3
24
	github.com/libp2p/go-libp2p-routing-helpers v0.2.3
Steven Allen's avatar
Steven Allen committed
25 26
	github.com/libp2p/go-libp2p-swarm v0.4.0
	github.com/libp2p/go-libp2p-testing v0.4.0
27
	github.com/libp2p/go-libp2p-xor v0.0.0-20200501025846-71e284145d58
28
	github.com/libp2p/go-msgio v0.0.6
Steven Allen's avatar
Steven Allen committed
29
	github.com/libp2p/go-netroute v0.1.6
Steven Allen's avatar
Steven Allen committed
30
	github.com/multiformats/go-base32 v0.0.3
Adin Schmahmann's avatar
Adin Schmahmann committed
31
	github.com/multiformats/go-multiaddr v0.3.1
Adin Schmahmann's avatar
Adin Schmahmann committed
32
	github.com/multiformats/go-multibase v0.0.3
Steven Allen's avatar
Steven Allen committed
33
	github.com/multiformats/go-multihash v0.0.15
34
	github.com/multiformats/go-multistream v0.2.0
35
	github.com/stretchr/testify v1.6.1
Adin Schmahmann's avatar
Adin Schmahmann committed
36
	github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1
37
	go.opencensus.io v0.22.4
38
	go.uber.org/zap v1.16.0
Matt Joiner's avatar
Matt Joiner committed
39
)