40 lines
1.3 KiB
Modula-2
40 lines
1.3 KiB
Modula-2
module github.com/mentos1386/golang-rest-example
|
|
|
|
go 1.21.6
|
|
|
|
require (
|
|
github.com/go-faster/errors v0.7.1
|
|
github.com/go-faster/jx v1.1.0
|
|
github.com/golang-migrate/migrate/v4 v4.17.0
|
|
github.com/kelseyhightower/envconfig v1.4.0
|
|
github.com/lib/pq v1.10.9
|
|
github.com/ogen-go/ogen v0.81.2
|
|
github.com/rs/cors v1.10.1
|
|
go.opentelemetry.io/otel v1.22.0
|
|
go.opentelemetry.io/otel/metric v1.22.0
|
|
go.opentelemetry.io/otel/trace v1.22.0
|
|
go.uber.org/multierr v1.11.0
|
|
go.uber.org/zap v1.26.0
|
|
)
|
|
|
|
require (
|
|
github.com/dlclark/regexp2 v1.10.0 // indirect
|
|
github.com/fatih/color v1.16.0 // indirect
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
github.com/go-faster/yaml v0.4.6 // indirect
|
|
github.com/go-logr/logr v1.4.1 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/google/uuid v1.5.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/segmentio/asm v1.2.0 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090 // indirect
|
|
golang.org/x/net v0.20.0 // indirect
|
|
golang.org/x/sync v0.6.0 // indirect
|
|
golang.org/x/sys v0.16.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|