This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
golang-rest-example/go.mod

41 lines
1.3 KiB
Modula-2
Raw Normal View History

2024-02-01 18:57:25 +00:00
module github.com/mentos1386/golang-rest-example
go 1.21.6
require (
2024-02-01 22:09:09 +00:00
github.com/go-faster/errors v0.7.1
github.com/go-faster/jx v1.1.0
2024-02-02 14:39:13 +00:00
github.com/golang-migrate/migrate/v4 v4.17.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/lib/pq v1.10.9
2024-02-01 22:09:09 +00:00
github.com/ogen-go/ogen v0.81.2
2024-02-02 14:39:13 +00:00
github.com/rs/cors v1.10.1
2024-02-01 22:09:09 +00:00
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
2024-02-02 14:39:13 +00:00
go.uber.org/zap v1.26.0
2024-02-01 22:09:09 +00:00
)
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
2024-02-02 14:39:13 +00:00
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
2024-02-01 18:57:25 +00:00
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
2024-02-01 22:09:09 +00:00
github.com/segmentio/asm v1.2.0 // indirect
2024-02-02 14:39:13 +00:00
go.uber.org/atomic v1.7.0 // indirect
2024-02-01 22:09:09 +00:00
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
2024-02-01 18:57:25 +00:00
golang.org/x/text v0.14.0 // indirect
2024-02-01 22:09:09 +00:00
gopkg.in/yaml.v2 v2.4.0 // indirect
2024-02-01 18:57:25 +00:00
)