update go-cid
alternative to #5243 that updates go-cid and all packages that depend on it License: MIT Signed-off-by: Steven Allen <steven@stebalien.com> This commit was moved from ipfs/interface-go-ipfs-core@2c9291a232cb0febaf3bb029694ce2fb3155d3f9 This commit was moved from ipfs/boxo@c77c8df70d4c804e1f3acd068a8ef58937e7ef9e
Steven Allen committed
Jul 16, 2018 at 15:16 UTC
7ffcd2a1be865e92ce369998a9a8147f45ce7e5c
6 files changed
+7
-7
core/coreiface/coreapi.go
+1
-1
@@ -5,7 +5,7 @@ package iface
5
import (
6
"context"
7
8
- ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
8
+ ipld "gx/ipfs/QmZtNq8dArGfnpCZfx2pUNY7UcjGhVp5qqwQ4hH6mpTMRQ/go-ipld-format"
9
)
10
11
// CoreAPI defines an unified interface to IPFS for Go programs
core/coreiface/dag.go
+1
-1
@@ -6,7 +6,7 @@ import (
6
7
options "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
8
9
- ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
9
+ ipld "gx/ipfs/QmZtNq8dArGfnpCZfx2pUNY7UcjGhVp5qqwQ4hH6mpTMRQ/go-ipld-format"
10
)
11
12
// DagAPI specifies the interface to IPLD
core/coreiface/object.go
+2
-2
@@ -6,8 +6,8 @@ import (
6
7
options "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
8
9
- ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
10
- cid "gx/ipfs/QmapdYm1b22Frv3k17fqrBYTFRxwiaVJkB299Mfn33edeB/go-cid"
9
+ cid "gx/ipfs/QmYVNvtQkeZ6AKSwDrjQTs432QtL6umrrK41EBq3cu7iSP/go-cid"
10
+ ipld "gx/ipfs/QmZtNq8dArGfnpCZfx2pUNY7UcjGhVp5qqwQ4hH6mpTMRQ/go-ipld-format"
11
)
12
13
// ObjectStat provides information about dag nodes
core/coreiface/options/dag.go
+1
-1
@@ -3,7 +3,7 @@ package options
3
import (
4
"math"
5
6
- cid "gx/ipfs/QmapdYm1b22Frv3k17fqrBYTFRxwiaVJkB299Mfn33edeB/go-cid"
6
+ cid "gx/ipfs/QmYVNvtQkeZ6AKSwDrjQTs432QtL6umrrK41EBq3cu7iSP/go-cid"
7
)
8
9
type DagPutSettings struct {
core/coreiface/path.go
+1
-1
@@ -1,7 +1,7 @@
1
package iface
2
3
import (
4
- cid "gx/ipfs/QmapdYm1b22Frv3k17fqrBYTFRxwiaVJkB299Mfn33edeB/go-cid"
4
+ cid "gx/ipfs/QmYVNvtQkeZ6AKSwDrjQTs432QtL6umrrK41EBq3cu7iSP/go-cid"
5
)
6
7
// Path is a generic wrapper for paths used in the API. A path can be resolved
core/coreiface/unixfs.go
+1
-1
@@ -4,7 +4,7 @@ import (
4
"context"
5
"io"
6
7
- ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
7
+ ipld "gx/ipfs/QmZtNq8dArGfnpCZfx2pUNY7UcjGhVp5qqwQ4hH6mpTMRQ/go-ipld-format"
8
)
9
10
// UnixfsAPI is the basic interface to immutable files in IPFS