-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
27 lines (24 loc) · 988 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
module github.com/bootdotdev/learntocodefyi
go 1.21.0
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-chi/chi/v5 v5.0.10
github.com/google/uuid v1.5.0
github.com/gorilla/websocket v1.5.1
github.com/joho/godotenv v1.5.1
github.com/libsql/libsql-client-go v0.0.0-20231116123136-ff4e46c3d3a1
github.com/pressly/goose/v3 v3.16.0
github.com/sendgrid/sendgrid-go v3.14.0+incompatible
)
require (
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230512164433-5d1fd1a340c9 // indirect
github.com/klauspost/compress v1.17.2 // indirect
github.com/libsql/sqlite-antlr4-parser v0.0.0-20230802215326-5cb5bb604475 // indirect
github.com/sendgrid/rest v2.6.9+incompatible // indirect
github.com/sethvargo/go-retry v0.2.4 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sync v0.5.0 // indirect
nhooyr.io/websocket v1.8.7 // indirect
)