Skip to content

Commit a45e38f

Browse files
authored
Merge pull request #64 from ZenGround0/fix/correct-mod-path
Update go.mod and go mod tidy
2 parents af91907 + b50ffbc commit a45e38f

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
go-hamt-ipld
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://libp2p.io/)
6-
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
7-
[![Travis CI](https://travis-ci.org/ipfs/go-hamt-ipld.svg?branch=master)](https://travis-ci.org/ipfs/go-hamt-ipld)
4+
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](https://protocol.ai/)
5+
[![Travis CI](https://travis-ci.org/filecoin-project/go-hamt-ipld.svg?branch=master)](https://travis-ci.org/filecoin-project/go-hamt-ipld)
86

97
**This package is a reference implementation of the IPLD HAMT used in the
108
Filecoin blockchain.** It includes some optional flexibility such that it may
@@ -20,7 +18,7 @@ set of keys and their values, a HAMT using the same parameters and CHAMP
2018
semantics, the root node should always produce the same content identifier
2119
(CID).
2220

23-
**See https://godoc.org/github.com/ipfs/go-hamt-ipld for more information and
21+
**See https://godoc.org/github.com/filecoin-project/go-hamt-ipld for more information and
2422
API details.**
2523

2624
## License

gen/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
cbg "github.com/whyrusleeping/cbor-gen"
55

6-
hamt "github.com/ipfs/go-hamt-ipld"
6+
hamt "github.com/filecoin-project/go-hamt-ipld"
77
)
88

99
func main() {

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/ipfs/go-hamt-ipld
1+
module github.com/filecoin-project/go-hamt-ipld
22

33
require (
44
github.com/ipfs/go-block-format v0.0.2
@@ -7,7 +7,6 @@ require (
77
github.com/ipfs/go-ipld-format v0.0.2 // indirect
88
github.com/spaolacci/murmur3 v1.1.0
99
github.com/whyrusleeping/cbor-gen v0.0.0-20200806213330-63aa96ca5488
10-
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect
1110
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
1211
)
1312

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ golang.org/x/sys v0.0.0-20190219092855-153ac476189d h1:Z0Ahzd7HltpJtjAHHxX8QFP3j
7777
golang.org/x/sys v0.0.0-20190219092855-153ac476189d/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
7878
golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5/tI9ujCIVX+P5KiHuI=
7979
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
80-
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb h1:fgwFCsaw9buMuxNd6+DQfAuSFqbNiQZpcgJQAgJsK6k=
81-
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
8280
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
8381
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
8482
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=

0 commit comments

Comments
 (0)