-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
25 lines (22 loc) · 838 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
module my-app.com/live
go 1.19
require (
github.com/jfyne/live v0.15.3
github.com/nats-io/nats.go v1.22.1
)
require (
github.com/golang/protobuf v1.5.0 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/gorilla/sessions v1.2.1 // indirect
github.com/klauspost/compress v1.15.11 // indirect
github.com/nats-io/nats-server/v2 v2.9.10 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/rs/xid v1.4.0 // indirect
golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be // indirect
golang.org/x/net v0.0.0-20220325170049-de3da57026de // indirect
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
google.golang.org/protobuf v1.28.1 // indirect
nhooyr.io/websocket v1.8.7 // indirect
)