-
Notifications
You must be signed in to change notification settings - Fork 233
/
Copy pathgo.mod
32 lines (27 loc) · 963 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
30
31
32
module go.flipt.io/flipt/sdk/go
go 1.23.0
toolchain go1.24.1
require (
go.flipt.io/flipt/rpc/flipt v1.54.0
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb
google.golang.org/grpc v1.71.0
google.golang.org/protobuf v1.36.6
)
require (
github.com/google/gnostic-models v0.6.9 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
github.com/kr/text v0.2.0 // indirect
go.flipt.io/flipt/errors v1.45.0 // indirect
go.opentelemetry.io/otel/metric v1.35.0 // indirect
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
go.opentelemetry.io/otel/trace v1.35.0 // indirect
golang.org/x/net v0.37.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/text v0.23.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace (
go.flipt.io/flipt/errors => ../../errors/
go.flipt.io/flipt/rpc/flipt => ../../rpc/flipt/
)