Skip to content
Snippets Groups Projects
Unverified Commit 7eaa2f69 authored by Wolfgang Welz's avatar Wolfgang Welz Committed by GitHub
Browse files

upgrade dependencies (#529)

parent 77814218
No related branches found
No related tags found
No related merge requests found
......@@ -4,38 +4,36 @@ go 1.14
require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/coreos/bbolt v1.3.3 // indirect
github.com/dgraph-io/badger/v2 v2.0.2
github.com/dgraph-io/badger/v2 v2.0.3
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/drand/drand v0.8.1
github.com/drand/kyber v1.0.1-0.20200331114745-30e90cc60f99
github.com/gin-gonic/gin v1.6.3
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/gobuffalo/packr/v2 v2.7.1
github.com/golang/protobuf v1.3.5
github.com/google/go-cmp v0.4.1 // indirect
github.com/gorilla/websocket v1.4.1
github.com/iotaledger/hive.go v0.0.0-20200622124037-5a9f13a997d1
github.com/iotaledger/iota.go v1.0.0-beta.14
github.com/gobuffalo/packr/v2 v2.8.0
github.com/golang/protobuf v1.4.2
github.com/gorilla/websocket v1.4.2
github.com/iotaledger/hive.go v0.0.0-20200622211038-2db5f8e0532d
github.com/iotaledger/iota.go v1.0.0-beta.15
github.com/labstack/echo v3.3.10+incompatible
github.com/labstack/gommon v0.3.0
github.com/magiconair/properties v1.8.1
github.com/mr-tron/base58 v1.1.3
github.com/panjf2000/ants/v2 v2.2.2
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.5.1
github.com/mr-tron/base58 v1.2.0
github.com/panjf2000/ants/v2 v2.4.1
github.com/prometheus/client_golang v1.7.0
github.com/shirou/gopsutil v2.20.5+incompatible
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.2
github.com/spf13/viper v1.7.0
github.com/stretchr/testify v1.6.1
github.com/valyala/fasttemplate v1.1.0 // indirect
go.dedis.ch/kyber/v3 v3.0.12
go.mongodb.org/mongo-driver v1.3.4
go.uber.org/atomic v1.6.0
go.uber.org/zap v1.14.0
golang.org/x/crypto v0.0.0-20200429183012-4b2356b1ed79
go.uber.org/zap v1.15.0
golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 // indirect
golang.org/x/tools v0.0.0-20200330040139-fa3cc9eebcfe // indirect
google.golang.org/grpc v1.28.1
google.golang.org/grpc v1.30.0
google.golang.org/grpc/examples v0.0.0-20200617041141-9a465503579e // indirect
gopkg.in/src-d/go-git.v4 v4.13.1
)
This diff is collapsed.
......@@ -3,7 +3,9 @@ package client
import (
"github.com/iotaledger/iota.go/address"
"github.com/iotaledger/iota.go/consts"
"github.com/iotaledger/iota.go/kerl"
"github.com/iotaledger/iota.go/signing"
"github.com/iotaledger/iota.go/signing/key"
"github.com/iotaledger/iota.go/trinary"
)
......@@ -27,7 +29,7 @@ func (seed *Seed) GetAddress(index uint64) *Address {
panic(err)
}
privateKey, err := signing.Key(seed.GetSubSeed(index), seed.securityLevel)
privateKey, err := key.Sponge(seed.GetSubSeed(index), seed.securityLevel, kerl.NewKerl())
if err != nil {
panic(err)
}
......
package sync
import (
"errors"
"sync"
"time"
......@@ -17,7 +18,6 @@ import (
"github.com/iotaledger/hive.go/logger"
"github.com/iotaledger/hive.go/node"
"github.com/iotaledger/hive.go/types"
"github.com/pkg/errors"
flag "github.com/spf13/pflag"
"go.uber.org/atomic"
)
......
......@@ -8,10 +8,10 @@ require (
github.com/docker/docker v1.13.1
github.com/docker/go-connections v0.4.0
github.com/docker/go-units v0.4.0 // indirect
github.com/drand/drand v0.8.1
github.com/drand/drand v0.9.1
github.com/iotaledger/goshimmer v0.1.3
github.com/iotaledger/hive.go v0.0.0-20200622124037-5a9f13a997d1
github.com/mr-tron/base58 v1.1.3
github.com/iotaledger/hive.go v0.0.0-20200622211038-2db5f8e0532d
github.com/mr-tron/base58 v1.2.0
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/stretchr/testify v1.6.1
)
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment