forked from flipt-io/flipt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
29 lines (25 loc) · 918 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
27
28
29
module go.flipt.io/flipt/sdk/go
go 1.22
require (
go.flipt.io/flipt/rpc/flipt v1.45.0
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4
google.golang.org/grpc v1.64.1
google.golang.org/protobuf v1.34.2
)
require (
github.com/golang/protobuf v1.5.4 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
go.flipt.io/flipt/errors v1.45.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect
)
replace (
go.flipt.io/flipt/errors => ../../errors/
go.flipt.io/flipt/rpc/flipt => ../../rpc/flipt/
)