8d028100e9
``` // Before BenchmarkSignRequestHeader-8 146 8070375 ns/op 4210607 B/op 48 allocs/op BenchmarkVerifyRequestHeader-8 14 83058325 ns/op 42085955 B/op 1601 allocs/op // After BenchmarkSignRequestHeader-8 156 7709172 ns/op 33902 B/op 45 allocs/op BenchmarkVerifyRequestHeader-8 15 76910232 ns/op 54368 B/op 1563 allocs/op // Summary: benchmark old ns/op new ns/op delta BenchmarkSignRequestHeader-8 8070375 7709172 -4.48% BenchmarkVerifyRequestHeader-8 83058325 76910232 -7.40% benchmark old allocs new allocs delta BenchmarkSignRequestHeader-8 48 45 -6.25% BenchmarkVerifyRequestHeader-8 1601 1563 -2.37% benchmark old bytes new bytes delta BenchmarkSignRequestHeader-8 4210607 33902 -99.19% BenchmarkVerifyRequestHeader-8 42085955 54368 -99.87% ```
23 lines
700 B
Modula-2
23 lines
700 B
Modula-2
module github.com/nspcc-dev/neofs-proto
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/gogo/protobuf v1.3.1
|
|
github.com/golang/protobuf v1.3.2
|
|
github.com/google/uuid v1.1.1
|
|
github.com/mr-tron/base58 v1.1.3
|
|
github.com/nspcc-dev/neofs-crypto v0.2.2
|
|
github.com/nspcc-dev/netmap v1.6.1
|
|
github.com/nspcc-dev/tzhash v1.3.0
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/prometheus/client_golang v1.2.1
|
|
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
|
|
github.com/spf13/viper v1.6.1
|
|
github.com/stretchr/testify v1.4.0
|
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
|
|
google.golang.org/grpc v1.24.0
|
|
)
|
|
|
|
// Used for debug reasons
|
|
// replace github.com/nspcc-dev/neofs-crypto => ../neofs-crypto
|