-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
41 lines (36 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
32
33
34
35
36
37
38
39
40
41
module believer/movies
go 1.22.5
require (
github.com/gofiber/fiber/v2 v2.52.5
github.com/jmoiron/sqlx v1.4.0
github.com/joho/godotenv v1.5.1
github.com/lib/pq v1.10.9
)
require (
github.com/PuerkitoBio/goquery v1.8.1
github.com/a-h/templ v0.2.778
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/qustavo/dotsql v1.2.0
golang.org/x/crypto v0.27.0
golang.org/x/text v0.18.0
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
golang.org/x/net v0.29.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/klauspost/compress v1.17.10 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/swithek/dotsqlx v1.1.0
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.56.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sys v0.25.0 // indirect
)