-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
37 lines (34 loc) · 1.38 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/connylabs/zedcache
go 1.19
require (
github.com/authzed/authzed-go v0.7.0
github.com/bradfitz/gomemcache v0.0.0-20221031212613-62deef7fc822
github.com/efficientgo/e2e v0.14.0
github.com/go-kit/log v0.2.1
github.com/gomodule/redigo v1.8.9
github.com/hashicorp/go-multierror v1.1.1
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/stretchr/testify v1.8.0
google.golang.org/grpc v1.51.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/efficientgo/core v1.0.0-rc.0 // indirect
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/jzelinskie/stringz v0.0.0-20210414224931-d6a8ce844a70 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
golang.org/x/net v0.2.0 // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/text v0.4.0 // indirect
google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)