Skip to content

Commit da36c36

Browse files
committed
migrate to IPLD org
1 parent f188c0e commit da36c36

File tree

7 files changed

+61
-173
lines changed

7 files changed

+61
-173
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ os:
44
language: go
55

66
go:
7-
- 1.11.x
7+
- 1.12.x
88

99
env:
1010
global:
1111
- GOTFLAGS="-race"
1212
matrix:
13-
- BUILD_DEPTYPE=gx
1413
- BUILD_DEPTYPE=gomod
1514

1615

@@ -24,7 +23,6 @@ script:
2423

2524
cache:
2625
directories:
27-
- $GOPATH/src/gx
2826
- $GOPATH/pkg/mod
2927
- $HOME/.cache/go-build
3028

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
go-car (go!)
22
==================
33

4-
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)
5-
[![](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](http://ipfs.io/)
6-
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
7-
[![Coverage Status](https://codecov.io/gh/ipfs/go-car/branch/master/graph/badge.svg)](https://codecov.io/gh/ipfs/go-car/branch/master)
8-
[![Travis CI](https://travis-ci.org/ipfs/go-car.svg?branch=master)](https://travis-ci.org/ipfs/go-car)
4+
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](https://protocol.ai)
5+
[![](https://img.shields.io/badge/project-ipld-orange.svg?style=flat-square)](https://github.com/ipld/ipld)
6+
[![](https://img.shields.io/badge/freenode-%23ipld-orange.svg?style=flat-square)](https://webchat.freenode.net/?channels=%23ipld)
7+
[![Coverage Status](https://codecov.io/gh/ipld/go-car/branch/master/graph/badge.svg)](https://codecov.io/gh/ipld/go-car/branch/master)
8+
[![Travis CI](https://travis-ci.org/ipld/go-car.svg?branch=master)](https://travis-ci.org/ipld/go-car)
99

1010
> go-car is a simple way of packing a merkledag into a single file
1111

car.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
format "github.com/ipfs/go-ipld-format"
1313
dag "github.com/ipfs/go-merkledag"
1414

15-
util "github.com/ipfs/go-car/util"
15+
util "github.com/ipld/go-car/util"
1616
)
1717

1818
func init() {

car/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"io"
88
"os"
99

10-
"github.com/ipfs/go-car"
10+
"github.com/ipld/go-car"
1111

1212
cli "github.com/urfave/cli"
1313
)

go.mod

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,15 @@
1-
module github.com/ipfs/go-car
1+
module github.com/ipld/go-car
22

33
require (
4-
github.com/fd/go-nat v1.0.0 // indirect
5-
github.com/gxed/pubsub v0.0.0-20180201040156-26ebdf44f824 // indirect
64
github.com/ipfs/go-block-format v0.0.2
75
github.com/ipfs/go-cid v0.0.2
8-
github.com/ipfs/go-ipfs-blockstore v0.0.1
9-
github.com/ipfs/go-ipfs-flags v0.0.1 // indirect
106
github.com/ipfs/go-ipld-cbor v0.0.2
117
github.com/ipfs/go-ipld-format v0.0.2
128
github.com/ipfs/go-merkledag v0.2.4
13-
github.com/ipld/go-ipld-prime v0.0.1
14-
github.com/libp2p/go-conn-security v0.0.1 // indirect
15-
github.com/libp2p/go-libp2p-host v0.0.1 // indirect
16-
github.com/libp2p/go-libp2p-interface-pnet v0.0.1 // indirect
17-
github.com/libp2p/go-libp2p-metrics v0.0.1 // indirect
18-
github.com/libp2p/go-libp2p-routing v0.0.1 // indirect
19-
github.com/libp2p/go-libp2p-transport v0.0.4 // indirect
209
github.com/multiformats/go-multihash v0.0.5
10+
github.com/polydawn/refmt v0.0.0-20190408063855-01bf1e26dd14 // indirect
2111
github.com/urfave/cli v1.20.0
22-
github.com/whyrusleeping/go-smux-multiplex v3.0.16+incompatible // indirect
23-
github.com/whyrusleeping/go-smux-multistream v2.0.2+incompatible // indirect
24-
github.com/whyrusleeping/go-smux-yamux v2.0.8+incompatible // indirect
25-
github.com/whyrusleeping/yamux v1.1.5 // indirect
12+
github.com/warpfork/go-wish v0.0.0-20190328234359-8b3e70f8e830 // indirect
2613
)
2714

2815
go 1.13

go.sum

Lines changed: 50 additions & 99 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)