-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
26 lines (23 loc) · 889 Bytes
/
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
module github.com/kameshsampath/todo-app
go 1.21.2
require (
github.com/caarlos0/env/v10 v10.0.0
github.com/kameshsampath/demo-protos/golang/todo v0.0.0-20231206022715-1afc44aab8bf
github.com/twmb/franz-go v1.15.2
github.com/twmb/franz-go/pkg/sr v0.0.0-20231206062516-c09dc92d2db1
go.uber.org/zap v1.26.0
google.golang.org/grpc v1.59.0
google.golang.org/protobuf v1.31.0
)
require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/pierrec/lz4/v4 v4.1.18 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/twmb/franz-go/pkg/kmsg v1.7.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
)