go.mod 1.35 KB
Newer Older
1
module gitlab.dms3.io/p2p/go-p2p-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
Aarsh Shah's avatar
Aarsh Shah committed
11
	github.com/jbenet/goprocess v0.1.4
Steven Allen's avatar
Steven Allen committed
12
	github.com/multiformats/go-base32 v0.0.3
Adin Schmahmann's avatar
Adin Schmahmann committed
13
	github.com/multiformats/go-multibase v0.0.3
Steven Allen's avatar
Steven Allen committed
14
	github.com/multiformats/go-multihash v0.0.15
15 16
	github.com/multiformats/go-multistream v0.2.1
	github.com/stretchr/testify v1.7.0
Adin Schmahmann's avatar
Adin Schmahmann committed
17
	github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1
18
	gitlab.dms3.io/dms3/go-cid v0.0.6
19 20 21
	gitlab.dms3.io/dms3/go-datastore v0.0.2
	gitlab.dms3.io/dms3/go-detect-race v0.0.3
	gitlab.dms3.io/dms3/go-dms3-util v0.0.2
22
	gitlab.dms3.io/dms3/go-dms3ns v0.0.3
23
	gitlab.dms3.io/dms3/go-log v0.0.2
24 25
	gitlab.dms3.io/mf/go-multiaddr v0.0.3
	gitlab.dms3.io/p2p/go-eventbus v0.0.3
26 27
	gitlab.dms3.io/p2p/go-msgio v0.0.1
	gitlab.dms3.io/p2p/go-netroute v0.0.1
28 29 30 31 32 33 34 35 36
	gitlab.dms3.io/p2p/go-p2p v0.0.5
	gitlab.dms3.io/p2p/go-p2p-core v0.0.3
	gitlab.dms3.io/p2p/go-p2p-kbucket v0.0.3
	gitlab.dms3.io/p2p/go-p2p-peerstore v0.0.3
	gitlab.dms3.io/p2p/go-p2p-record v0.0.3
	gitlab.dms3.io/p2p/go-p2p-routing-helpers v0.0.3
	gitlab.dms3.io/p2p/go-p2p-swarm v0.0.3
	gitlab.dms3.io/p2p/go-p2p-testing v0.0.4
	gitlab.dms3.io/p2p/go-p2p-xor v0.0.3
37
	go.opencensus.io v0.22.4
38
	go.uber.org/zap v1.16.0
Matt Joiner's avatar
Matt Joiner committed
39
)