go.mod 1.53 KB
Newer Older
tavit ohanian's avatar
tavit ohanian committed
1
module gitlab.dms3.io/p2p/go-p2p
2

tavit ohanian's avatar
tavit ohanian committed
3
go 1.15
4

5
require (
tavit ohanian's avatar
tavit ohanian committed
6
	github.com/gogo/protobuf v1.3.2
7
	github.com/jbenet/go-cienv v0.1.0
8
	github.com/jbenet/goprocess v0.1.4
9
	github.com/multiformats/go-multistream v0.2.1
tavit ohanian's avatar
tavit ohanian committed
10
	github.com/stretchr/testify v1.7.0
Steven Allen's avatar
Steven Allen committed
11
	github.com/whyrusleeping/mdns v0.0.0-20190826153040-b9b60ed33aa9
12
	gitlab.dms3.io/dms3/go-cid v0.0.6
13 14 15 16
	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
	gitlab.dms3.io/dms3/go-log v0.0.2
17 18 19 20
	gitlab.dms3.io/mf/go-multiaddr v0.0.3
	gitlab.dms3.io/mf/go-multiaddr-dns v0.0.2
	gitlab.dms3.io/p2p/go-conn-security-multistream v0.0.3
	gitlab.dms3.io/p2p/go-eventbus v0.0.3
tavit ohanian's avatar
tavit ohanian committed
21 22
	gitlab.dms3.io/p2p/go-msgio v0.0.1
	gitlab.dms3.io/p2p/go-netroute v0.0.1
23 24 25 26 27 28 29
	gitlab.dms3.io/p2p/go-p2p-addrutil v0.0.4
	gitlab.dms3.io/p2p/go-p2p-autonat v0.0.3
	gitlab.dms3.io/p2p/go-p2p-blankhost v0.0.3
	gitlab.dms3.io/p2p/go-p2p-circuit v0.0.3
	gitlab.dms3.io/p2p/go-p2p-core v0.0.3
	gitlab.dms3.io/p2p/go-p2p-discovery v0.0.3
	gitlab.dms3.io/p2p/go-p2p-mplex v0.0.3
30
	gitlab.dms3.io/p2p/go-p2p-nat v0.0.2
31 32 33 34 35 36 37 38 39 40 41
	gitlab.dms3.io/p2p/go-p2p-netutil v0.0.3
	gitlab.dms3.io/p2p/go-p2p-noise v0.0.3
	gitlab.dms3.io/p2p/go-p2p-peerstore 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-tls v0.0.3
	gitlab.dms3.io/p2p/go-p2p-transport-upgrader v0.0.3
	gitlab.dms3.io/p2p/go-p2p-yamux v0.0.4
	gitlab.dms3.io/p2p/go-stream-muxer-multistream v0.0.3
	gitlab.dms3.io/p2p/go-tcp-transport v0.0.3
	gitlab.dms3.io/p2p/go-ws-transport v0.0.3
42
)