-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
31 lines (28 loc) · 1.12 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/suborbital/grav
go 1.18
require (
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.5.0
github.com/nats-io/nats.go v1.15.0
github.com/pkg/errors v0.9.1
github.com/schollz/peerdiscovery v1.6.11
github.com/suborbital/vektor v0.5.3-0.20220606154347-af1e678993a8
github.com/twmb/franz-go v1.5.2
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/klauspost/compress v1.15.2 // indirect
github.com/nats-io/nats-server/v2 v2.7.4 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/pierrec/lz4/v4 v4.1.14 // indirect
github.com/sethvargo/go-envconfig v0.6.0 // indirect
github.com/twmb/franz-go/pkg/kmsg v1.0.0 // indirect
github.com/twmb/go-rbtree v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
)