-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
37 lines (34 loc) · 1.32 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
module github.com/atomix/go-sdk
go 1.19
require (
github.com/atomix/atomix/api v1.1.0
github.com/atomix/atomix/protocols/rsm v1.1.0
github.com/atomix/atomix/runtime v1.1.0
github.com/atomix/atomix/sidecar v0.4.4
github.com/gogo/protobuf v1.3.2
github.com/golang/protobuf v1.5.2
github.com/hashicorp/golang-lru/v2 v2.0.1
github.com/stretchr/testify v1.8.0
google.golang.org/grpc v1.46.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/bits-and-blooms/bitset v1.3.1 // indirect
github.com/bits-and-blooms/bloom/v3 v3.3.1 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/google/uuid v1.1.2 // indirect
github.com/kr/text v0.1.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
)