Skip to content

Commit 795beb9

Browse files
authored
Support unixfs reification in default linksystem (#329)
* feat(storeutil): add unixfs to known reifiers N * feat(impl): add test of unixfs adl fetch * style(lint): fix static check * feat(impl): use utility selector * fix(unixfsnode): update to tagged versions
1 parent 411a568 commit 795beb9

File tree

5 files changed

+188
-72
lines changed

5 files changed

+188
-72
lines changed

go.mod

+7-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ module github.com/ipfs/go-graphsync
33
go 1.16
44

55
require (
6+
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
67
github.com/hannahhoward/cbor-gen-for v0.0.0-20200817222906-ea96cece81f1
78
github.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e
89
github.com/ipfs/go-block-format v0.0.3
910
github.com/ipfs/go-blockservice v0.2.1
10-
github.com/ipfs/go-cid v0.0.7
11+
github.com/ipfs/go-cid v0.1.0
1112
github.com/ipfs/go-datastore v0.5.0
1213
github.com/ipfs/go-ds-badger v0.3.0
13-
github.com/ipfs/go-ipfs-blockstore v0.2.1
14+
github.com/ipfs/go-ipfs-blockstore v1.1.2
1415
github.com/ipfs/go-ipfs-blocksutil v0.0.1
1516
github.com/ipfs/go-ipfs-chunker v0.0.5
1617
github.com/ipfs/go-ipfs-delay v0.0.1
@@ -23,9 +24,10 @@ require (
2324
github.com/ipfs/go-log/v2 v2.3.0
2425
github.com/ipfs/go-merkledag v0.5.1
2526
github.com/ipfs/go-peertaskqueue v0.7.1
26-
github.com/ipfs/go-unixfs v0.2.4
27+
github.com/ipfs/go-unixfs v0.3.1
28+
github.com/ipfs/go-unixfsnode v1.2.0
2729
github.com/ipld/go-codec-dagpb v1.3.0
28-
github.com/ipld/go-ipld-prime v0.14.3
30+
github.com/ipld/go-ipld-prime v0.14.4
2931
github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c
3032
github.com/libp2p/go-buffer-pool v0.0.2
3133
github.com/libp2p/go-libp2p v0.16.0
@@ -35,6 +37,7 @@ require (
3537
github.com/libp2p/go-msgio v0.1.0
3638
github.com/multiformats/go-multiaddr v0.4.0
3739
github.com/multiformats/go-multihash v0.1.0
40+
github.com/smartystreets/assertions v1.0.0 // indirect
3841
github.com/stretchr/testify v1.7.0
3942
github.com/whyrusleeping/cbor-gen v0.0.0-20210219115102-f37d292932f2
4043
go.opentelemetry.io/otel v1.2.0

0 commit comments

Comments
 (0)