forked from TRON-US/go-btfs-chunker
-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
35 lines (32 loc) · 1.48 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module github.com/bittorrent/go-btfs-chunker
require (
github.com/bittorrent/go-btfs-files v0.3.0
github.com/ipfs/go-block-format v0.0.2
github.com/ipfs/go-ipfs-util v0.0.1
github.com/ipfs/go-log v0.0.1
github.com/klauspost/reedsolomon v1.9.14
github.com/libp2p/go-buffer-pool v0.0.2
github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f
)
require (
github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3 // indirect
github.com/gogo/protobuf v1.2.1 // indirect
github.com/gxed/hashland/keccakpg v0.0.1 // indirect
github.com/gxed/hashland/murmur3 v0.0.1 // indirect
github.com/ipfs/go-cid v0.0.1 // indirect
github.com/klauspost/cpuid/v2 v2.0.6 // indirect
github.com/mattn/go-colorable v0.1.1 // indirect
github.com/mattn/go-isatty v0.0.5 // indirect
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
github.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16 // indirect
github.com/mr-tron/base58 v1.1.0 // indirect
github.com/multiformats/go-base32 v0.0.3 // indirect
github.com/multiformats/go-multibase v0.0.1 // indirect
github.com/multiformats/go-multihash v0.0.1 // indirect
github.com/opentracing/opentracing-go v1.0.2 // indirect
github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc // indirect
golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67 // indirect
golang.org/x/net v0.0.0-20190227160552-c95aed5357e7 // indirect
golang.org/x/sys v0.0.0-20190302025703-b6889370fb10 // indirect
)
go 1.18