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

Commit

Permalink
Merge pull request #84 from libp2p/chore/update-deps
Browse files Browse the repository at this point in the history
chore(dep): update deps
  • Loading branch information
Stebalien committed Nov 15, 2019
2 parents df66b10 + 245d367 commit bcb9328
Show file tree
Hide file tree
Showing 5 changed files with 117 additions and 19 deletions.
2 changes: 1 addition & 1 deletion conn_test.go
Expand Up @@ -33,7 +33,7 @@ var _ = Describe("Connection", func() {
priv, _, err = ic.GenerateECDSAKeyPair(rand.Reader)
case 1:
fmt.Fprintf(GinkgoWriter, " using an RSA key: ")
priv, _, err = ic.GenerateRSAKeyPair(1024, rand.Reader)
priv, _, err = ic.GenerateRSAKeyPair(2048, rand.Reader)
case 2:
fmt.Fprintf(GinkgoWriter, " using an Ed25519 key: ")
priv, _, err = ic.GenerateEd25519Key(rand.Reader)
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Expand Up @@ -3,15 +3,15 @@ module github.com/libp2p/go-libp2p-quic-transport
go 1.13

require (
github.com/libp2p/go-libp2p-core v0.0.1
github.com/libp2p/go-libp2p-core v0.2.5
github.com/libp2p/go-libp2p-tls v0.1.1
github.com/lucas-clemente/quic-go v0.13.1
github.com/multiformats/go-multiaddr v0.0.4
github.com/multiformats/go-multiaddr-net v0.0.1
github.com/multiformats/go-multiaddr v0.1.2
github.com/multiformats/go-multiaddr-fmt v0.1.0
github.com/multiformats/go-multiaddr-net v0.1.1
github.com/onsi/ginkgo v1.8.0
github.com/onsi/gomega v1.5.0
github.com/vishvananda/netlink v1.0.0
github.com/vishvananda/netns v0.0.0-20190625233234-7109fa855b0f // indirect
github.com/whyrusleeping/mafmt v1.2.8
golang.org/x/sys v0.0.0-20190904154756-749cb33beabd
)

0 comments on commit bcb9328

Please sign in to comment.