Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
chore(dep): update deps
Browse files Browse the repository at this point in the history
* update go-libp2p-core and fix tests for new minimum key size. This slows down
the test but terribly.
* switch to go-multiaddr-fmt
* update the datastore
* update gogo/protobuf
  • Loading branch information
Stebalien committed Oct 28, 2019
1 parent f4c9af1 commit 334bc6f
Show file tree
Hide file tree
Showing 6 changed files with 233 additions and 163 deletions.
2 changes: 1 addition & 1 deletion addr/sorting.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bytes"

ma "github.com/multiformats/go-multiaddr"
mafmt "github.com/multiformats/go-multiaddr-fmt"
manet "github.com/multiformats/go-multiaddr-net"
mafmt "github.com/whyrusleeping/mafmt"
)

func isFDCostlyTransport(a ma.Multiaddr) bool {
Expand Down
22 changes: 12 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
module github.com/libp2p/go-libp2p-peerstore

require (
github.com/gogo/protobuf v1.2.1
github.com/gogo/protobuf v1.3.1
github.com/hashicorp/golang-lru v0.5.1
github.com/ipfs/go-datastore v0.0.1
github.com/ipfs/go-ds-badger v0.0.5
github.com/ipfs/go-ds-leveldb v0.0.1
github.com/ipfs/go-datastore v0.1.1
github.com/ipfs/go-ds-badger v0.0.7
github.com/ipfs/go-ds-leveldb v0.1.0
github.com/ipfs/go-log v0.0.1
github.com/libp2p/go-buffer-pool v0.0.1
github.com/libp2p/go-libp2p-core v0.0.4
github.com/libp2p/go-buffer-pool v0.0.2
github.com/libp2p/go-libp2p-core v0.2.4
github.com/multiformats/go-base32 v0.0.3
github.com/multiformats/go-multiaddr v0.0.4
github.com/multiformats/go-multiaddr-net v0.0.1
github.com/multiformats/go-multihash v0.0.5
github.com/multiformats/go-multiaddr v0.1.1
github.com/multiformats/go-multiaddr-fmt v0.1.0
github.com/multiformats/go-multiaddr-net v0.1.1
github.com/multiformats/go-multihash v0.0.8
github.com/pkg/errors v0.8.1
github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1
github.com/whyrusleeping/mafmt v1.2.8
)

go 1.13
Loading

0 comments on commit 334bc6f

Please sign in to comment.