Skip to content

Commit 6205908

Browse files
authored
Merge pull request #9 from filecoin-project/feat/nonffi-gencid
Feat/nonffi gencid
2 parents 7077eac + 4c8301c commit 6205908

File tree

6 files changed

+544
-26
lines changed

6 files changed

+544
-26
lines changed

go.mod

Lines changed: 47 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,57 @@
11
module github.com/filecoin-project/go-commp-utils
22

3-
go 1.15
3+
go 1.17
44

55
require (
66
github.com/filecoin-project/filecoin-ffi v0.30.4-0.20200910194244-f640612a1a1f
7-
github.com/filecoin-project/go-fil-commcid v0.0.0-20201016201715-d41df56b4f6a
8-
github.com/filecoin-project/go-padreader v0.0.0-20200903213702-ed5fae088b20
9-
github.com/filecoin-project/go-state-types v0.0.0-20201102161440-c8033295a1fc
10-
github.com/ipfs/go-cid v0.0.7
7+
github.com/filecoin-project/go-fil-commcid v0.1.0
8+
github.com/filecoin-project/go-padreader v0.0.1
9+
github.com/filecoin-project/go-state-types v0.1.10
10+
github.com/ipfs/go-cid v0.2.0
1111
github.com/ipfs/go-log/v2 v2.1.2-0.20200626104915-0016c0b4b3e4
12-
github.com/stretchr/testify v1.6.1
12+
github.com/stretchr/testify v1.7.0
1313
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
1414
)
1515

16+
require (
17+
github.com/davecgh/go-spew v1.1.1 // indirect
18+
github.com/filecoin-project/go-address v0.0.5 // indirect
19+
github.com/filecoin-project/specs-actors v0.9.4 // indirect
20+
github.com/ipfs/go-block-format v0.0.3 // indirect
21+
github.com/ipfs/go-ipfs-util v0.0.2 // indirect
22+
github.com/ipfs/go-ipld-cbor v0.0.6-0.20211211231443-5d9b9e1f6fa8 // indirect
23+
github.com/ipfs/go-ipld-format v0.0.2 // indirect
24+
github.com/klauspost/cpuid/v2 v2.0.4 // indirect
25+
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
26+
github.com/minio/sha256-simd v1.0.0 // indirect
27+
github.com/mr-tron/base58 v1.2.0 // indirect
28+
github.com/multiformats/go-base32 v0.0.3 // indirect
29+
github.com/multiformats/go-base36 v0.1.0 // indirect
30+
github.com/multiformats/go-multibase v0.0.3 // indirect
31+
github.com/multiformats/go-multihash v0.0.15 // indirect
32+
github.com/multiformats/go-varint v0.0.6 // indirect
33+
github.com/pkg/errors v0.9.1 // indirect
34+
github.com/pmezard/go-difflib v1.0.0 // indirect
35+
github.com/polydawn/refmt v0.0.0-20190809202753-05966cbd336a // indirect
36+
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
37+
github.com/tj/go-spin v1.1.0 // indirect
38+
github.com/whyrusleeping/cbor-gen v0.0.0-20210118024343-169e9d70c0c2 // indirect
39+
github.com/xlab/c-for-go v0.0.0-20201112171043-ea6dce5809cb // indirect
40+
github.com/xlab/pkgconfig v0.0.0-20170226114623-cea12a0fd245 // indirect
41+
go.uber.org/atomic v1.6.0 // indirect
42+
go.uber.org/multierr v1.5.0 // indirect
43+
go.uber.org/zap v1.14.1 // indirect
44+
golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf // indirect
45+
golang.org/x/mod v0.3.0 // indirect
46+
golang.org/x/sys v0.0.0-20210309074719-68d13333faf2 // indirect
47+
golang.org/x/tools v0.0.0-20201112185108-eeaa07dd7696 // indirect
48+
gopkg.in/yaml.v2 v2.3.0 // indirect
49+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
50+
modernc.org/cc v1.0.0 // indirect
51+
modernc.org/golex v1.0.1 // indirect
52+
modernc.org/mathutil v1.1.1 // indirect
53+
modernc.org/strutil v1.1.0 // indirect
54+
modernc.org/xc v1.0.0 // indirect
55+
)
56+
1657
replace github.com/filecoin-project/filecoin-ffi => ./extern/filecoin-ffi

0 commit comments

Comments
 (0)