-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
32 lines (29 loc) · 1.07 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module github.com/halilylm/simplecqrs
go 1.19
require (
github.com/ardanlabs/conf v1.5.0
github.com/avast/retry-go/v4 v4.3.2
github.com/dimfeld/httptreemux/v5 v5.5.0
github.com/elastic/go-elasticsearch/v7 v7.17.7
github.com/go-playground/locales v0.14.1
github.com/go-playground/universal-translator v0.18.0
github.com/google/uuid v1.3.0
github.com/jmoiron/sqlx v1.3.5
github.com/lib/pq v1.2.0
github.com/pkg/errors v0.9.1
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.37.0
go.opentelemetry.io/otel v1.11.2
go.opentelemetry.io/otel/exporters/jaeger v1.11.2
go.opentelemetry.io/otel/sdk v1.11.2
gopkg.in/go-playground/validator.v9 v9.31.0
)
require (
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
go.opentelemetry.io/otel/metric v0.34.0 // indirect
go.opentelemetry.io/otel/trace v1.11.2 // indirect
golang.org/x/sys v0.0.0-20221010170243-090e33056c14 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
)