forked from TrueCloudLab/frostfs-http-gw
2b7e4a36fb
Core changes: - `object.ID` moved to new package `oid`; - `object.Address` moved to new package `address`; - `pool.Object` interface changes. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
34 lines
1.4 KiB
Modula-2
34 lines
1.4 KiB
Modula-2
module github.com/nspcc-dev/neofs-http-gw
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.3 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
|
|
github.com/fasthttp/router v1.4.1
|
|
github.com/golang/mock v1.6.0 // indirect
|
|
github.com/gorilla/mux v1.8.0 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
|
|
github.com/klauspost/compress v1.13.1 // indirect
|
|
github.com/nspcc-dev/neo-go v0.98.0
|
|
github.com/nspcc-dev/neofs-api-go/v2 v2.11.2-0.20220127135316-32dd0bb3f9c5
|
|
github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.1.0.20220221122137-66bc59da5c02
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/prometheus/common v0.29.0
|
|
github.com/prometheus/procfs v0.7.1 // indirect
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.8.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
|
|
github.com/testcontainers/testcontainers-go v0.12.0
|
|
github.com/valyala/fasthttp v1.28.0
|
|
go.uber.org/multierr v1.7.0 // indirect
|
|
go.uber.org/zap v1.18.1
|
|
golang.org/x/crypto v0.0.0-20220209155544-dad33157f4bf // indirect
|
|
golang.org/x/sys v0.0.0-20220207234003-57398862261d // indirect
|
|
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
|
|
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
|
|
golang.org/x/tools v0.1.5 // indirect
|
|
google.golang.org/grpc v1.41.0
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
)
|