This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from ipfs/petar/namefmt
Add ID formatting functions, used by various IPFS cli commands
- Loading branch information
Showing
6 changed files
with
328 additions
and
138 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ os: | |
language: go | ||
|
||
go: | ||
- 1.11.x | ||
- 1.13.x | ||
|
||
env: | ||
global: | ||
|
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,16 +1,17 @@ | ||
module github.com/ipfs/interface-go-ipfs-core | ||
|
||
require ( | ||
github.com/ipfs/go-cid v0.0.3 | ||
github.com/ipfs/go-ipfs-files v0.0.2 | ||
github.com/ipfs/go-ipld-cbor v0.0.1 | ||
github.com/ipfs/go-ipld-format v0.0.1 | ||
github.com/ipfs/go-merkledag v0.0.3 | ||
github.com/ipfs/go-path v0.0.3 | ||
github.com/ipfs/go-unixfs v0.0.4 | ||
github.com/libp2p/go-libp2p-core v0.2.2 | ||
github.com/multiformats/go-multiaddr v0.0.4 | ||
github.com/multiformats/go-multihash v0.0.7 | ||
github.com/ipfs/go-cid v0.0.6 | ||
github.com/ipfs/go-ipfs-files v0.0.8 | ||
github.com/ipfs/go-ipld-cbor v0.0.4 | ||
github.com/ipfs/go-ipld-format v0.2.0 | ||
github.com/ipfs/go-merkledag v0.3.2 | ||
github.com/ipfs/go-path v0.0.7 | ||
github.com/ipfs/go-unixfs v0.2.4 | ||
github.com/libp2p/go-libp2p-core v0.6.0 | ||
github.com/multiformats/go-multiaddr v0.2.2 | ||
github.com/multiformats/go-multibase v0.0.3 | ||
github.com/multiformats/go-multihash v0.0.13 | ||
) | ||
|
||
go 1.12 | ||
go 1.13 |
Oops, something went wrong.