forked from ipfs/go-ipld-cbor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
172 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,44 @@ | ||
module github.com/ipfs/go-ipld-cbor | ||
|
||
require ( | ||
github.com/ipfs/go-block-format v0.0.2 | ||
github.com/ipfs/go-cid v0.0.3 | ||
github.com/ipfs/go-ipfs-util v0.0.1 | ||
github.com/ipfs/go-ipld-format v0.0.1 | ||
github.com/multiformats/go-multihash v0.0.10 | ||
github.com/polydawn/refmt v0.0.0-20190221155625-df39d6c2d992 | ||
github.com/whyrusleeping/cbor-gen v0.0.0-20200123233031-1cdf64d27158 | ||
github.com/ipfs/boxo v0.13.1 | ||
github.com/ipfs/go-block-format v0.1.2 | ||
github.com/ipfs/go-cid v0.4.1 | ||
github.com/ipfs/go-datastore v0.6.0 | ||
github.com/ipfs/go-ipfs-util v0.0.2 | ||
github.com/ipfs/go-ipld-format v0.5.0 | ||
github.com/multiformats/go-multihash v0.2.3 | ||
github.com/polydawn/refmt v0.89.0 | ||
github.com/whyrusleeping/cbor-gen v0.0.0-20230126041949-52956bd4c9aa | ||
) | ||
|
||
require ( | ||
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect | ||
github.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771 // indirect | ||
github.com/mr-tron/base58 v1.1.2 // indirect | ||
github.com/multiformats/go-base32 v0.0.3 // indirect | ||
github.com/multiformats/go-multibase v0.0.1 // indirect | ||
github.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/hashicorp/golang-lru/v2 v2.0.5 // indirect | ||
github.com/ipfs/bbloom v0.0.4 // indirect | ||
github.com/ipfs/go-detect-race v0.0.1 // indirect | ||
github.com/ipfs/go-log/v2 v2.5.1 // indirect | ||
github.com/ipfs/go-metrics-interface v0.0.1 // indirect | ||
github.com/jbenet/goprocess v0.1.4 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.5 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/minio/sha256-simd v1.0.1 // indirect | ||
github.com/mr-tron/base58 v1.2.0 // indirect | ||
github.com/multiformats/go-base32 v0.1.0 // indirect | ||
github.com/multiformats/go-base36 v0.2.0 // indirect | ||
github.com/multiformats/go-multibase v0.2.0 // indirect | ||
github.com/multiformats/go-varint v0.0.7 // indirect | ||
github.com/spaolacci/murmur3 v1.1.0 // indirect | ||
github.com/warpfork/go-wish v0.0.0-20180510122957-5ad1f5abf436 // indirect | ||
golang.org/x/crypto v0.1.0 // indirect | ||
golang.org/x/sys v0.1.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.25.0 // indirect | ||
golang.org/x/crypto v0.12.0 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect | ||
lukechampine.com/blake3 v1.2.1 // indirect | ||
) | ||
|
||
go 1.19 | ||
|
||
replace github.com/ipfs/go-datastore => github.com/vulcanize/go-datastore v0.6.1-internal-0.0.1 | ||
|
||
replace github.com/ipfs/boxo => github.com/vulcanize/boxo v0.13.2-internal-0.0.1 |
Oops, something went wrong.