-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
49 lines (46 loc) · 1.92 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module github.com/kamva/hexa-arranger
go 1.18
require (
github.com/golang/protobuf v1.4.3
github.com/google/uuid v1.1.2
github.com/kamva/gutil v0.0.0-20210827084201-35b6a3421580
github.com/kamva/hexa v0.0.0-20220821205325-ac27273ade86
github.com/kamva/tracer v0.0.0-20201115122932-ea39052d56cd
github.com/pborman/uuid v1.2.1
go.temporal.io/api v1.2.0
go.temporal.io/sdk v1.2.0
go.uber.org/zap v1.16.0
google.golang.org/protobuf v1.25.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
github.com/getsentry/sentry-go v0.6.1 // indirect
github.com/gogo/googleapis v1.4.0 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/gogo/status v1.1.0 // indirect
github.com/golang/mock v1.4.4 // indirect
github.com/google/go-cmp v0.5.5 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/labstack/gommon v0.3.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/nicksnyder/go-i18n/v2 v2.0.3 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/robfig/cron v1.2.0 // indirect
github.com/stretchr/objx v0.3.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/uber-go/tally v3.3.17+incompatible // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/net v0.0.0-20201031054903-ff519b6c9102 // indirect
golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7 // indirect
golang.org/x/text v0.3.5 // indirect
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
google.golang.org/genproto v0.0.0-20201103154000-415bd0cd5df6 // indirect
google.golang.org/grpc v1.33.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)