-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
31 lines (28 loc) · 1.11 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
module github.com/eniac/mucache
go 1.19
require (
github.com/dapr/go-sdk v1.6.0
github.com/go-zeromq/zmq4 v0.15.0
github.com/goccy/go-json v0.10.2
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/google/uuid v1.3.0
github.com/lithammer/shortuuid v3.0.0+incompatible
github.com/pebbe/zmq4 v1.2.9
github.com/redis/go-redis/v9 v9.0.2
)
require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-zeromq/goczmq/v4 v4.2.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.6 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/net v0.0.0-20220621193019-9d032be2e588 // indirect
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220622171453-ea41d75dfa0f // indirect
google.golang.org/grpc v1.47.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)