-
- Downloads
Extend remote log message (#260)
* Bump up Logstash and ElasticSearch memory #251 * Add version and if available GIT information to remote log message #251
... | @@ -3,7 +3,6 @@ module github.com/iotaledger/goshimmer | ... | @@ -3,7 +3,6 @@ module github.com/iotaledger/goshimmer |
go 1.13 | go 1.13 | ||
require ( | require ( | ||
cloud.google.com/go v0.36.0 // indirect | |||
github.com/dgraph-io/badger/v2 v2.0.1 | github.com/dgraph-io/badger/v2 v2.0.1 | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible | github.com/dgrijalva/jwt-go v3.2.0+incompatible | ||
github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b // indirect | github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b // indirect | ||
... | @@ -16,6 +15,8 @@ require ( | ... | @@ -16,6 +15,8 @@ require ( |
github.com/gorilla/websocket v1.4.1 | github.com/gorilla/websocket v1.4.1 | ||
github.com/iotaledger/hive.go v0.0.0-20200212114128-1460dba4a6b0 | github.com/iotaledger/hive.go v0.0.0-20200212114128-1460dba4a6b0 | ||
github.com/iotaledger/iota.go v1.0.0-beta.14 | github.com/iotaledger/iota.go v1.0.0-beta.14 | ||
github.com/kr/pretty v0.2.0 // indirect | |||
github.com/kr/text v0.2.0 // indirect | |||
github.com/labstack/echo v3.3.10+incompatible | github.com/labstack/echo v3.3.10+incompatible | ||
github.com/labstack/gommon v0.3.0 // indirect | github.com/labstack/gommon v0.3.0 // indirect | ||
github.com/magiconair/properties v1.8.1 | github.com/magiconair/properties v1.8.1 | ||
... | @@ -27,22 +28,21 @@ require ( | ... | @@ -27,22 +28,21 @@ require ( |
github.com/pelletier/go-toml v1.6.0 // indirect | github.com/pelletier/go-toml v1.6.0 // indirect | ||
github.com/pkg/errors v0.9.1 | github.com/pkg/errors v0.9.1 | ||
github.com/rogpeppe/go-internal v1.5.2 // indirect | github.com/rogpeppe/go-internal v1.5.2 // indirect | ||
github.com/sergi/go-diff v1.1.0 // indirect | |||
github.com/spf13/afero v1.2.2 // indirect | github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 | github.com/spf13/pflag v1.0.5 | ||
github.com/spf13/viper v1.6.1 | github.com/spf13/viper v1.6.1 | ||
github.com/stretchr/objx v0.2.0 // indirect | |||
github.com/stretchr/testify v1.4.0 | github.com/stretchr/testify v1.4.0 | ||
github.com/valyala/fasttemplate v1.1.0 // indirect | github.com/valyala/fasttemplate v1.1.0 // indirect | ||
go.uber.org/atomic v1.5.1 | go.uber.org/atomic v1.5.1 | ||
go.uber.org/zap v1.13.0 | go.uber.org/zap v1.13.0 | ||
golang.org/x/crypto v0.0.0-20200128174031-69ecbb4d6d5d | golang.org/x/crypto v0.0.0-20200214034016-1d94cc7ab1c6 | ||
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 | golang.org/x/net v0.0.0-20200202094626-16171245cfb2 | ||
golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9 // indirect | golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4 // indirect | ||
golang.org/x/text v0.3.2 // indirect | |||
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7 // indirect | golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7 // indirect | ||
google.golang.org/appengine v1.4.0 // indirect | |||
gopkg.in/ini.v1 v1.51.1 // indirect | gopkg.in/ini.v1 v1.51.1 // indirect | ||
gopkg.in/src-d/go-git.v4 v4.13.1 | |||
gopkg.in/yaml.v2 v2.2.7 // indirect | gopkg.in/yaml.v2 v2.2.7 // indirect | ||
) | ) |
Please register or sign in to comment