97d1a99f58
- Update dependencies - Update README (configuration: flags section) - Add gRPC logger and flag to enable gRPC connection debugging - Refactored settings (add flags, use defaults instead of yaml representation)
17 lines
436 B
Modula-2
17 lines
436 B
Modula-2
module github.com/nspcc-dev/neofs-gw
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/labstack/echo/v4 v4.1.11
|
|
github.com/nspcc-dev/neofs-crypto v0.2.2
|
|
github.com/nspcc-dev/neofs-proto v0.2.5
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.6.1
|
|
go.uber.org/zap v1.13.0
|
|
google.golang.org/grpc v1.25.1
|
|
)
|
|
|
|
// Temporary, before we move repo to github:
|
|
// replace github.com/nspcc-dev/neofs-proto => ../neofs-proto
|