-
Notifications
You must be signed in to change notification settings - Fork 16
/
go.mod
31 lines (27 loc) · 973 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
module github.com/memphisdev/memphis.go
go 1.20
require (
github.com/graph-gophers/graphql-go v1.5.0
github.com/nats-io/nats.go v1.31.0
google.golang.org/protobuf v1.28.1
)
require (
github.com/gofrs/uuid v4.4.0+incompatible
github.com/hamba/avro/v2 v2.13.0
github.com/santhosh-tekuri/jsonschema/v5 v5.1.0
github.com/spaolacci/murmur3 v1.1.0
)
require (
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nats-io/nkeys v0.4.5 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/stretchr/testify v1.7.2 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)