From cf0f9ce5f6d3123ff9f6f9604ff94ff9749f3c7d Mon Sep 17 00:00:00 2001 From: Evgeniy Kulikov Date: Fri, 28 Feb 2020 20:11:20 +0300 Subject: [PATCH] fixes for dev version of go.mod --- go_dev.mod | 47 ++++++++++++++++++++++------------------------- 1 file changed, 22 insertions(+), 25 deletions(-) diff --git a/go_dev.mod b/go_dev.mod index 928773e..aaf657b 100644 --- a/go_dev.mod +++ b/go_dev.mod @@ -1,29 +1,26 @@ module github.com/nspcc-dev/neofs-gw - go 1.13 +go 1.13 - require ( - github.com/fasthttp/router v0.6.1 - github.com/nspcc-dev/neofs-api v0.0.0-00000000000000-000000000000 - github.com/nspcc-dev/neofs-crypto v0.2.3 - github.com/prometheus/client_golang v1.4.1 // v1.2.1 => v1.4.1 - github.com/prometheus/common v0.9.1 - github.com/spf13/pflag v1.0.5 - github.com/spf13/viper v1.6.2 // v1.6.1 => v1.6.2 - github.com/valyala/fasthttp v1.9.0 - go.uber.org/atomic v1.6.0 - go.uber.org/zap v1.14.0 - golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876 // indirect - golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect - golang.org/x/text v0.3.2 // indirect - google.golang.org/grpc v1.27.1 - ) +require ( + github.com/fasthttp/router v0.6.1 + github.com/nspcc-dev/neofs-api v0.0.0-00000000000000-000000000000 + github.com/nspcc-dev/neofs-crypto v0.2.3 + github.com/prometheus/client_golang v1.4.1 // v1.2.1 => v1.4.1 + github.com/prometheus/common v0.9.1 + github.com/spf13/pflag v1.0.5 + github.com/spf13/viper v1.6.2 // v1.6.1 => v1.6.2 + github.com/valyala/fasthttp v1.9.0 + go.uber.org/atomic v1.6.0 + go.uber.org/zap v1.14.0 + golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876 // indirect + golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect + golang.org/x/text v0.3.2 // indirect + google.golang.org/grpc v1.27.1 +) - // Temporary, before we move repo to github: - // replace github.com/nspcc-dev/neofs-proto => ../neofs-proto - - // For debug reasons - replace ( - github.com/nspcc-dev/neofs-api => ../neofs-api - google.golang.org/grpc => ../grpc-go - ) +// For debug reasons +replace ( + github.com/nspcc-dev/neofs-api => ../neofs-api + google.golang.org/grpc => ../grpc-go +)