go.mod 1.12 KB
Newer Older
1 2 3
module github.com/ipfs/go-bitswap

require (
4
	github.com/cskr/pubsub v1.0.2
5
	github.com/gogo/protobuf v1.3.1
6
	github.com/google/uuid v1.1.1
7
	github.com/ipfs/go-block-format v0.0.2
8
	github.com/ipfs/go-cid v0.0.3
9
	github.com/ipfs/go-datastore v0.1.1
10
	github.com/ipfs/go-detect-race v0.0.1
11
	github.com/ipfs/go-ipfs-blockstore v0.1.0
12 13 14
	github.com/ipfs/go-ipfs-blocksutil v0.0.1
	github.com/ipfs/go-ipfs-delay v0.0.1
	github.com/ipfs/go-ipfs-exchange-interface v0.0.1
Raúl Kripalani's avatar
Raúl Kripalani committed
15
	github.com/ipfs/go-ipfs-routing v0.1.0
16 17 18
	github.com/ipfs/go-ipfs-util v0.0.1
	github.com/ipfs/go-log v0.0.1
	github.com/ipfs/go-metrics-interface v0.0.1
Steven Allen's avatar
Steven Allen committed
19
	github.com/ipfs/go-peertaskqueue v0.1.1
Hector Sanjuan's avatar
Hector Sanjuan committed
20
	github.com/jbenet/goprocess v0.1.3
Steven Allen's avatar
Steven Allen committed
21
	github.com/libp2p/go-buffer-pool v0.0.2
Steven Allen's avatar
Steven Allen committed
22 23
	github.com/libp2p/go-libp2p v0.4.2
	github.com/libp2p/go-libp2p-core v0.2.5
Raúl Kripalani's avatar
Raúl Kripalani committed
24 25
	github.com/libp2p/go-libp2p-loggables v0.1.0
	github.com/libp2p/go-libp2p-netutil v0.1.0
26
	github.com/libp2p/go-libp2p-testing v0.1.1
Steven Allen's avatar
Steven Allen committed
27
	github.com/libp2p/go-msgio v0.0.4
Hector Sanjuan's avatar
Hector Sanjuan committed
28
	github.com/mattn/go-colorable v0.1.2 // indirect
Steven Allen's avatar
Steven Allen committed
29
	github.com/multiformats/go-multiaddr v0.1.2
Hector Sanjuan's avatar
Hector Sanjuan committed
30
	github.com/opentracing/opentracing-go v1.1.0 // indirect
31
)
32 33

go 1.12